Skip to content

Commit 23b9fff

Browse files
release(2.4.1): compile with numpy 2.0
1 parent 654e6ce commit 23b9fff

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/build_wheels.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,14 @@ jobs:
2828
uses: docker/setup-qemu-action@v1
2929

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

4141
- uses: actions/upload-artifact@v2

python/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def __repr__(self):
2828

2929
setuptools.setup(
3030
setup_requires=['pbr', 'cython'],
31-
python_requires=">=3.7,<4",
31+
python_requires=">=3.8,<4",
3232
ext_modules=[
3333
setuptools.Extension(
3434
'edt',

0 commit comments

Comments
 (0)