From 9a53d672121a74335d339e51dd1d5a61a79b11ac Mon Sep 17 00:00:00 2001 From: Fabian Joswig Date: Mon, 14 Oct 2024 23:28:03 +0200 Subject: [PATCH 1/2] [ci] Add python 3.14 to pytest workflow. --- .github/workflows/pytest.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index 36981809..624c2f73 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -17,7 +17,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest] - python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] + python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"] include: - os: macos-latest python-version: "3.10" From 0c0df39a5d34e765e24fe6415fd17db8c0717d92 Mon Sep 17 00:00:00 2001 From: Fabian Joswig Date: Mon, 14 Oct 2024 23:29:43 +0200 Subject: [PATCH 2/2] [ci] Allow pre-release in pytest workflow --- .github/workflows/pytest.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index 624c2f73..a5efc92f 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -30,6 +30,7 @@ jobs: uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} + allow-prereleases: true - name: Install run: |