Skip to content

Commit 551ae6b

Browse files
committed
Revert "requirements: do not install typed-ast for Python 3.8"
This reverts commit 4154a32. Gets used in tests via `# flags: --python-version 2.7` etc.
1 parent cc532bb commit 551ae6b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ def run(self):
178178
classifiers=classifiers,
179179
cmdclass=cmdclass,
180180
# When changing this, also update test-requirements.txt.
181-
install_requires=['typed-ast >= 1.3.5, < 1.4.0; python_version < "3.8"',
181+
install_requires=['typed-ast >= 1.3.5, < 1.4.0',
182182
'mypy_extensions >= 0.4.0, < 0.5.0',
183183
],
184184
# Same here.

test-requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ psutil>=4.0
99
pytest>=4.4
1010
pytest-xdist>=1.22
1111
pytest-cov>=2.4.0
12-
typed-ast>=1.3.5,<1.4.0; python_version < '3.8'
12+
typed-ast>=1.3.5,<1.4.0
1313
typing>=3.5.2; python_version < '3.5'
1414
py>=1.5.2
1515
virtualenv

0 commit comments

Comments
 (0)