Skip to content

Commit

Permalink
cibuildwheel pybind error
Browse files Browse the repository at this point in the history
  • Loading branch information
ahgamut committed Aug 26, 2024
1 parent a601ef8 commit c9dda18
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ jobs:
CIBW_PRERELEASE_PYTHONS: False
CIBW_SKIP: "cp36* cp313-* pp*"
CIBW_BUILD_FRONTEND: "pip"
CIBW_BEFORE_BUILD: "python -m pip install numpy>=1.14 pybind11>=2.2 --prefer-binary"
CIBW_BEFORE_BUILD: python -m pip install 'numpy>=1.14' 'pybind11>=2.2'
CIBW_TEST_REQUIRES: "pytest"
CIBW_TEST_COMMAND: "pytest -v {project}"
CIBW_ARCHS_LINUX: "x86_64 aarch64"
CIBW_ARCHS_MACOS: "x86_64 ARM64"
CIBW_ARCHS_MACOS: "x86_64 arm64"
CIBW_ARCHS_WINDOWS: "AMD64"

- name: upload wheel artifacts temporarily
Expand Down

0 comments on commit c9dda18

Please sign in to comment.