summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorGiampaolo Rodola <g.rodola@gmail.com>2017-02-03 13:08:07 +0100
committerGiampaolo Rodola <g.rodola@gmail.com>2017-02-03 13:08:07 +0100
commitfef8ef01f016b2fbc7e89ebbf02b2da964ca466c (patch)
tree8bae6d35877026417c8661064c918dcbc99b0d1f /scripts
parent9ad0590f4d801cfbb0224da33127dc56dbd55130 (diff)
downloadpsutil-fef8ef01f016b2fbc7e89ebbf02b2da964ca466c.tar.gz
be more cautious when converting to int()
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/internal/download_exes.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/internal/download_exes.py b/scripts/internal/download_exes.py
index 2a40168c..d8d2768b 100755
--- a/scripts/internal/download_exes.py
+++ b/scripts/internal/download_exes.py
@@ -27,7 +27,7 @@ from psutil import __version__ as PSUTIL_VERSION
BASE_URL = 'https://ci.appveyor.com/api'
-PY_VERSIONS = ['2.7', '3.3', '3.4', '3.5']
+PY_VERSIONS = ['2.7', '3.3', '3.4', '3.5', '3.6']
def exit(msg):