From c04007607a7117e61fa4150a880b78c08e29ed00 Mon Sep 17 00:00:00 2001 From: K <51281148+K-dash@users.noreply.github.com> Date: Thu, 1 Jan 2026 00:36:30 +0900 Subject: [PATCH 1/2] Update GitHub Actions workflows to remove macOS 13 support and upgrade maturin-action to v1.49.4 --- .github/workflows/publish.yml | 6 ++---- .github/workflows/release.yml | 6 ++---- 2 files changed, 4 insertions(+), 8 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index f8a1f61..03a6b6c 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -55,8 +55,6 @@ jobs: - os: ubuntu-latest target: aarch64 # macOS - - os: macos-13 # Intel - target: x86_64 - os: macos-14 # Apple Silicon target: aarch64 steps: @@ -67,7 +65,7 @@ jobs: uses: dtolnay/rust-toolchain@stable - name: Build wheels - uses: PyO3/maturin-action@aef21716ff3dcae8a1c301d23ec3e4446972a6e3 # v1.49.1 + uses: PyO3/maturin-action@86b9d133d34bc1b40018696f782949dac11bd380 # v1.49.4 with: target: ${{ matrix.target }} args: --release --out dist @@ -91,7 +89,7 @@ jobs: uses: dtolnay/rust-toolchain@stable - name: Build sdist - uses: PyO3/maturin-action@aef21716ff3dcae8a1c301d23ec3e4446972a6e3 # v1.49.1 + uses: PyO3/maturin-action@86b9d133d34bc1b40018696f782949dac11bd380 # v1.49.4 with: command: sdist args: --out dist diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b262fdb..97e3ce0 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -44,8 +44,6 @@ jobs: - os: ubuntu-latest target: aarch64 # macOS - - os: macos-13 # Intel - target: x86_64 - os: macos-14 # Apple Silicon target: aarch64 steps: @@ -56,7 +54,7 @@ jobs: uses: dtolnay/rust-toolchain@stable - name: Build wheels - uses: PyO3/maturin-action@aef21716ff3dcae8a1c301d23ec3e4446972a6e3 # v1.49.1 + uses: PyO3/maturin-action@86b9d133d34bc1b40018696f782949dac11bd380 # v1.49.4 with: target: ${{ matrix.target }} args: --release --out dist @@ -80,7 +78,7 @@ jobs: uses: dtolnay/rust-toolchain@stable - name: Build sdist - uses: PyO3/maturin-action@aef21716ff3dcae8a1c301d23ec3e4446972a6e3 # v1.49.1 + uses: PyO3/maturin-action@86b9d133d34bc1b40018696f782949dac11bd380 # v1.49.4 with: command: sdist args: --out dist From 31e812546483f435cc861dcdf944e3b480609b18 Mon Sep 17 00:00:00 2001 From: K <51281148+K-dash@users.noreply.github.com> Date: Thu, 1 Jan 2026 00:39:59 +0900 Subject: [PATCH 2/2] Update GitHub Actions workflows to include support for Python 3.12, 3.13, and 3.14 in publish and release jobs --- .github/workflows/publish.yml | 2 +- .github/workflows/release.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 03a6b6c..ae6b186 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -68,7 +68,7 @@ jobs: uses: PyO3/maturin-action@86b9d133d34bc1b40018696f782949dac11bd380 # v1.49.4 with: target: ${{ matrix.target }} - args: --release --out dist + args: --release --out dist -i python3.12 -i python3.13 -i python3.14 sccache: "true" manylinux: auto diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 97e3ce0..069e8d2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -57,7 +57,7 @@ jobs: uses: PyO3/maturin-action@86b9d133d34bc1b40018696f782949dac11bd380 # v1.49.4 with: target: ${{ matrix.target }} - args: --release --out dist + args: --release --out dist -i python3.12 -i python3.13 -i python3.14 sccache: "true" manylinux: auto