summaryrefslogtreecommitdiffstats
path: root/.ci/appveyor/download_exes.py
diff options
context:
space:
mode:
authorAlessio Sergi <al3hex@gmail.com>2018-01-26 19:03:33 +0100
committerAlessio Sergi <al3hex@gmail.com>2018-01-26 19:03:33 +0100
commit4e606f46503e3bfb1c1f5b8ddc0f043e8fa8db06 (patch)
treea4ffbb80768a69f442159d11538421cbac3fbe2f /.ci/appveyor/download_exes.py
parent524babd3d7cb574409baaedc41098be592fa5122 (diff)
Drop support for EOL Python 3.3
Diffstat (limited to '.ci/appveyor/download_exes.py')
-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 37ebdfd1..cbea08e7 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.3', '3.4', '3.5']
+PY_VERSIONS = ['2.7', '3.4', '3.5']
def term_supports_colors(file=sys.stdout):