File tree 2 files changed +6
-6
lines changed
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 32
32
persist-credentials : false
33
33
- name : Remove ignored paths
34
34
run : find . -name .lint-ignore | xargs dirname | xargs rm -rf
35
- - uses : actions/setup-python@v4
35
+ - uses : actions/setup-python@v5
36
36
with :
37
- python-version : ' 3.9 '
37
+ python-version : ' 3.10 '
38
38
architecture : x64
39
39
- name : Install flake8 and plugins
40
40
run : pip install --disable-pip-version-check flake8-black==0.3.5 flake8-isort==5.0.3
@@ -91,12 +91,12 @@ jobs:
91
91
persist-credentials : false
92
92
- name : Remove ignored paths
93
93
run : find . -name .lint-ignore | xargs dirname | xargs rm -rf
94
- - uses : actions/setup-python@v4
94
+ - uses : actions/setup-python@v5
95
95
with :
96
- python-version : ' 3.9 '
96
+ python-version : ' 3.10 '
97
97
architecture : x64
98
98
- name : Install mypy
99
- run : pip install --disable-pip-version-check mypy==0.950
99
+ run : pip install --disable-pip-version-check mypy==1.11.0
100
100
- name : Run mypy
101
101
id : check
102
102
continue-on-error : ${{ inputs.continue-on-error }}
Original file line number Diff line number Diff line change 1
1
[mypy]
2
2
ignore_missing_imports = True
3
3
implicit_reexport = True
4
- python_version = 3.9
4
+ python_version = 3.10
5
5
show_column_numbers = True
6
6
show_error_codes = True
7
7
strict = True
You can’t perform that action at this time.
0 commit comments