Skip to content

Commit 5a0680b

Browse files
committed
Drop py3.3 support, minimum is 3.4
tox/virtualenv says its only supporting 3.4 in travis, which seems to be the trend with most other libs, so drop 3.3 support
1 parent 5dcfeb6 commit 5a0680b

3 files changed

Lines changed: 2 additions & 3 deletions

File tree

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ language: python
22

33
python:
44
- 2.7
5-
- 3.3
65
- 3.4
76
- 3.5
87
- 3.6

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
def unsupported_python_version():
1414
return sys.version_info < (2, 7) \
15-
or (sys.version_info > (3,) and sys.version_info < (3, 3))
15+
or (sys.version_info > (3,) and sys.version_info < (3, 4))
1616

1717

1818
if unsupported_python_version():

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py27,py33,py34,py35,py36
2+
envlist = py27,py34,py35,py36
33

44
[testenv]
55
sitepackages = True

0 commit comments

Comments
 (0)