Skip to content

Commit 2105770

Browse files
committed
add release docs
1 parent 89670b9 commit 2105770

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

RELEASE.md

+17
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)