Skip to content

Commit

Permalink
old workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
joshlk committed Oct 3, 2024
1 parent f817895 commit c8d9a15
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,14 +51,14 @@ jobs:
platforms: arm64
- uses: actions/checkout@v3
- name: Build and test wheels
uses: pypa/cibuildwheel@v2.13.1 # You may need to update to get latest Python versions
uses: pypa/cibuildwheel@v2.21.2 # You may need to update to get latest Python versions
env:
CIBW_BEFORE_TEST: "pip install --upgrade pip && pip install -r requirements-dev.txt && pip list"
CIBW_TEST_COMMAND: "pytest {project}/tests"
CIBW_BEFORE_BUILD: "pip install --upgrade pip && pip install -r requirements-dev.txt && pip list"
CIBW_ARCHS: ${{ matrix.arch }}
CIBW_BUILD: "${{ matrix.python }}*"
CIBW_SKIP: "*musllinux*"
CIBW_BEFORE_TEST: "pip install --upgrade pip && pip install -r requirements-dev.txt && pip list"
CIBW_TEST_COMMAND: "pytest {project}/tests"
- uses: actions/upload-artifact@v3
with:
path: ./wheelhouse/*.whl

0 comments on commit c8d9a15

Please sign in to comment.