File tree Expand file tree Collapse file tree 4 files changed +6
-5
lines changed Expand file tree Collapse file tree 4 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -86,7 +86,7 @@ install:
86
86
# means that tox picks up the mypy from the source directories instead of
87
87
# the version it installed into a venv. This is also *why* we need to do this,
88
88
# since if we arranged for tox to build with mypyc, pytest wouldn't use it.
89
- - if [[ $TEST_MYPYC == 1 ]]; then pip install -r test -requirements.txt; CC=clang MYPYC_OPT_LEVEL=0 python3 setup.py --use-mypyc build_ext --inplace; fi
89
+ - if [[ $TEST_MYPYC == 1 ]]; then pip install -r mypy -requirements.txt; CC=clang MYPYC_OPT_LEVEL=0 python3 setup.py --use-mypyc build_ext --inplace; fi
90
90
91
91
script :
92
92
- tox -- $EXTRA_ARGS
Original file line number Diff line number Diff line change
1
+ typing_extensions>=3.7.4
2
+ mypy_extensions>=0.4.0,<0.5.0
3
+ typed_ast>=1.4.0,<1.5.0
Original file line number Diff line number Diff line change @@ -185,7 +185,7 @@ def run(self):
185
185
]},
186
186
classifiers = classifiers ,
187
187
cmdclass = cmdclass ,
188
- # When changing this, also update test -requirements.txt.
188
+ # When changing this, also update mypy -requirements.txt.
189
189
install_requires = ['typed_ast >= 1.4.0, < 1.5.0' ,
190
190
'typing_extensions>=3.7.4' ,
191
191
'mypy_extensions >= 0.4.0, < 0.5.0' ,
Original file line number Diff line number Diff line change
1
+ -r mypy-requirements.txt
1
2
attrs>=18.0
2
3
flake8>=3.7
3
4
flake8-bugbear; python_version >= '3.5'
4
5
flake8-pyi; python_version >= '3.6'
5
6
lxml>=4.4.0
6
- typing_extensions>=3.7.4
7
- mypy_extensions>=0.4.0,<0.5.0
8
7
psutil>=4.0
9
8
pytest>=5.1.1
10
9
pytest-xdist>=1.22
11
10
pytest-cov>=2.4.0
12
- typed_ast>=1.4.0,<1.5.0
13
11
typing>=3.5.2; python_version < '3.5'
14
12
py>=1.5.2
15
13
virtualenv
You can’t perform that action at this time.
0 commit comments