8000 Bump version to 3.7.4.2 · python/typing@c850161 · GitHub
[go: up one dir, main page]

Skip to content

Commit c850161

Browse files
committed
Bump version to 3.7.4.2
1 parent 0b0e248 commit c850161

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

setup.py

Lines changed: 3 additions & 3 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, 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+ '
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 '
99
'to install the typing package.\n')
1010
exit(1)
1111

12-
version = '3.7.4.1'
12+
version = '3.7.4.2'
1313
description = 'Type Hints for Python'
1414
long_description = '''\
1515
Typing -- Type Hints for Python

0 commit comments

Comments
 (0)
0