From 70c5fc7264d612fdee0a7e3761034d4e313987dd Mon Sep 17 00:00:00 2001 From: Benjamin Smith Date: Sat, 26 Oct 2024 21:11:27 +0200 Subject: [PATCH] testing python 3.13 --- .github/workflows/pull-request.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pull-request.yaml b/.github/workflows/pull-request.yaml index 06e592c..6f2be16 100644 --- a/.github/workflows/pull-request.yaml +++ b/.github/workflows/pull-request.yaml @@ -8,7 +8,11 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.11", "3.12"] + python-version: [ "3.12", "3.13" ] + # Mark Python 3.13 as allowed to fail + include: + - python-version: "3.13" + continue-on-error: true steps: - uses: actions/checkout@v4