Skip to content

Commit

Permalink
Merge pull request #60 from timkpaine/033
Browse files Browse the repository at this point in the history
Bump version: 0.3.2 → 0.3.3
  • Loading branch information
timkpaine authored Apr 7, 2022
2 parents c9765cf + 3e7512c commit f1f07ff
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 14 deletions.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ include pyproject.toml
include Makefile

include jupyterlab_commands/extension/jupyterlab_commands.json
recursive-include jupyterlab_commands/labextension *.*

# grab js
graft js
Expand Down
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ checks: ## run lint and other checks
check-manifest

build: clean ## build python/javascript
python -m build .
python -m build . -n -w -s

develop: ## install to site-packages in editable mode
python -m pip install --upgrade build pip setuptools twine wheel
Expand Down Expand Up @@ -60,6 +60,7 @@ clean: ## clean the repository
find . -name ".ipynb_checkpoints" | xargs rm -rf
rm -rf .coverage coverage *.xml build dist *.egg-info lib node_modules .pytest_cache *.egg-info .autoversion .mypy_cache
rm -rf jupyterlab_commands/labextension
cd js && yarn clean
# make -C ./docs clean
git clean -fd

Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
# built documents.

# The short X.Y version.
version = "0.3.2"
version = "0.3.3"

# The full version, including alpha/beta/rc tags.
release = version
Expand Down
6 changes: 3 additions & 3 deletions js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jupyterlab_commands",
"version": "0.3.2",
"version": "0.3.3",
"description": "Arbitrary python commands for notebooks in JupyterLab.",
"author": "Tim Paine",
"main": "lib/index.js",
Expand All @@ -12,9 +12,9 @@
],
"scripts": {
"build:babel": "babel src/ --source-maps --out-dir lib/",
"build:lab": "rimraf ../jupyterlab_commands/labextension && jupyter labextension build .",
"build:lab": "jupyter labextension build .",
"build": "npm-run-all build:*",
"clean": "rimraf lib",
"clean": "rimraf lib ../jupyterlab_commands/labextension",
"fix": "yarn lint --fix",
"lint": "eslint -c .eslintrc.js --ext .js src/ tests/",
"prepublishOnly": "npm run build",
Expand Down
2 changes: 1 addition & 1 deletion jupyterlab_commands/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.3.2"
__version__ = "0.3.3"
14 changes: 7 additions & 7 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.3.2
current_version = 0.3.3
commit = True
tag = False

Expand All @@ -8,14 +8,14 @@ universal = 1

[metadata]
description_file = README.md
long_description_content_type=text/markdown
long_description_content_type = text/markdown

[flake8]
ignore=E203, W503
max-line-length=200
exclude=jupyterlab_commands/tests
per-file-ignores=
jupyterlab_commands/__init__.py:F401, F403
ignore = E203, W503
max-line-length = 200
exclude = jupyterlab_commands/tests
per-file-ignores =
jupyterlab_commands/__init__.py:F401, F403

[tool:pytest]
junit_family = xunit2
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@

setup(
name=name,
version="0.4.2",
version="0.3.3",
description="Arbitrary python commands for notebooks in JupyterLab",
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit f1f07ff

Please sign in to comment.