From ce71af3a91a924dc6a3e0f61996964d662466ef5 Mon Sep 17 00:00:00 2001 From: Eric Brown Date: Tue, 8 Oct 2024 18:41:31 -0700 Subject: [PATCH] Test with official 3.13 and 3.14 alphas This change updates the unit testing to use the official Python 3.13 released yesterday (Oct 7). It also starts testing against the alpha versions of Python 3.14 to catch potential problems early before it is officially released. Signed-off-by: Eric Brown --- .github/workflows/pythonpackage.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pythonpackage.yml b/.github/workflows/pythonpackage.yml index 70c4748b..777d8d1a 100644 --- a/.github/workflows/pythonpackage.yml +++ b/.github/workflows/pythonpackage.yml @@ -51,7 +51,8 @@ jobs: ["3.10", "310"], ["3.11", "311"], ["3.12", "312"], - ["3.13.0-a - 3.13", "313"], + ["3.13", "313"], + ["3.14.0-alpha - 3.14", "314"], ] os: [ubuntu-latest, macos-latest] runs-on: ${{ matrix.os }}