Skip to content

Commit a04b2a4

Browse files
authored
ci: use Python 3.9 for mypy workflow to fix ci (bazel-contrib#2625)
The mypy check on CI has been failing. The problem was the combination of: * We were using Python 3.8 * jpetrucciani/mypy-check@master updated to use mypy 1.15 * mypy 1.15 dropped support for Python 3.8 To fix, use Python 3.9.
1 parent ef205f5 commit a04b2a4

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/mypy.yaml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,10 @@ jobs:
2222
- uses: jpetrucciani/mypy-check@master
2323
with:
2424
requirements: 1.6.0
25-
python_version: 3.8
25+
python_version: 3.9
2626
path: 'python/runfiles'
2727
- uses: jpetrucciani/mypy-check@master
2828
with:
2929
requirements: 1.6.0
30-
python_version: 3.8
30+
python_version: 3.9
3131
path: 'tests/runfiles'
32-

0 commit comments

Comments
 (0)