We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 57a1a60 commit cec9b49Copy full SHA for cec9b49
1 file changed
RELEASE
@@ -3,9 +3,16 @@ How to release
3
4
* Update CHANGELOG
5
* Update version in __init__.py
6
-* git tag -a 'vX'
7
-* merge in branch latest
8
-* Send the package on pypi
+* Commit and open PR on Github to see that all tests pass
+* Check out master locally
+* Build wheel
9
python setup.py sdist upload
10
-* tick the doc version on readthedocs
11
-* Update version in __init__.py
+* Check long description
+ twine check dist/*
12
+* Upload to pypi-test
13
+ twine upload --repository testpypi dist/*
14
+* Upload to pypi
15
16
+* Create release on Github and Merge PR
17
+* Verify docs are automatically updated
18
+
0 commit comments