Skip to content

Commit

Permalink
Fix numpy version in build deps
Browse files Browse the repository at this point in the history
  • Loading branch information
joshlk committed Oct 3, 2024
1 parent 7eb1e15 commit 53ad635
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
uses: pypa/[email protected] # You may need to update to get latest Python versions
env:
# Build
# NOTE: build dependcies are defined in pyproject.toml as CIBW_BUILD_FRONTEND=build
# NOTE: build dependcies are defined in pyproject.toml (including numpy version)
CIBW_BUILD_FRONTEND: "build"
CIBW_ARCHS: ${{ matrix.arch }}
CIBW_BUILD: "${{ matrix.python }}*"
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
[build-system]
requires = ["setuptools", "wheel", "cython", "numpy>=2.0.0<3"]
requires = ["setuptools", "wheel", "cython>=3.0.11", "numpy>=2.0,<3"]

0 comments on commit 53ad635

Please sign in to comment.