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 370fd46 commit f817895
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,11 +51,11 @@ jobs:
platforms: arm64
- uses: actions/checkout@v3
- name: Build and test wheels
uses: pypa/[email protected]
uses: pypa/[email protected] # You may need to update to get latest Python versions
env:
CIBW_BEFORE_TEST: "pip install -r requirements-dev.txt"
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"
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*"
Expand Down

0 comments on commit f817895

Please sign in to comment.