Skip to content
4 changes: 2 additions & 2 deletions .github/workflows/test_and_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ jobs:
path: dist/
build_wheels:
name: Build wheels on Ubuntu
needs: test_repo
needs: [test_repo]
runs-on: ubuntu-20.04 # Can be also run for macOS
steps:
- uses: actions/checkout@v4
Expand All @@ -129,7 +129,7 @@ jobs:
if: github.event_name != 'release'
uses: pypa/cibuildwheel@v2.19.2 # The main configuration is in pyproject.toml
env:
CIBW_BUILD: "cp312-manylinux*" # Build only python 3.12 wheels for testing
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