File: RELEASE.md

package info (click to toggle)
jupyter-server-mathjax 0.2.6-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 140 kB
  • sloc: python: 126; javascript: 73; makefile: 12
file content (14 lines) | stat: -rw-r--r-- 391 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
To create a release, update the version number in `jupyter_server_mathjax/__version__.py`, then run the following:

```
git clean -dffx
python setup.py sdist bdist_wheel
export script_version=`python setup.py --version 2>/dev/null`
git commit -a -m "Release $script_version"
git tag $script_version
pip install twine
twine check dist/*
twine upload dist/*
git push --all
git push --tags
```