Skip to content

Commit 16b8f2f

Browse files
kevinpjonesclaude
andcommitted
Fix CI: remove EOL Python 3.7, update action versions
Python 3.7 reached end-of-life in June 2023 and is no longer available on GitHub Actions runners, causing the entire matrix to fail. Replace it with 3.11 and update checkout/setup-python actions from the deprecated Node.js 20 versions (v2/v3) to current (v4/v5). Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 6485c31 commit 16b8f2f

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/run_tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ jobs:
99
runs-on: ubuntu-latest
1010
strategy:
1111
matrix:
12-
python-version: ["3.7", "3.8", "3.9"]
12+
python-version: ["3.8", "3.9", "3.11"]
1313
steps:
14-
- uses: actions/checkout@v2
14+
- uses: actions/checkout@v4
1515

1616
- name: Set up Python ${{ matrix.python-version }}
17-
uses: actions/setup-python@v3
17+
uses: actions/setup-python@v5
1818
with:
1919
python-version: ${{ matrix.python-version }}
2020
- name: Install dependencies

0 commit comments

Comments
 (0)