-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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*" | ||
|