Skip to content

Commit 69776b1

Browse files
updated workflow files and sonar properties to python 3.13
1 parent 26be22e commit 69776b1

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
run: poetry run pytest --cov . --cov-report xml:coverage-reports/coverage-hydrolib-core.xml --junitxml=xunit-reports/xunit-result-hydrolib-core.xml
5050

5151
- name: Autoformat code if the check fails
52-
if: ${{ (matrix.os == 'ubuntu-latest') && (matrix.python-version == 3.12) }}
52+
if: ${{ (matrix.os == 'ubuntu-latest') && (matrix.python-version == 3.13) }}
5353
run: |
5454
poetry run isort .
5555
poetry run black .

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
fetch-depth: 0
1313
- uses: actions/setup-python@v5
1414
with:
15-
python-version: 3.12
15+
python-version: 3.13
1616

1717
- name: Run image
1818
uses: abatilo/actions-poetry@v2.3.0

.github/workflows/docs_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
fetch-depth: 0
1414
- uses: actions/setup-python@v5
1515
with:
16-
python-version: 3.12
16+
python-version: 3.13
1717

1818
- name: Run image
1919
uses: abatilo/actions-poetry@v2.3.0

.github/workflows/integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
python-version: [3.12]
16+
python-version: [3.13]
1717
os: [ubuntu-latest]
1818
runs-on: ${{ matrix.os }}
1919
steps:

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
- name: Set up python
3737
uses: actions/setup-python@v5
3838
with:
39-
python-version: 3.12
39+
python-version: 3.13
4040

4141
- name: Run image
4242
uses: abatilo/actions-poetry@v2.3.0

sonar-project.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ sonar.organization=deltares
1111
# Encoding of the source code. Default is default system encoding
1212
sonar.sourceEncoding=UTF-8
1313

14-
sonar.python.version=3.9, 3.10, 3.11, 3.12
14+
sonar.python.version=3.9, 3.10, 3.11, 3.12, 3.13

0 commit comments

Comments
 (0)