Skip to content

Commit

Permalink
Bump required typed_ast version to 1.0.3 (python#3152)
Browse files Browse the repository at this point in the history
This includes the important uninitialized read fix (python/typed_ast#38).

For cross-reference, see also python#3127 (which is now closed).
  • Loading branch information
ddfisher authored and gvanrossum committed Apr 10, 2017
1 parent 745d300 commit d6ed083
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -58,5 +58,5 @@ show_missing = true
# Then run "python3 setup.py bdist_wheel" to build a wheel file
# (and then upload that to PyPI).
requires-dist =
typed-ast >= 1.0.0, < 1.1.0
typed-ast >= 1.0.3, < 1.1.0
typing >= 3.5.3; python_version < "3.5"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ def run(self):
# "pip3 install git+git://github.com/python/mypy.git"
# (as suggested by README.md).
install_requires = []
install_requires.append('typed-ast >= 1.0.0, < 1.1.0')
install_requires.append('typed-ast >= 1.0.3, < 1.1.0')
if sys.version_info < (3, 5):
install_requires.append('typing >= 3.5.3')

Expand Down
2 changes: 1 addition & 1 deletion test-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ flake8
flake8-bugbear; python_version >= '3.5'
flake8-pyi; python_version >= '3.5'
lxml; sys_platform != 'win32' or python_version == '3.5' or python_version == '3.6'
typed-ast>=1.0.0,<1.1.0; sys_platform != 'win32' or python_version >= '3.5'
typed-ast>=1.0.3,<1.1.0; sys_platform != 'win32' or python_version >= '3.5'
pytest>=2.8
pytest-xdist>=1.13
pytest-cov>=2.4.0
Expand Down

0 comments on commit d6ed083

Please sign in to comment.