Skip to content

Commit a575d53

Browse files
committed
Test more Python version on macOS and Windows
1 parent 4df182e commit a575d53

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

.appveyor.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ environment:
88
- PYTHON: "C:\\Python36-x64"
99
- PYTHON: "C:\\Python37"
1010
- PYTHON: "C:\\Python37-x64"
11+
- PYTHON: "C:\\Python38"
12+
- PYTHON: "C:\\Python38-x64"
1113

1214
build_script:
1315
- "git --no-pager log -n2"

.travis.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,13 @@ matrix:
1111
- python: nightly
1212
- os: osx
1313
language: generic
14-
env: MACPYTHON=3.6.3
14+
env: MACPYTHON=3.6.8 # last binary release
15+
- os: osx
16+
language: generic
17+
env: MACPYTHON=3.7.7 # last binary release
18+
- os: osx
19+
language: generic
20+
env: MACPYTHON=3.8.3
1521
- python: 3.6
1622
env: CHECK_DOCS=1
1723
- python: 3.6

ci/travis.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ set -ex
66
YAPF_VERSION=0.20.0
77

88
if [ "$TRAVIS_OS_NAME" = "osx" ]; then
9-
curl -Lo macpython.pkg https://www.python.org/ftp/python/${MACPYTHON}/python-${MACPYTHON}-macosx10.6.pkg
9+
curl -Lo macpython.pkg https://www.python.org/ftp/python/${MACPYTHON}/python-${MACPYTHON}-macosx10.9.pkg
1010
sudo installer -pkg macpython.pkg -target /
1111
ls /Library/Frameworks/Python.framework/Versions/*/bin/
1212
PYTHON_EXE=/Library/Frameworks/Python.framework/Versions/*/bin/python3

0 commit comments

Comments
 (0)