summaryrefslogtreecommitdiffstats
path: root/.ci
diff options
context:
space:
mode:
authorRui Chen <rui@chenrui.dev>2021-01-24 19:07:36 -0500
committerRui Chen <rui@chenrui.dev>2021-01-24 19:07:36 -0500
commit0d8c46453760086994c74faea924b3a779d91b94 (patch)
treeb9d58bcab9c955bb96769ebe248cfdb2f479f689 /.ci
parent025ee1d77deaccd289b451f03201e7f13b4d1be4 (diff)
ci: add python 3.9
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 7db3848b..cb8cb0b2 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', '3.7', '3.8']
+PY_VERSIONS = ['2.7', '3.4', '3.5', '3.6', '3.7', '3.8', '3.9']
def term_supports_colors(file=sys.stdout):