From 5eb893c62bcf7e6e9ae9d91aad432670ef83ed71 Mon Sep 17 00:00:00 2001 From: Andy Lee Date: Fri, 25 Jul 2025 09:53:36 -0700 Subject: [PATCH] ci: add Python 3.13 support to build matrix --- .github/workflows/build-reusable.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/build-reusable.yml b/.github/workflows/build-reusable.yml index 8830172..8ab5bb2 100644 --- a/.github/workflows/build-reusable.yml +++ b/.github/workflows/build-reusable.yml @@ -28,6 +28,9 @@ jobs: - os: ubuntu-latest python: '3.12' container: 'quay.io/pypa/manylinux2014_x86_64' + - os: ubuntu-latest + python: '3.13' + container: 'quay.io/pypa/manylinux2014_x86_64' - os: macos-latest python: '3.9' container: '' @@ -40,6 +43,9 @@ jobs: - os: macos-latest python: '3.12' container: '' + - os: macos-latest + python: '3.13' + container: '' runs-on: ${{ matrix.os }} container: ${{ matrix.container }}