Skip to content

Commit

Permalink
Use PYTHON, not PYTHON_ROOT on appveyor. The former is more common in…
Browse files Browse the repository at this point in the history
… my experience.
  • Loading branch information
jamadden committed Nov 11, 2020
1 parent e77433c commit e6d76d4
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,62 +27,62 @@ environment:

matrix:
# http://www.appveyor.com/docs/installed-software#python
- PYTHON_ROOT: "C:\\Python27"
- PYTHON: "C:\\Python27"
PYTHON_ARCH: "32"
PYTHON_VERSION: "2.7.x"
PYTHON_EXE: python

- PYTHON_ROOT: "C:\\Python27-x64"
- PYTHON: "C:\\Python27-x64"
PYTHON_ARCH: "64"
PYTHON_VERSION: "2.7.x"
PYTHON_EXE: python

- PYTHON_ROOT: "C:\\Python35"
- PYTHON: "C:\\Python35"
PYTHON_ARCH: "32"
PYTHON_VERSION: "3.5.x"
PYTHON_EXE: python

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

- PYTHON_ROOT: "C:\\Python36"
- PYTHON: "C:\\Python36"
PYTHON_ARCH: "32"
PYTHON_VERSION: "3.6.x"
PYTHON_EXE: python

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

- PYTHON_ROOT: "C:\\Python37"
- PYTHON: "C:\\Python37"
PYTHON_ARCH: "32"
PYTHON_VERSION: "3.7.x"
PYTHON_EXE: python

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

- PYTHON_ROOT: "C:\\Python38"
- PYTHON: "C:\\Python38"
PYTHON_ARCH: "32"
PYTHON_VERSION: "3.8.x"
PYTHON_EXE: python

- PYTHON_ROOT: "C:\\Python38-x64"
- PYTHON: "C:\\Python38-x64"
PYTHON_ARCH: "64"
PYTHON_VERSION: "3.8.x"
PYTHON_EXE: python

- PYTHON_ROOT: "C:\\Python39"
- PYTHON: "C:\\Python39"
PYTHON_ARCH: "32"
PYTHON_VERSION: "3.9.x"
PYTHON_EXE: python

- PYTHON_ROOT: "C:\\Python39-x64"
- PYTHON: "C:\\Python39-x64"
PYTHON_ARCH: "64"
PYTHON_VERSION: "3.9.x"
PYTHON_EXE: python
Expand Down

0 comments on commit e6d76d4

Please sign in to comment.