diff --git a/.circleci/config.yml b/.circleci/config.yml index 0c7498fe..fd59524e 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -127,7 +127,7 @@ jobs: . ../venv/bin/activate pip install twine ls dist - twine upload -u $PYPI_USER -p $PYPI_PASSWORD --repository-url https://test.pypi.org/legacy/ --skip-existing dist/* + twine upload -u $PYPI_USER -p $PYPI_PASSWORD --skip-existing dist/* - run: <<: *deploy_website_command diff --git a/.travis.yml b/.travis.yml index 14c8405a..c55cc73b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -60,7 +60,7 @@ after_success: deploy: # deploy-release - provider: script - script: pwd && ls dist;echo "deploy-release" && ~/.pyenv/versions/${PYTHON_VERSION}/bin/twine upload -u $PYPI_USER -p $PYPI_PASSWORD --repository-url https://test.pypi.org/legacy/ --skip-existing dist/* + script: pwd && ls dist;echo "deploy-release" && ~/.pyenv/versions/${PYTHON_VERSION}/bin/twine upload -u $PYPI_USER -p $PYPI_PASSWORD --skip-existing dist/* skip_cleanup: true on: repo: ${TRAVIS_REPO_SLUG} diff --git a/appveyor.yml b/appveyor.yml index 9c9c7d55..51cbb72b 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -87,7 +87,7 @@ deploy_script: if ($env:appveyor_repo_tag -eq $true -and $env:appveyor_repo_tag_name –match "^[0-9]+(\.[0-9]+)*(\.post[0-9]+)?$") { Write-Host "deploy release" $env:PATH="$env:PYTHON_DIR/Scripts/;$env:PATH" - twine upload -u $env:PYPI_USER -p $env:PYPI_PASSWORD --repository-url https://test.pypi.org/legacy/ --skip-existing dist/* + twine upload -u $env:PYPI_USER -p $env:PYPI_PASSWORD --skip-existing dist/* } elseif ($env:appveyor_repo_branch -eq "master") { Write-Host "deploy master (not implemented)" } else {