Skip to content

Commit d6ed083

Browse files
ddfishergvanrossum
authored andcommitted
Bump required typed_ast version to 1.0.3 (#3152)
This includes the important uninitialized read fix (python/typed_ast#38). For cross-reference, see also #3127 (which is now closed).
1 parent 745d300 commit d6ed083

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,5 +58,5 @@ show_missing = true
5858
# Then run "python3 setup.py bdist_wheel" to build a wheel file
5959
# (and then upload that to PyPI).
6060
requires-dist =
61-
typed-ast >= 1.0.0, < 1.1.0
61+
typed-ast >= 1.0.3, < 1.1.0
6262
typing >= 3.5.3; python_version < "3.5"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ def run(self):
103103
# "pip3 install git+git://github.com/python/mypy.git"
104104
# (as suggested by README.md).
105105
install_requires = []
106-
install_requires.append('typed-ast >= 1.0.0, < 1.1.0')
106+
install_requires.append('typed-ast >= 1.0.3, < 1.1.0')
107107
if sys.version_info < (3, 5):
108108
install_requires.append('typing >= 3.5.3')
109109

test-requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ flake8
22
flake8-bugbear; python_version >= '3.5'
33
flake8-pyi; python_version >= '3.5'
44
lxml; sys_platform != 'win32' or python_version == '3.5' or python_version == '3.6'
5-
typed-ast>=1.0.0,<1.1.0; sys_platform != 'win32' or python_version >= '3.5'
5+
typed-ast>=1.0.3,<1.1.0; sys_platform != 'win32' or python_version >= '3.5'
66
pytest>=2.8
77
pytest-xdist>=1.13
88
pytest-cov>=2.4.0

0 commit comments

Comments
 (0)