Skip to content

Commit 604fef5

Browse files
committed
Update supported python versions in the workflow build matrix
Signed-off-by: Gregers Gram Rygg <[email protected]>
1 parent 9bc5946 commit 604fef5

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/python.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: ubuntu-latest
1919
strategy:
2020
matrix:
21-
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
21+
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
2222

2323
steps:
2424
- uses: actions/checkout@v4
@@ -43,7 +43,7 @@ jobs:
4343
path: htmlcov/
4444
- name: SonarCloud Scan
4545
uses: SonarSource/sonarcloud-github-action@v2
46-
if: ${{ matrix.python-version == '3.11' && env.SONAR_TOKEN != '' }}
46+
if: ${{ matrix.python-version == '3.13' && env.SONAR_TOKEN != '' }}
4747
env:
4848
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
4949
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
@@ -55,10 +55,10 @@ jobs:
5555

5656
steps:
5757
- uses: actions/checkout@v4
58-
- name: Set up Python 3.11
58+
- name: Set up Python 3.13
5959
uses: actions/setup-python@v5
6060
with:
61-
python-version: 3.11
61+
python-version: 3.13
6262
- name: Install poetry
6363
run: |
6464
curl -sSL https://install.python-poetry.org | POETRY_VERSION=1.4.2 python3 -

0 commit comments

Comments
 (0)