Skip to content

Commit

Permalink
Merge pull request #843 from berleon/drop-py3.3
Browse files Browse the repository at this point in the history
Drop support for python 3.3
  • Loading branch information
takluyver authored Jul 18, 2018
2 parents 474fe3c + 05bd01a commit 3204729
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ python:
- 3.6
- 3.5
- 3.4
- 3.3
- 2.7
env:
global:
Expand Down
8 changes: 5 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
import sys

v = sys.version_info
if v[:2] < (2,7) or (v[0] >= 3 and v[:2] < (3,3)):
error = "ERROR: %s requires Python version 2.7 or 3.3 or above." % name
if v[:2] < (2,7) or (v[0] >= 3 and v[:2] < (3,4)):
error = "ERROR: %s requires Python version 2.7 or 3.4 or above." % name
print(error, file=sys.stderr)
sys.exit(1)

Expand Down Expand Up @@ -179,7 +179,9 @@ def run(self):
'Programming Language :: Python',
'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 3204729

Please sign in to comment.