From 9d4230e088c848b7a355e06253956c765e7c7470 Mon Sep 17 00:00:00 2001 From: Marius Gedminas Date: Tue, 12 Nov 2019 09:49:09 +0200 Subject: Add support for Python 3.8 Also let's use the latest floating PyPy versions on Travis CI. --- appveyor.yml | 2 ++ 1 file changed, 2 insertions(+) (limited to 'appveyor.yml') diff --git a/appveyor.yml b/appveyor.yml index 2913229..25cf34a 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -13,6 +13,8 @@ environment: - python: 36-x64 - python: 37 - python: 37-x64 + - python: 38 + - python: 38-x64 install: - "SET PATH=C:\\Python%PYTHON%;c:\\Python%PYTHON%\\scripts;%PATH%" -- cgit v1.2.1 From 3b8ab1e0d20f1b3867b3fa5b4411aae1e31d4233 Mon Sep 17 00:00:00 2001 From: Marius Gedminas Date: Tue, 12 Nov 2019 09:54:12 +0200 Subject: Also build manylinux2010 and MacOS wheels --- appveyor.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'appveyor.yml') diff --git a/appveyor.yml b/appveyor.yml index 25cf34a..d643125 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -18,6 +18,13 @@ environment: 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" - pip install -e . @@ -33,6 +40,6 @@ artifacts: name: wheel deploy_script: - - ps: if ($env:APPVEYOR_REPO_TAG -eq $TRUE) { pip install twine; twine upload dist/* } + - ps: if ($env:APPVEYOR_REPO_TAG -eq $TRUE) { pip install twine; twine upload --skip-existing dist/* } deploy: on -- cgit v1.2.1