From de5f2f80fe54194663eef3c9cdd709efd91576ec Mon Sep 17 00:00:00 2001 From: Giampaolo Rodola Date: Fri, 8 Sep 2017 12:47:16 +0800 Subject: re: #1120 / PEP527: no longer provide .exe files for Windows --- scripts/internal/download_exes.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'scripts/internal/download_exes.py') diff --git a/scripts/internal/download_exes.py b/scripts/internal/download_exes.py index 9688919b..5c2d70ac 100755 --- a/scripts/internal/download_exes.py +++ b/scripts/internal/download_exes.py @@ -170,8 +170,8 @@ def main(options): completed += 1 print("downloaded %-45s %s" % ( local_fname, bytes2human(os.path.getsize(local_fname)))) - # 2 exes (32 and 64 bit) and 2 wheels (32 and 64 bit) for each ver. - expected = len(PY_VERSIONS) * 4 + # 2 wheels (32 and 64 bit) per supported python version + expected = len(PY_VERSIONS) * 2 if expected != completed: return exit("expected %s files, got %s" % (expected, completed)) if exc: -- cgit v1.2.1 From 810498c36895e03a1b4e947659a2b30d8188557b Mon Sep 17 00:00:00 2001 From: Giampaolo Rodola Date: Wed, 8 Nov 2017 14:15:15 +0100 Subject: #1053: drop python 3.3 support --- scripts/internal/download_exes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts/internal/download_exes.py') diff --git a/scripts/internal/download_exes.py b/scripts/internal/download_exes.py index 5c2d70ac..1b004428 100755 --- a/scripts/internal/download_exes.py +++ b/scripts/internal/download_exes.py @@ -25,7 +25,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', '3.6'] +PY_VERSIONS = ['2.7', '3.4', '3.5', '3.6'] TIMEOUT = 30 COLORS = True -- cgit v1.2.1