We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 89670b9 commit 2105770Copy full SHA for 2105770
RELEASE.md
@@ -0,0 +1,17 @@
1
+This repository uses [`jupyter_releaser`](https://github.com/jupyter-server/jupyter_releaser) for automated releases.
2
+
3
+To create a manual release, update the version number in `jupyter_packaging/__version__.py`, then run the following:
4
5
+```
6
+git clean -dffx
7
+python setup.py sdist
8
+python setup.py bdist_wheel
9
+export script_version=`python setup.py --version 2>/dev/null`
10
+git commit -a -m "Release $script_version"
11
+git tag $script_version
12
+git push --all
13
+git push --tags
14
+pip install twine
15
+twine check dist/*
16
+twine upload dist/*
17
0 commit comments