blob: f54ed9f62df4585a06a5899089cc5a765189d22c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
*******************
Release procedure
*******************
* Check that the version number in setup.py is correct.
* Check that the changelog is up to date.
* Generate the distribution files::
$ python3 setup.py sdist bdist_wheel
* Upload ::
$ twine upload -s dist/*
* Tag the uploaded version::
$ git tag -s v$VERSION -m "Version $VERSION"
$ git push
$ git push --tags
|