Skip to content

Commit acc7740

Browse files
authored
Bump typed-ast minimum version to 1.1.1 (#6080)
This pull request bumps the minimum allowed version of typed-ast to version 1.1.1. This is mostly so that we can have python/typed_ast#49, which we need to correctly handle Literals containing unicode strings when analyzing Python 2 source code.
1 parent b922266 commit acc7740

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ def run(self):
168168
]},
169169
classifiers=classifiers,
170170
cmdclass=cmdclass,
171-
install_requires = ['typed-ast >= 1.1.0, < 1.2.0',
171+
install_requires = ['typed-ast >= 1.1.1, < 1.2.0',
172172
'mypy_extensions >= 0.4.0, < 0.5.0',
173173
],
174174
extras_require = {

test-requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ psutil==5.4.0
88
pytest>=3.4
99
pytest-xdist>=1.22
1010
pytest-cov>=2.4.0
11-
typed-ast>=1.1.0,<1.2.0
11+
typed-ast>=1.1.1,<1.2.0
1212
typing>=3.5.2; python_version < '3.5'
1313
py>=1.5.2
1414
virtualenv

0 commit comments

Comments
 (0)