File tree 3 files changed +6
-8
lines changed
3 files changed +6
-8
lines changed Original file line number Diff line number Diff line change @@ -177,7 +177,7 @@ jobs:
177
177
- " 3.7"
178
178
- " 3.8"
179
179
- " 3.9"
180
- - " 3.10.6 " # python/mypy#13627
180
+ - " 3.10"
181
181
182
182
steps :
183
183
@@ -201,9 +201,7 @@ jobs:
201
201
git diff && test -z "$(git diff)"
202
202
203
203
- name : Install type dependencies
204
- run : python -m pip install
205
- mypy
206
- numpy
204
+ run : python -m pip install --upgrade -r conf/requirements-type.txt
207
205
208
206
- name : mypy (typecheck)
209
207
run : mypy -p mpi4py
Original file line number Diff line number Diff line change
1
+ mypy
2
+ numpy
3
+
Original file line number Diff line number Diff line change @@ -57,15 +57,12 @@ commands =
57
57
pylint mpi4py
58
58
59
59
[testenv:type]
60
- deps =
61
- mypy
62
- numpy
60
+ deps = -r{toxinidir}/conf/requirements-type.txt
63
61
setenv =
64
62
MPICFG =nompi-fast
65
63
CFLAGS =-O0
66
64
commands =
67
65
stubtest mpi4py
68
- mypy --python-version 3.7 -p mpi4py
69
66
mypy --python-version 3.8 -p mpi4py
70
67
mypy --python-version 3.9 -p mpi4py
71
68
mypy --python-version 3.10 -p mpi4py
You can’t perform that action at this time.
0 commit comments