Skip to content

Commit

Permalink
Update typed_ast dep to 1.4.0+ (python#6937)
Browse files Browse the repository at this point in the history
Now that typed_ast 1.4.0 is released (whose main new feature is support for extra text after # type: ignore).
  • Loading branch information
Guido van Rossum authored Jun 5, 2019
1 parent 7cc438d commit 37cc2ea
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 @@ -178,7 +178,7 @@ def run(self):
classifiers=classifiers,
cmdclass=cmdclass,
# When changing this, also update test-requirements.txt.
install_requires=['typed-ast >= 1.3.5, < 1.4.0',
install_requires=['typed_ast >= 1.4.0, < 1.5.0',
'mypy_extensions >= 0.4.0, < 0.5.0',
],
# Same here.
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>=4.0
pytest>=4.4
pytest-xdist>=1.22
pytest-cov>=2.4.0
typed-ast>=1.3.5,<1.4.0
typed_ast>=1.4.0,<1.5.0
typing>=3.5.2; python_version < '3.5'
py>=1.5.2
virtualenv
Expand Down

0 comments on commit 37cc2ea

Please sign in to comment.