Skip to content

Commit

Permalink
Revert last two changes; bump version to 3.7.4.3
Browse files Browse the repository at this point in the history
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).
  • Loading branch information
gvanrossum committed Jul 13, 2020
1 parent c850161 commit ffebbec
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
import sys
from setuptools import setup

if sys.version_info[:2] not in ((2, 7), (3, 4)):
sys.stderr.write('ERROR: You need Python 2.7 or 3.4 '
if sys.version_info < (2, 7, 0) or (3, 0, 0) <= sys.version_info < (3, 4, 0):
sys.stderr.write('ERROR: You need Python 2.7 or 3.4+ '
'to install the typing package.\n')
exit(1)

version = '3.7.4.2'
version = '3.7.4.3'
description = 'Type Hints for Python'
long_description = '''\
Typing -- Type Hints for Python
Expand Down Expand Up @@ -67,5 +67,5 @@
'checker typehints typehinting typechecking backport',
package_dir={'': package_dir},
py_modules=['typing'],
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <3.5',
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
classifiers=classifiers)

0 comments on commit ffebbec

Please sign in to comment.