Update travis config to publish to real pypi
This commit is contained in:
parent
cc90f66dc8
commit
0da9f2c6b5
|
@ -61,7 +61,7 @@ jobs:
|
||||||
script: python setup.py sdist
|
script: python setup.py sdist
|
||||||
after_success:
|
after_success:
|
||||||
- python3 -m pip install twine
|
- python3 -m pip install twine
|
||||||
- python3 -m twine upload --repository testpypi dist/*
|
- python3 -m twine upload dist/*
|
||||||
- services: docker
|
- services: docker
|
||||||
if: tag IS present
|
if: tag IS present
|
||||||
env: TWINE_USERNAME=__token__
|
env: TWINE_USERNAME=__token__
|
||||||
|
@ -69,7 +69,7 @@ jobs:
|
||||||
script: python3 -m cibuildwheel --output-dir wheelhouse
|
script: python3 -m cibuildwheel --output-dir wheelhouse
|
||||||
after_success:
|
after_success:
|
||||||
- python3 -m pip install twine
|
- python3 -m pip install twine
|
||||||
- python3 -m twine upload --repository testpypi wheelhouse/*.whl
|
- python3 -m twine upload wheelhouse/*.whl
|
||||||
- os: osx
|
- os: osx
|
||||||
if: tag IS present
|
if: tag IS present
|
||||||
language: shell
|
language: shell
|
||||||
|
@ -78,7 +78,7 @@ jobs:
|
||||||
script: python3 -m cibuildwheel --output-dir wheelhouse
|
script: python3 -m cibuildwheel --output-dir wheelhouse
|
||||||
after_success:
|
after_success:
|
||||||
- python3 -m pip install twine
|
- python3 -m pip install twine
|
||||||
- python3 -m twine upload --repository testpypi wheelhouse/*.whl
|
- python3 -m twine upload wheelhouse/*.whl
|
||||||
- os: windows
|
- os: windows
|
||||||
if: tag IS present
|
if: tag IS present
|
||||||
language: shell
|
language: shell
|
||||||
|
@ -90,7 +90,7 @@ jobs:
|
||||||
script: python -m cibuildwheel --output-dir wheelhouse
|
script: python -m cibuildwheel --output-dir wheelhouse
|
||||||
after_success:
|
after_success:
|
||||||
- python -m pip install twine
|
- python -m pip install twine
|
||||||
- python -m twine upload --repository testpypi wheelhouse/*.whl
|
- python -m twine upload wheelhouse/*.whl
|
||||||
notifications:
|
notifications:
|
||||||
slack:
|
slack:
|
||||||
rooms:
|
rooms:
|
||||||
|
|
Loading…
Reference in New Issue