Skip to content

Commit b073eaa

Browse files
gvanrossumJukkaL
authored andcommitted
Bump typed-ast dependency to 1.0.4. (#3545)
This incorporates python/typed_ast#41: 'Add checks for some 3.5+ only syntax (async/await and the @ operator)'
1 parent 638dc62 commit b073eaa

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
@@ -56,5 +56,5 @@ show_missing = true
5656
# Then run "python3 setup.py bdist_wheel" to build a wheel file
5757
# (and then upload that to PyPI).
5858
requires-dist =
59-
typed-ast >= 1.0.3, < 1.1.0
59+
typed-ast >= 1.0.4, < 1.1.0
6060
typing >= 3.5.3; python_version < "3.5"

setup.py

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

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.6'
44
lxml; sys_platform != 'win32' or python_version == '3.5' or python_version == '3.6'
5-
typed-ast>=1.0.3,<1.1.0; sys_platform != 'win32' or python_version >= '3.5'
5+
typed-ast>=1.0.4,<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)