Skip to content

Commit ee5c86f

Browse files
committed
ci: update Python version matrix to drop 3.8 and add 3.11, 3.12
1 parent 2055381 commit ee5c86f

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/ci.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
python-version: [3.8, 3.9, "3.10"]
14+
python-version: [3.9, "3.10", "3.11", "3.12"]
1515

1616
steps:
1717
- uses: actions/checkout@v4
@@ -40,7 +40,7 @@ jobs:
4040
if: ${{ always() }}
4141
- name: Run codacy-coverage-reporter
4242
uses: codacy/codacy-coverage-reporter-action@master
43-
if: matrix.python-version == 3.10
43+
if: matrix.python-version == 3.12
4444
with:
4545
project-token: ${{ secrets.CODACY_PROJECT_TOKEN }}
4646
coverage-reports: cov.xml
@@ -51,7 +51,7 @@ jobs:
5151
if: github.event_name == 'release'
5252
strategy:
5353
matrix:
54-
python-version: ["3.10"]
54+
python-version: ["3.12"]
5555
steps:
5656
- uses: actions/checkout@v4
5757
- name: Setup Python # Set Python version

.github/workflows/docs.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
# if: github.ref == 'refs/heads/master'
99
strategy:
1010
matrix:
11-
python-version: ["3.10"]
11+
python-version: ["3.12"]
1212
steps:
1313
- uses: actions/checkout@v4
1414
- name: Setup Python # Set Python version
@@ -47,7 +47,7 @@ jobs:
4747
# if: github.ref == 'refs/heads/master'
4848
strategy:
4949
matrix:
50-
python-version: ["3.10"]
50+
python-version: ["3.12"]
5151
steps:
5252
- uses: actions/checkout@v4
5353
with:

0 commit comments

Comments
 (0)