Skip to content

Commit

Permalink
Now that typed_ast 1.3.0 is released, mandate it (#6270)
Browse files Browse the repository at this point in the history
(In both setup.py and test-requirements.txt.)
  • Loading branch information
gvanrossum authored Jan 30, 2019
1 parent 7a3a23d commit 871f217
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ def run(self):
]},
classifiers=classifiers,
cmdclass=cmdclass,
install_requires = ['typed-ast >= 1.2.0, < 1.3.0',
install_requires = ['typed-ast >= 1.3.0, < 1.4.0',
'mypy_extensions >= 0.4.0, < 0.5.0',
],
extras_require = {
Expand Down
2 changes: 1 addition & 1 deletion test-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ psutil==5.4.0
pytest>=3.4
pytest-xdist>=1.22
pytest-cov>=2.4.0
typed-ast>=1.2.0,<1.3.0
typed-ast>=1.3.0,<1.4.0
typing>=3.5.2; python_version < '3.5'
py>=1.5.2
virtualenv
Expand Down

0 comments on commit 871f217

Please sign in to comment.