From: Ben Darnell Date: Wed, 30 Sep 2020 11:15:10 +0000 (-0400) Subject: ci: Switch from testpypi to real pypi X-Git-Tag: v6.1.0b1^0 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=69e750ef056969e1d0d204b558a64a014d27e0d1;p=thirdparty%2Ftornado.git ci: Switch from testpypi to real pypi --- diff --git a/.travis.yml b/.travis.yml index 558c83927..025802a62 100644 --- a/.travis.yml +++ b/.travis.yml @@ -102,4 +102,4 @@ script: - if [[ -n "$BUILD_SDIST" ]]; then python setup.py check sdist && ls -l dist; fi after_success: - - if [[ ( -n "$BUILD_WHEEL" || -n "$BUILD_SDIST" ) && -n "$TRAVIS_TAG" && -n "$TWINE_PASSWORD" ]]; then twine upload -r testpypi -u __token__ dist/*; fi + - if [[ ( -n "$BUILD_WHEEL" || -n "$BUILD_SDIST" ) && -n "$TRAVIS_TAG" && -n "$TWINE_PASSWORD" ]]; then twine upload -u __token__ dist/*; fi