Skip to content

Commit

Permalink
appveyor: also test Python 3.4, 3.5, 3.6 and 3.7 (64 bit)
Browse files Browse the repository at this point in the history
  • Loading branch information
FelixSchwarz committed Oct 12, 2018
1 parent fe43203 commit 7a59f21
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion appveyor.yml
Expand Up @@ -8,9 +8,26 @@ environment:
matrix:
# https://www.appveyor.com/docs/windows-images-software/#python
- PYTHON: "C:\\Python27"
PYTHON_VERSION: "2.7.x" # currently 2.7.15
PYTHON_VERSION: "2.7.x"
PYTHON_ARCH: "32"

- PYTHON: "C:\\Python34-x64"
PYTHON_VERSION: "3.4.x"
PYTHON_ARCH: "64"

- PYTHON: "C:\\Python35-x64"
PYTHON_VERSION: "3.5.x"
PYTHON_ARCH: "64"

- PYTHON: "C:\\Python36-x64"
PYTHON_VERSION: "3.6.x"
PYTHON_ARCH: "64"

- PYTHON: "C:\\Python37-x64"
PYTHON_VERSION: "3.7.x"
PYTHON_ARCH: "64"


install:
# If there is a newer build queued for the same PR, cancel this one.
# The AppVeyor 'rollout builds' option is supposed to serve the same
Expand Down

0 comments on commit 7a59f21

Please sign in to comment.