Skip to content

Commit

Permalink
Bump version to 3.7.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
gvanrossum committed Jul 9, 2020
1 parent 0b0e248 commit c850161
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 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, 7, 0) or (3, 0, 0) <= sys.version_info < (3, 4, 0):
sys.stderr.write('ERROR: You need Python 2.7 or 3.4+ '
if sys.version_info[:2] not in ((2, 7), (3, 4)):
sys.stderr.write('ERROR: You need Python 2.7 or 3.4 '
'to install the typing package.\n')
exit(1)

version = '3.7.4.1'
version = '3.7.4.2'
description = 'Type Hints for Python'
long_description = '''\
Typing -- Type Hints for Python
Expand Down

0 comments on commit c850161

Please sign in to comment.