Skip to content

Commit 5321732

Browse files
committed
Change release process to use twine instead of plain python setup.py
1 parent 0fc6931 commit 5321732

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

README.rst

+7-2
Original file line numberDiff line numberDiff line change
@@ -120,8 +120,13 @@ To prepare a new version:
120120

121121
To release a new version (including the wheel)::
122122

123-
pip install wheel
124-
python setup.py sdist bdist_wheel upload
123+
pip install twine
124+
python setup.py sdist bdist_wheel
125+
twine upload --repository-url https://test.pypi.org/legacy/ dist/*
126+
127+
And after testing everything works fine on the testing repository::
128+
129+
twine upload dist/*
125130

126131
**********
127132
Ressources

0 commit comments

Comments
 (0)