From a39e77b4599b57c5675063079efeb295b208ac75 Mon Sep 17 00:00:00 2001 From: William Silversmith Date: Sat, 22 Jun 2024 17:17:28 -0400 Subject: [PATCH] ci: rebuild for numpy 2.0 --- .github/workflows/build_wheel.yml | 6 +++--- ChangeLog | 1 + pyproject.toml | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build_wheel.yml b/.github/workflows/build_wheel.yml index 8545165..28bd774 100644 --- a/.github/workflows/build_wheel.yml +++ b/.github/workflows/build_wheel.yml @@ -6,7 +6,7 @@ on: tags: - '*' env: - CIBW_SKIP: cp27-* cp33-* cp34-* cp35-* cp36-* cp37-* pp* *-musllinux* + CIBW_SKIP: pp* *-musllinux* jobs: build_wheels: @@ -28,11 +28,11 @@ jobs: uses: docker/setup-qemu-action@v1 - name: Build wheels - uses: pypa/cibuildwheel@v2.16.5 + uses: pypa/cibuildwheel@v2.19.1 # to supply options, put them in 'env', like: env: CIBW_ARCHS_LINUX: ${{matrix.arch}} - CIBW_BEFORE_BUILD: pip install oldest-supported-numpy setuptools wheel cython + CIBW_BEFORE_BUILD: pip install numpy setuptools wheel cython - uses: actions/upload-artifact@v2 with: diff --git a/ChangeLog b/ChangeLog index 2cc90be..373ea69 100644 --- a/ChangeLog +++ b/ChangeLog @@ -4,6 +4,7 @@ CHANGES 3.3.0 ----- +* ci: bump cibuildwheel to 2.16.5 * feat: add \_\_contains\_\_ to CompressoArray 3.2.2 diff --git a/pyproject.toml b/pyproject.toml index 4b03dda..c8ec867 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,6 +2,6 @@ requires = [ "setuptools", "wheel", - "oldest-supported-numpy", + "numpy", "cython", ] \ No newline at end of file