Skip to content

Commit

Permalink
#1053: drop python 3.3 support
Browse files Browse the repository at this point in the history
  • Loading branch information
giampaolo committed Nov 8, 2017
1 parent c95f317 commit 810498c
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 13 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ matrix:
include:
- python: 2.6
- python: 2.7
- python: 3.3
- python: 3.4
- python: 3.5
- python: 3.6
Expand Down
2 changes: 2 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@

- 1164_: [AIX] add support for Process.num_ctx_switches(). (patch by Arnon
Yaari)
- 1053_: abandon Python 3.3 support (psutil still works but it's no longer
tested).

**Bug fixes**

Expand Down
8 changes: 0 additions & 8 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,6 @@ environment:
PYTHON_VERSION: "2.7.x"
PYTHON_ARCH: "32"

- PYTHON: "C:\\Python33"
PYTHON_VERSION: "3.3.x"
PYTHON_ARCH: "32"

- PYTHON: "C:\\Python34"
PYTHON_VERSION: "3.4.x"
PYTHON_ARCH: "32"
Expand All @@ -42,10 +38,6 @@ environment:
PYTHON_VERSION: "2.7.x"
PYTHON_ARCH: "64"

- PYTHON: "C:\\Python33-x64"
PYTHON_VERSION: "3.3.x"
PYTHON_ARCH: "64"

- PYTHON: "C:\\Python34-x64"
PYTHON_VERSION: "3.4.x"
PYTHON_ARCH: "64"
Expand Down
2 changes: 1 addition & 1 deletion scripts/internal/download_exes.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@


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

Expand Down
4 changes: 2 additions & 2 deletions scripts/internal/winmake.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,6 @@ def main():
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
Expand Down

0 comments on commit 810498c

Please sign in to comment.