diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2019-07-29 11:43:05 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2019-07-29 11:43:05 -0400 |
commit | a3086f723228d4efd9148b7816320f2e49a15daf (patch) | |
tree | 0f0b20885024c2e3c33bbeecc5e3432c03ecd5f6 | |
parent | 0dd148015ebbb525d74e1e1ae37c36b9997267ed (diff) | |
download | python-coveragepy-git-a3086f723228d4efd9148b7816320f2e49a15daf.tar.gz |
No more windows.exe installers (https://www.python.org/dev/peps/pep-0527/)
-rw-r--r-- | appveyor.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/appveyor.yml b/appveyor.yml index f4a41b51..b77cfb4e 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -115,8 +115,8 @@ install: - "python -c \"import os; open('python{}.{}.bat'.format(*os.environ['TOXENV'][2:]), 'w').write('@{}\\\\python \\x25*\\n'.format(os.environ['PYTHON']))\"" build_script: - # If not a metacov job, then build wheels and .exe installers. - - if NOT "%COVERAGE_COVERAGE%" == "yes" %CMD_IN_ENV% %PYTHON%\python setup.py bdist_wheel bdist_wininst + # If not a metacov job, then build wheel installers. + - if NOT "%COVERAGE_COVERAGE%" == "yes" %CMD_IN_ENV% %PYTHON%\python setup.py bdist_wheel # Push everything in dist\ as an artifact. - ps: if ( Test-Path 'dist' -PathType Container ) { Get-ChildItem dist\*.* | % { Push-AppveyorArtifact $_.FullName -FileName ('dist\' + $_.Name) } } |