-
Notifications
You must be signed in to change notification settings - Fork 242
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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)): | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
gdippolito
|
||
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 | ||
|
1 comment
on commit c850161
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
But that is wrong — typing is in the stdlib for 3.5 and 3.6 too, and pip install doesn’t override stdlib modules.
Is this changement for a patch-version?
I guess it can break something