summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorGiampaolo Rodola <g.rodola@gmail.com>2017-11-08 14:15:15 +0100
committerGiampaolo Rodola <g.rodola@gmail.com>2017-11-08 14:15:15 +0100
commit810498c36895e03a1b4e947659a2b30d8188557b (patch)
treee185585f3d3ff806ed2cfca27055116d4c165ad8 /scripts
parentc95f317d586bbd4313f705c5618f0fd5477cb210 (diff)
downloadpsutil-810498c36895e03a1b4e947659a2b30d8188557b.tar.gz
#1053: drop python 3.3 support
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/internal/download_exes.py2
-rwxr-xr-xscripts/internal/winmake.py4
2 files changed, 3 insertions, 3 deletions
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
diff --git a/scripts/internal/winmake.py b/scripts/internal/winmake.py
index 5b2bea98..a09e2896 100755
--- a/scripts/internal/winmake.py
+++ b/scripts/internal/winmake.py
@@ -448,8 +448,8 @@ def set_python(s):
# try to look for a python installation
orig = s
s = s.replace('.', '')
- vers = ('26', '27', '33', '34', '35', '36', '37',
- '26-64', '27-64', '33-64', '34-64', '35-64', '36-64', '37-64')
+ vers = ('26', '27', '34', '35', '36', '37',
+ '26-64', '27-64', '34-64', '35-64', '36-64', '37-64')
for v in vers:
if s == v:
path = 'C:\\python%s\python.exe' % s