8000 Revert last two changes; bump version to 3.7.4.3 · python/typing@ffebbec · GitHub
[go: up one dir, main page]

Skip to content

Commit ffebbec

Browse files
committed
Revert last two changes; bump version to 3.7.4.3
This should address issues due to projects including 'typing' in their requirements.txt file without a version constraint on Python (or pinning to 3.7.4.1).
1 parent c850161 commit ffebbec

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

setup.py

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

7-
if sys.version_info[:2] not in ((2, 7), (3, 4)):
8-
sys.stderr.write('ERROR: You need Python 2.7 or 3.4 '
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

12-
version = '3.7.4.2'
12+
version = '3.7.4.3'
1313
description = 'Type Hints for Python'
1414
long_description = '''\
1515
Typing -- Type Hints for Python
@@ -67,5 +67,5 @@
6767
'checker typehints typehinting typechecking backport',
6868
package_dir={'': package_dir},
6969
py_modules=['typing'],
70-
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <3.5',
70+
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
7171
classifiers=classifiers)

0 commit comments

Comments
 (0)
0