diff --git a/appveyor.yml b/appveyor.yml index 4b7bcde4..49801d75 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -71,10 +71,10 @@ deploy_script: - echo password:%pip_access% >> %USERPROFILE%\\.pypirc - ps: >- if ($env:APPVEYOR_REPO_BRANCH -eq 'devel') { - twine upload --exists warning -r test dist/* + twine upload --skip-existing -r test dist/* } elseif ($env:APPVEYOR_REPO_BRANCH -eq 'deploy') { - twine upload --exists warning dist/* + twine upload --skip-existing dist/* } else { echo not deploying on other branches