diff options
| author | Giampaolo Rodola <g.rodola@gmail.com> | 2017-02-03 13:08:07 +0100 |
|---|---|---|
| committer | Giampaolo Rodola <g.rodola@gmail.com> | 2017-02-03 13:08:07 +0100 |
| commit | fef8ef01f016b2fbc7e89ebbf02b2da964ca466c (patch) | |
| tree | 8bae6d35877026417c8661064c918dcbc99b0d1f /scripts | |
| parent | 9ad0590f4d801cfbb0224da33127dc56dbd55130 (diff) | |
| download | psutil-fef8ef01f016b2fbc7e89ebbf02b2da964ca466c.tar.gz | |
be more cautious when converting to int()
Diffstat (limited to 'scripts')
| -rwxr-xr-x | scripts/internal/download_exes.py | 2 |
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): |
