Skip to content

Commit

Permalink
Release 0.1.0 (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
bollwyvl authored Oct 9, 2022
1 parent 3048178 commit 47fad8e
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 21 deletions.
2 changes: 1 addition & 1 deletion .binder/postBuild
Original file line number Diff line number Diff line change
Expand Up @@ -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
26 changes: 13 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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
{
Expand All @@ -58,5 +58,5 @@ pip uninstall jupyterlab-deck
or

```
conda remove jupyterlab-deck
mamba remove jupyterlab-deck # or conda if you must
```
6 changes: 3 additions & 3 deletions dodo.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion js/_meta/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion js/jupyterlab-deck/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = "[email protected]"},
]
Expand Down

0 comments on commit 47fad8e

Please sign in to comment.