Skip to content

Commit d32469c

Browse files
authored
Drop support of Python 3.3 (python#633)
1 parent 4e9c5ed commit d32469c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ All Python versions:
4848
- ``Type``
4949
- ``TYPE_CHECKING``
5050

51-
Python 3.3+ only:
51+
Python 3.4+ only:
5252
-----------------
5353

5454
- ``ChainMap``

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
import sys
55
from setuptools import setup
66

7-
if sys.version_info < (2, 7, 0) or (3, 0, 0) <= sys.version_info < (3, 3, 0):
8-
sys.stderr.write('ERROR: You need Python 2.7 or 3.3+ '
7+
if sys.version_info < (2, 7, 0) or (3, 0, 0) <= sys.version_info < (3, 4, 0):
8+
sys.stderr.write('ERROR: You need Python 2.7 or 3.4+ '
99
'to install the typing package.\n')
1010
exit(1)
1111

@@ -37,10 +37,10 @@
3737
'License :: OSI Approved :: Python Software Foundation License',
3838
'Operating System :: OS Independent',
3939
'Programming Language :: Python :: 2.7',
40-
'Programming Language :: Python :: 3.3',
4140
'Programming Language :: Python :: 3.4',
4241
'Programming Language :: Python :: 3.5',
4342
'Programming Language :: Python :: 3.6',
43+
'Programming Language :: Python :: 3.7',
4444
'Topic :: Software Development',
4545
]
4646

0 commit comments

Comments
 (0)