diff --git a/MANIFEST.in b/MANIFEST.in index 48bf1e8af..c28b82010 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -9,6 +9,7 @@ include pyproject.toml include setup.py include setupbase.py include Dockerfile +include *.js graft tools graft notebook/tests diff --git a/RELEASE.md b/RELEASE.md index 5395694ee..f6b5c0b0f 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -45,7 +45,8 @@ npm install -g po2json ### Update the version ```bash -vim notebook/_version.py +vim notebook/_version.py # update version +vim pyproject.toml # update version to match python setup.py jsversion git commit -am "Release $(python setup.py --version)" git tag $(python setup.py --version) diff --git a/pyproject.toml b/pyproject.toml index b89cec01e..ef5b742e0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,7 +11,7 @@ after-bump-version = "python setup.py jsversion" before-build-python = ["pip install babel", "npm install -g po2json"] [tool.jupyter-releaser.options] -ignore-glob = ["docs/source/examples/Notebook/Working With Markdown Cells.ipynb", "docs-translations/**/README.md", "docs/source/contributing.rst", "docs/source/examples/Notebook/JavaScript Notebook Extensions.ipynb", "CHANGELOG.md"] +ignore-glob = ["docs/source/examples/Notebook/Working With Markdown Cells.ipynb", "docs-translations/**/README.md", "docs/source/contributing.rst", "docs/source/examples/Notebook/JavaScript Notebook Extensions.ipynb", "CHANGELOG.md", "notebook/static/components/**/*.*"] [tool.tbump.version] current = "6.5.0.dev0"