Skip to content

Commit

Permalink
Restrict wheel creation to _x86_64 architecture for non-release / pre…
Browse files Browse the repository at this point in the history
…release status (#47)
  • Loading branch information
StephenOman authored Feb 9, 2025
1 parent 731f2aa commit 047a0b8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/test_and_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,9 @@ jobs:
if: github.event_name != 'release'
uses: pypa/[email protected] # The main configuration is in pyproject.toml
env:
CIBW_BUILD: "cp312-manylinux*" # Build only python 3.12 wheels for testing
# Build of cp312-manylinux_aarch64 wheels failing, so restrict
# to only building _x86_64 wheel
CIBW_BUILD: "cp312-manylinux_x86_64" # Build only python 3.12 wheels for testing
# Increase verbosity to see what's going on in the build in case of failure
CIBW_BUILD_VERBOSITY: 3
CIBW_REPAIR_WHEEL_COMMAND_LINUX: >
Expand Down

0 comments on commit 047a0b8

Please sign in to comment.