From 6797169db1c4be1f8d7b9d51490d614395e279eb Mon Sep 17 00:00:00 2001 From: DeeDeeG Date: Sat, 11 May 2024 15:15:23 -0400 Subject: [PATCH] GitHub Actions add Python 3.13 to test matrix This version of Python is in beta now, and will be stable soonish. --- .github/workflows/node-gyp.yml | 2 +- .github/workflows/python_tests.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/node-gyp.yml b/.github/workflows/node-gyp.yml index 3c96a948..1b3304d0 100644 --- a/.github/workflows/node-gyp.yml +++ b/.github/workflows/node-gyp.yml @@ -11,7 +11,7 @@ jobs: fail-fast: false matrix: os: [macos-latest, macos-14, ubuntu-latest, windows-latest] - python: ["3.8", "3.10", "3.12"] + python: ["3.8", "3.10", "3.12", "3.13"] exclude: - os: macos-14 python: "3.8" diff --git a/.github/workflows/python_tests.yml b/.github/workflows/python_tests.yml index a93412da..f4b37cba 100644 --- a/.github/workflows/python_tests.yml +++ b/.github/workflows/python_tests.yml @@ -16,7 +16,7 @@ jobs: max-parallel: 5 matrix: os: [macos-latest, macos-14, ubuntu-latest] # , windows-latest] - python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"] exclude: - os: macos-14 python-version: "3.8"