Skip to content

Commit

Permalink
release(2.4.1): compile with numpy 2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
william-silversmith committed Jun 17, 2024
1 parent 654e6ce commit 23b9fff
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,14 @@ jobs:
uses: docker/setup-qemu-action@v1

- name: Build wheels
uses: pypa/cibuildwheel@v2.16.5
uses: pypa/cibuildwheel@v2.19.1
with:
package-dir: ./python
output-dir: ./wheelhouse
# to supply options, put them in 'env', like:
env:
CIBW_ARCHS_LINUX: ${{matrix.arch}}
CIBW_BEFORE_BUILD: pip install oldest-supported-numpy setuptools wheel
CIBW_BEFORE_BUILD: pip install "numpy>=2" setuptools wheel
CIBW_ARCHS_MACOS: "x86_64 arm64"

- uses: actions/upload-artifact@v2
Expand Down
2 changes: 1 addition & 1 deletion python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def __repr__(self):

setuptools.setup(
setup_requires=['pbr', 'cython'],
python_requires=">=3.7,<4",
python_requires=">=3.8,<4",
ext_modules=[
setuptools.Extension(
'edt',
Expand Down

0 comments on commit 23b9fff

Please sign in to comment.