Skip to content

Commit ed4a75b

Browse files
committed
backported 3.3 and 3.4 support drop
1 parent 31b8d5d commit ed4a75b

File tree

2 files changed

+4
-8
lines changed

2 files changed

+4
-8
lines changed

.travis.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@ language: python
22
python:
33
- 3.6
44
- 3.5
5-
- 3.4
6-
- 3.3
75
- 2.7
86
sudo: false
97
install:

setup.py

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
import sys
1717

1818
v = sys.version_info
19-
if v[:2] < (2,7) or (v[0] >= 3 and v[:2] < (3,3)):
20-
error = "ERROR: %s requires Python version 2.7 or 3.3 or above." % name
19+
if v[:2] < (2, 7) or (v[0] >= 3 and v[:2] < (3, 5)):
20+
error = "ERROR: %s requires Python version 2.7 or 3.5 or above." % name
2121
print(error, file=sys.stderr)
2222
sys.exit(1)
2323

@@ -93,11 +93,9 @@ def run(self):
9393
'python-dateutil>=2.1',
9494
'tornado>=4.1',
9595
],
96-
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*',
96+
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*',
9797
extras_require = {
98-
'test': ['ipykernel', 'ipython', 'mock'],
99-
'test:python_version == "3.3"': ['pytest<3.3.0'],
100-
'test:(python_version >= "3.4" or python_version == "2.7")': ['pytest'],
98+
'test': ['ipykernel', 'ipython', 'mock', 'pytest'],
10199
},
102100
cmdclass = {
103101
'bdist_egg': bdist_egg if 'bdist_egg' in sys.argv else bdist_egg_disabled,

0 commit comments

Comments
 (0)