Skip to content

Commit

Permalink
Update setup.py to match setup.cfg
Browse files Browse the repository at this point in the history
  • Loading branch information
Guido van Rossum committed Jan 6, 2017
1 parent 2ab1e6e commit b8468e7
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,10 +100,9 @@ def run(self):
# "pip3 install git+git://github.com/python/mypy.git"
# (as suggested by README.md).
install_requires = []
if sys.platform != 'win32':
install_requires.append('typed-ast >= 0.6.1')
install_requires.append('typed-ast >= 0.6.2')
if sys.version_info < (3, 5):
install_requires.append('typing >= 3.5.2')
install_requires.append('typing >= 3.5.3')

setup(name='mypy-lang',
version=version,
Expand Down

0 comments on commit b8468e7

Please sign in to comment.