summaryrefslogtreecommitdiffstats
path: root/.ci
diff options
context:
space:
mode:
authorRui Chen <chenrui333@gmail.com>2020-03-25 18:55:12 -0400
committerRui Chen <chenrui333@gmail.com>2020-03-25 18:55:18 -0400
commit6f9365bb246f6a934df4531ff514991b840aa069 (patch)
tree3f048c06f7f4505039b91c1646bac7ef1a25b948 /.ci
parent6f284cc97aa40d080976d0f43a918680574178cf (diff)
Add python 3.7 and 3.8 into CI
Diffstat (limited to '.ci')
-rw-r--r--.ci/appveyor/download_exes.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/.ci/appveyor/download_exes.py b/.ci/appveyor/download_exes.py
index aa679d64..7db3848b 100644
--- a/.ci/appveyor/download_exes.py
+++ b/.ci/appveyor/download_exes.py
@@ -25,7 +25,7 @@ from concurrent.futures import ThreadPoolExecutor
BASE_URL = 'https://ci.appveyor.com/api'
-PY_VERSIONS = ['2.7', '3.4', '3.5', '3.6']
+PY_VERSIONS = ['2.7', '3.4', '3.5', '3.6', '3.7', '3.8']
def term_supports_colors(file=sys.stdout):