From 2c50afe15e2f4a0a0cf7c40a5d52ed7049f995db Mon Sep 17 00:00:00 2001 From: Jordan Woods <13803242+jorwoods@users.noreply.github.com> Date: Fri, 18 Oct 2024 15:24:23 -0500 Subject: [PATCH 1/3] ci: update cibw to 2.21.3 --- .github/workflows/pypi_publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pypi_publish.yml b/.github/workflows/pypi_publish.yml index aeeab51a..aba4c783 100644 --- a/.github/workflows/pypi_publish.yml +++ b/.github/workflows/pypi_publish.yml @@ -20,7 +20,7 @@ jobs: - uses: actions/checkout@v4 - name: Build wheels - uses: pypa/cibuildwheel@v2.16.5 + uses: pypa/cibuildwheel@v2.21.3 env: MACOSX_DEPLOYMENT_TARGET: "10.14" From 90fd4ab35c7121bfe316dfe0d7c9da27e5a97be3 Mon Sep 17 00:00:00 2001 From: Jordan Woods <13803242+jorwoods@users.noreply.github.com> Date: Fri, 18 Oct 2024 15:43:45 -0500 Subject: [PATCH 2/3] ci: update ubuntu build version --- .github/workflows/pypi_publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pypi_publish.yml b/.github/workflows/pypi_publish.yml index aba4c783..8a3ab786 100644 --- a/.github/workflows/pypi_publish.yml +++ b/.github/workflows/pypi_publish.yml @@ -14,7 +14,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-22.04, windows-2022, macos-12, macos-14] + os: [ubuntu-24.04, windows-2022, macos-12, macos-14] steps: - uses: actions/checkout@v4 From 39e85695e6683507765b76c96e2dcb0a270cfa37 Mon Sep 17 00:00:00 2001 From: Jordan Woods <13803242+jorwoods@users.noreply.github.com> Date: Fri, 18 Oct 2024 15:47:42 -0500 Subject: [PATCH 3/3] ci: update versions in unit-test --- .github/workflows/unit-test.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/unit-test.yml b/.github/workflows/unit-test.yml index 690b0a80..fa12c9f6 100644 --- a/.github/workflows/unit-test.yml +++ b/.github/workflows/unit-test.yml @@ -41,7 +41,7 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-22.04, windows-2022, macos-12, macos-14] + os: [ubuntu-24.04, windows-2022, macos-12, macos-14] steps: - uses: actions/checkout@v4 @@ -50,7 +50,7 @@ jobs: - uses: actions/setup-python@v3 - name: Build wheels for ${{ matrix.os }} - uses: pypa/cibuildwheel@v2.16.5 + uses: pypa/cibuildwheel@v2.21.3 env: MACOSX_DEPLOYMENT_TARGET: "10.14" CMAKE_APPLE_SILICON_PROCESSOR: ${{ matrix.os == 'macos-14' && 'arm64' || '' }} @@ -61,7 +61,7 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-22.04, windows-2022, macos-12, macos-14] + os: [ubuntu-24.04, windows-2022, macos-12, macos-14] steps: - uses: actions/checkout@v4 @@ -70,7 +70,7 @@ jobs: - uses: actions/setup-python@v3 - name: Build wheels for ${{ matrix.os }} - uses: pypa/cibuildwheel@v2.16.5 + uses: pypa/cibuildwheel@v2.21.3 env: CIBW_TEST_REQUIRES: pytest pytest-xdist[psutil] pandas>=2.0.0 polars narwhals MACOSX_DEPLOYMENT_TARGET: "10.14"