From 50caf65f288bfed8f44afcce4585c504dee2c5a0 Mon Sep 17 00:00:00 2001 From: Andy Lee Date: Fri, 25 Jul 2025 13:48:59 -0700 Subject: [PATCH] fix: change ubuntu-latest to ubuntu-22.04 and add Python 3.13 - Explicitly use ubuntu-22.04 instead of ubuntu-latest - Add Python 3.13 to the build matrix - This ensures we build on the same OS version as Google Colab --- .github/workflows/build-reusable.yml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-reusable.yml b/.github/workflows/build-reusable.yml index c2e7958..dd389cb 100644 --- a/.github/workflows/build-reusable.yml +++ b/.github/workflows/build-reusable.yml @@ -15,14 +15,16 @@ jobs: strategy: matrix: include: - - os: ubuntu-latest + - os: ubuntu-22.04 python: '3.9' - - os: ubuntu-latest + - os: ubuntu-22.04 python: '3.10' - - os: ubuntu-latest + - os: ubuntu-22.04 python: '3.11' - - os: ubuntu-latest + - os: ubuntu-22.04 python: '3.12' + - os: ubuntu-22.04 + python: '3.13' - os: macos-latest python: '3.9' - os: macos-latest @@ -31,6 +33,8 @@ jobs: python: '3.11' - os: macos-latest python: '3.12' + - os: macos-latest + python: '3.13' runs-on: ${{ matrix.os }} steps: