From 8d912c743c361735fb1aba8cdcaff7f49b4fe026 Mon Sep 17 00:00:00 2001 From: Richard Levasseur Date: Sun, 23 Feb 2025 16:28:41 -0800 Subject: [PATCH 1/2] ci: fix mypy on ci --- .github/workflows/mypy.yaml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/mypy.yaml b/.github/workflows/mypy.yaml index 429775172e..8a2cd65be7 100644 --- a/.github/workflows/mypy.yaml +++ b/.github/workflows/mypy.yaml @@ -22,11 +22,10 @@ jobs: - uses: jpetrucciani/mypy-check@master with: requirements: 1.6.0 - python_version: 3.8 + python_version: 3.11 path: 'python/runfiles' - uses: jpetrucciani/mypy-check@master with: requirements: 1.6.0 - python_version: 3.8 + python_version: 3.11 path: 'tests/runfiles' - From 67e8726f66dc2a33e1a33006db1ce390515dbf5e Mon Sep 17 00:00:00 2001 From: Richard Levasseur Date: Sun, 23 Feb 2025 16:54:43 -0800 Subject: [PATCH 2/2] use py3.9 to better match oldest supported python version --- .github/workflows/mypy.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/mypy.yaml b/.github/workflows/mypy.yaml index 8a2cd65be7..866c43abd1 100644 --- a/.github/workflows/mypy.yaml +++ b/.github/workflows/mypy.yaml @@ -22,10 +22,10 @@ jobs: - uses: jpetrucciani/mypy-check@master with: requirements: 1.6.0 - python_version: 3.11 + python_version: 3.9 path: 'python/runfiles' - uses: jpetrucciani/mypy-check@master with: requirements: 1.6.0 - python_version: 3.11 + python_version: 3.9 path: 'tests/runfiles'