We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0addc2e commit 09774f6Copy full SHA for 09774f6
doc/release.md
@@ -25,15 +25,14 @@ git --aliases=.copyrite_aliases . --jobs=8
25
https://travis-ci.org/PyCQA/astroid/
26
27
3. Do the actual release by tagging the master with ``astroid-X.Y.Z`` (ie ``astroid-1.6.12``
28
- for example). Travis should deal with the release process once the tag is pushed
29
- with `git push origin --tags`
+ for example).
30
31
-## Manual Release
32
33
-Following the previous steps, for a manual release run the following commands:
+Until the release is done via Travis or github actions on tag, run the following commands:
34
35
```bash
36
git clean -fdx && find . -name '*.pyc' -delete
+pip3 install twine wheel setuptools
37
python setup.py sdist --formats=gztar bdist_wheel
38
twine upload dist/*
39
# don't forget to tag it as well
0 commit comments