From c59bec97b308d4a32b7b64dd0d6987b41a5e91db Mon Sep 17 00:00:00 2001 From: "Fabian H." <73600109+teutoburg@users.noreply.github.com> Date: Mon, 2 Feb 2026 13:44:37 +0100 Subject: [PATCH] Update Python version matrix for updated dependency tests This was always supposed to be tested only with the highest and lowest Python versions we currently support. During the whole 3.13 and 3.14 mess, that got complicated. Now that 3.14 is mostly working everywhere, we can follow that again. Also prepare to include 3.15 one day, so we don't have to dig up the syntax again. Also bumping Poetry. --- .github/workflows/updated_tests.yml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/updated_tests.yml b/.github/workflows/updated_tests.yml index 70fc542..b6bc754 100644 --- a/.github/workflows/updated_tests.yml +++ b/.github/workflows/updated_tests.yml @@ -23,25 +23,25 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest, macos-latest, windows-latest] - python-version: ['3.10', '3.12', '3.13'] + python-version: ['3.10', '3.14'] experimental: [false] - include: - - os: ubuntu-latest - python-version: '3.14' - experimental: true - - os: macos-latest - python-version: '3.14' - experimental: true - - os: windows-latest - python-version: '3.14' - experimental: true + # include: + # - os: ubuntu-latest + # python-version: '3.15' + # experimental: true + # - os: macos-latest + # python-version: '3.15' + # experimental: true + # - os: windows-latest + # python-version: '3.15' + # experimental: true steps: - uses: actions/checkout@v6 - name: Install poetry shell: bash - run: pipx install poetry==2.3.0 + run: pipx install poetry==2.3.2 - name: Set up Python uses: actions/setup-python@v6