diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c83cd8b68..3bae395c0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -49,7 +49,7 @@ jobs: run: poetry run pytest --cov . --cov-report xml:coverage-reports/coverage-hydrolib-core.xml --junitxml=xunit-reports/xunit-result-hydrolib-core.xml - name: Autoformat code if the check fails - if: ${{ (matrix.os == 'ubuntu-latest') && (matrix.python-version == 3.12) }} + if: ${{ (matrix.os == 'ubuntu-latest') && (matrix.python-version == 3.13) }} run: | poetry run isort . poetry run black . diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 1fee4fbb2..1d4e45579 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -12,7 +12,7 @@ jobs: fetch-depth: 0 - uses: actions/setup-python@v5 with: - python-version: 3.12 + python-version: 3.13 - name: Run image uses: abatilo/actions-poetry@v2.3.0 diff --git a/.github/workflows/docs_release.yml b/.github/workflows/docs_release.yml index 92af15317..48e973180 100644 --- a/.github/workflows/docs_release.yml +++ b/.github/workflows/docs_release.yml @@ -13,7 +13,7 @@ jobs: fetch-depth: 0 - uses: actions/setup-python@v5 with: - python-version: 3.12 + python-version: 3.13 - name: Run image uses: abatilo/actions-poetry@v2.3.0 diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 69cb81b66..cfb1b18dd 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: [3.12] + python-version: [3.13] os: [ubuntu-latest] runs-on: ${{ matrix.os }} steps: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6de6e5f58..8cb771f00 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -36,7 +36,7 @@ jobs: - name: Set up python uses: actions/setup-python@v5 with: - python-version: 3.12 + python-version: 3.13 - name: Run image uses: abatilo/actions-poetry@v2.3.0 diff --git a/sonar-project.properties b/sonar-project.properties index 144085b80..5dc0f5e14 100644 --- a/sonar-project.properties +++ b/sonar-project.properties @@ -11,4 +11,4 @@ sonar.organization=deltares # Encoding of the source code. Default is default system encoding sonar.sourceEncoding=UTF-8 -sonar.python.version=3.9, 3.10, 3.11, 3.12 +sonar.python.version=3.9, 3.10, 3.11, 3.12, 3.13