summaryrefslogtreecommitdiff
path: root/appveyor.yml
diff options
context:
space:
mode:
authorMarius Gedminas <marius@gedmin.as>2019-11-10 11:13:16 +0200
committerMarius Gedminas <marius@gedmin.as>2019-11-10 11:13:16 +0200
commitf38dc0502f50fa6d44ca55fc628c9c0b3ce3af1c (patch)
treeda2c88e3b7c010aa10a869a6f4f2a8cfa6906351 /appveyor.yml
parenta874757320cf428c01e6aff55039f2a9f734955d (diff)
downloadzope-security-f38dc0502f50fa6d44ca55fc628c9c0b3ce3af1c.tar.gz
Add Python 3.8 to appveyor.ymlappveyor-py38
Diffstat (limited to 'appveyor.yml')
-rw-r--r--appveyor.yml11
1 files changed, 10 insertions, 1 deletions
diff --git a/appveyor.yml b/appveyor.yml
index 2f86bda..9a191ef 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -13,11 +13,20 @@ environment:
- python: 36-x64
- python: 37
- python: 37-x64
+ - python: 38
+ - python: 38-x64
- { python: 27, PURE_PYTHON: 1 }
- { python: 37, PURE_PYTHON: 1 }
install:
- "SET PATH=C:\\Python%PYTHON%;c:\\Python%PYTHON%\\scripts;%PATH%"
+ - ps: |
+ $env:PYTHON = "C:\\Python${env:PYTHON}"
+ if (-not (Test-Path $env:PYTHON)) {
+ curl -o install_python.ps1 https://raw.githubusercontent.com/matthew-brett/multibuild/11a389d78892cf90addac8f69433d5e22bfa422a/install_python.ps1
+ .\install_python.ps1
+ }
+ - ps: if (-not (Test-Path $env:PYTHON)) { throw "No $env:PYTHON" }
- echo "C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.cmd" /x64 > "C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin\amd64\vcvars64.bat"
# We need to install the C extensions that BTrees setup-requires
# separately because we've seen problems with the BTrees build cleanup step trying
@@ -44,6 +53,6 @@ artifacts:
name: wheel
deploy_script:
- - ps: if ($env:APPVEYOR_REPO_TAG -eq $TRUE -and $env:PURE_PYTHON -ne 1) { pip install twine; twine upload dist/* }
+ - ps: if ($env:APPVEYOR_REPO_TAG -eq $TRUE -and $env:PURE_PYTHON -ne 1) { pip install twine; twine upload --skip-existing dist/* }
deploy: on