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 60
60
- name : Install dependencies
61
61
run : |
62
62
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
63
66
pip install -r requirements/test_requirements.txt
64
67
- name : Build
65
68
run : |
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ cffi; python_version < '3.10'
14
14
# For testing types. Notes on the restrictions:
15
15
# - Mypy relies on C API features not present in PyPy
16
16
# 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"
18
18
typing_extensions>=4.2.0
19
19
# for optional f2py encoding detection
20
20
charset-normalizer
You can’t perform that action at this time.
0 commit comments