diff --git a/.binder/postBuild b/.binder/postBuild index a9b23ee..fdf3710 100644 --- a/.binder/postBuild +++ b/.binder/postBuild @@ -4,4 +4,4 @@ source activate ${NB_PYTHON_PREFIX} IN_BINDER=1 doit dev mkdir -p ${NB_PYTHON_PREFIX}/share/jupyter/lab/settings -cp .binder/overrides.json ${NB_PYTHON_PREFIX}/share/jupyter/lab/settings +cp examples/overrides.json ${NB_PYTHON_PREFIX}/share/jupyter/lab/settings diff --git a/README.md b/README.md index 037b173..99267ef 100644 --- a/README.md +++ b/README.md @@ -14,18 +14,18 @@ ## Installation -> For now see [`CONTRIBUTING.md`](https://github.com/deathbeds/jupyterlab-deck) for a +```bash +pip install jupyterlab-deck +``` + +or + +``` +mamba install jupyterlab-deck # or conda, if you must +``` + +> See [`CONTRIBUTING.md`](https://github.com/deathbeds/jupyterlab-deck) for a > development installation. -> -> ``` -> pip install jupyterlab-deck -> ``` -> -> or -> -> ``` -> mamba install jupyterlab-deck -> ``` ## Usage @@ -36,7 +36,7 @@ ## Enabling Deck Mode at startup -- see the JupyterLab docs about [settings overrides][overrides]. +- see the JupyterLab docs about [settings `overrides.json`][overrides]. ```json { @@ -58,5 +58,5 @@ pip uninstall jupyterlab-deck or ``` -conda remove jupyterlab-deck +mamba remove jupyterlab-deck # or conda if you must ``` diff --git a/dodo.py b/dodo.py index cfd1b46..fbcc75d 100644 --- a/dodo.py +++ b/dodo.py @@ -60,11 +60,11 @@ class B: LITE = BUILD / "lite" STATIC = P.PY_SRC / f"_d/share/jupyter/labextensions/{C.NPM_NAME}" STATIC_PKG_JSON = STATIC / "package.json" - WHEEL = DIST / "jupyterlab_deck-0.1.0a0-py3-none-any.whl" - SDIST = DIST / "jupyterlab-deck-0.1.0a0.tar.gz" + WHEEL = DIST / "jupyterlab_deck-0.1.0-py3-none-any.whl" + SDIST = DIST / "jupyterlab-deck-0.1.0.tar.gz" LITE_SHASUMS = LITE / "SHA256SUMS" STYLELINT_CACHE = BUILD / ".stylelintcache" - NPM_TARBALL = DIST / "deathbeds-jupyterlab-deck-0.1.0-alpha.0.tgz" + NPM_TARBALL = DIST / "deathbeds-jupyterlab-deck-0.1.0.tgz" DIST_HASH_DEPS = [NPM_TARBALL, WHEEL, SDIST] DIST_SHASUMS = DIST / "SHA256SUMS" ENV_PKG_JSON = ENV / f"share/jupyter/labextensions/{C.NPM_NAME}/package.json" diff --git a/js/_meta/package.json b/js/_meta/package.json index 0666001..bcacbfd 100644 --- a/js/_meta/package.json +++ b/js/_meta/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@deathbeds/jupyterlab-deck-metapackage", - "version": "0.1.0-alpha.0", + "version": "0.1.0", "description": "JupyterLab Deck - Metapackage", "license": "BSD-3-Clause", "author": "jupyterlab-deck contributors", diff --git a/js/jupyterlab-deck/package.json b/js/jupyterlab-deck/package.json index 889a225..f65a449 100644 --- a/js/jupyterlab-deck/package.json +++ b/js/jupyterlab-deck/package.json @@ -1,6 +1,6 @@ { "name": "@deathbeds/jupyterlab-deck", - "version": "0.1.0-alpha.0", + "version": "0.1.0", "description": "Lightweight presentations for JupyterLab", "license": "BSD-3-Clause", "author": "jupyterlab-deck contributors", diff --git a/package.json b/package.json index 400aa9e..fe708ef 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@dethbeds/jupyterlab-deck", - "version": "0.1.0-alpha0", + "version": "0.1.0", "author": "jupyterlab-deck contributors", "homepage": "https://github.com/deathbeds/jupyterlab-deck", "workspaces": { diff --git a/pyproject.toml b/pyproject.toml index 4ada53e..043762f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "flit_core.buildapi" [project] name = "jupyterlab-deck" -version = "0.1.0a0" +version = "0.1.0" authors = [ {name = "jupyterlab-deck contributors", email = "deathbeds@googlegroups.com"}, ]