From eda885262eaacc69c5d8b61b41a731b0d4cb0f40 Mon Sep 17 00:00:00 2001 From: ross-spencer Date: Mon, 30 Sep 2024 12:08:39 -0400 Subject: [PATCH] Add Python 3.13 to Github workflow --- .github/workflows/unit-tests-all.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/unit-tests-all.yml b/.github/workflows/unit-tests-all.yml index 9fa31ea..2fd28b2 100644 --- a/.github/workflows/unit-tests-all.yml +++ b/.github/workflows/unit-tests-all.yml @@ -13,7 +13,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, windows-latest] - python-version: ["3.10", "3.11"] + python-version: ["3.10", "3.11", "3.12"] experimental: [false] # Include experimental or bleeding-edge releases. # Windows is not included as it can be unreliable, e.g. @@ -28,11 +28,14 @@ jobs: # Example formatting: 3.11.0-alpha.1, 3.9.0-beta.8, 3.10.0-rc.3 # - os: ubuntu-latest - python-version: "3.12.0" + python-version: "3.13.0" experimental: true - os: macos-latest - python-version: "3.12.0" + python-version: "3.13.0" experimental: true + - os: windows-latest + python-version: "3.13.0" + experimental: trues steps: - name: "check out repository" uses: "actions/checkout@v2"