File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 6060 - name : Install dependencies
6161 run : |
6262 pip install -r requirements/build_requirements.txt
63+ # orjson makes mypy faster but the default requirements.txt
64+ # can't install it because orjson doesn't support 32 bit Linux
65+ pip install orjson
6366 pip install -r requirements/test_requirements.txt
6467 - name : Build
6568 run : |
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ cffi; python_version < '3.10'
1414# For testing types. Notes on the restrictions:
1515# - Mypy relies on C API features not present in PyPy
1616# NOTE: Keep mypy in sync with environment.yml
17- mypy[faster-cache] ==1.13.0; platform_python_implementation != "PyPy"
17+ mypy==1.13.0; platform_python_implementation != "PyPy"
1818typing_extensions>=4.2.0
1919# for optional f2py encoding detection
2020charset-normalizer
You can’t perform that action at this time.
0 commit comments