From ec24191c64570d287032c5a4179c38237cd94043 Mon Sep 17 00:00:00 2001 From: "Thomas J. Fan" Date: Sun, 10 Nov 2024 09:19:33 -0500 Subject: [PATCH] Update macos version in cibuildwheel (#779) * Update macos version in cibuildwheel * Adds 3.13 to test matrix --- .github/workflows/build_and_publish.yml | 2 +- .github/workflows/test.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build_and_publish.yml b/.github/workflows/build_and_publish.yml index 3adf8fe7..7623abb7 100644 --- a/.github/workflows/build_and_publish.yml +++ b/.github/workflows/build_and_publish.yml @@ -13,7 +13,7 @@ jobs: strategy: matrix: - os: [ubuntu-20.04, windows-2019, macos-12] + os: [ubuntu-20.04, windows-2019, macos-13] steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 66fabb80..f297e701 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -9,13 +9,13 @@ jobs: name: "Build ${{ matrix.pyver }} on ${{ matrix.os }}" strategy: matrix: - pyver: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"] + pyver: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"] os: [ubuntu-latest, windows-latest] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v4 - name: Setting up Python - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.pyver }} - name: Install dependencies