File tree Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 34
34
- name : Update pip
35
35
run : python -m pip install -U pip
36
36
- name : Install dependencies
37
- run : pip install $(grep tomli== requirements-tests.txt) $(grep mypy== requirements-tests.txt)
37
+ run : |
38
+ # Temporarily pin stubtest version
39
+ pip install mypy==0.921
40
+ pip install $(grep tomli== requirements-tests.txt) # $(grep mypy== requirements-tests.txt)
38
41
- name : Run stubtest
39
42
run : python tests/stubtest_stdlib.py
40
43
Original file line number Diff line number Diff line change @@ -110,7 +110,10 @@ jobs:
110
110
- name : Update pip
111
111
run : python -m pip install -U pip
112
112
- name : Install dependencies
113
- run : pip install $(grep tomli== requirements-tests.txt) $(grep mypy== requirements-tests.txt)
113
+ run : |
114
+ # Temporarily pin stubtest version
115
+ pip install mypy==0.921
116
+ pip install $(grep tomli== requirements-tests.txt) # $(grep mypy== requirements-tests.txt)
114
117
- name : Run stubtest
115
118
run : python tests/stubtest_stdlib.py
116
119
Original file line number Diff line number Diff line change 1
- mypy==0.921
1
+ mypy==0.930
2
2
pytype==2021.11.29; platform_system != "Windows"
3
3
# must match .pre-commit-config.yaml
4
4
black==21.12b0
You can’t perform that action at this time.
0 commit comments