Skip to content

Commit 01afaff

Browse files
committed
Force typed_ast >= 1.4.0 for all supported Python versions
1 parent 2fbfd30 commit 01afaff

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

astroid/__pkginfo__.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,7 @@
2525
"lazy_object_proxy",
2626
"six",
2727
"wrapt",
28-
'typed-ast<1.3.0;implementation_name== "cpython" and python_version<"3.7"',
29-
'typed-ast>=1.3.0;implementation_name== "cpython" and python_version>="3.7" and python_version<"3.8"',
28+
'typed-ast>=1.4.0,<1.5;implementation_name== "cpython" and python_version<"3.8"',
3029
]
3130

3231
# pylint: disable=redefined-builtin; why license is a builtin anyway?

tox.ini

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,7 @@ deps =
2020
nose
2121
py35,py36: numpy
2222
py35,py36: attr
23-
py35,py36: typed_ast<1.3.0
24-
py37: typed_ast>=1.3.0
23+
py35,py36,py37: typed_ast>=1.4.0,<1.5
2524
pytest
2625
python-dateutil
2726
pypy: singledispatch

0 commit comments

Comments
 (0)