We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c87b3fa commit 2db019eCopy full SHA for 2db019e
.travis.yml
@@ -52,11 +52,11 @@ deploy:
52
on:
53
python: '3.9'
54
branch: master
55
-- provider: pypi
56
- setuptools_version: "60.8.2"
57
- user: __token__
58
- password: $PYPI_TOKEN
59
- repository: https://upload.pypi.org/legacy
+- provider: script
+ script: |
+ python -m pip install --upgrade pip setuptools twine
+ python setup.py sdist bdist_wheel
+ python -m twine upload --repository-url https://upload.pypi.org/legacy/ dist/* -u __token__ -p $PYPI_TOKEN
60
skip_cleanup: true
61
62
0 commit comments