-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Exclude Windows * Install libomp for macOS * Build wheels only for 64-bit archs * Only build CPython 3.9 wheels * Build wheels for Python 3.6 - 3.10 * Fix python_requires
- Loading branch information
Showing
3 changed files
with
21 additions
and
2 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 |
---|---|---|
|
@@ -13,6 +13,7 @@ on: | |
env: | ||
CIBW_TEST_COMMAND: pytest {project}/tests | ||
CIBW_TEST_EXTRAS: test | ||
CIBW_ARCHS: auto64 | ||
|
||
|
||
jobs: | ||
|
@@ -41,13 +42,17 @@ jobs: | |
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: [ubuntu-latest, macos-latest, windows-latest] | ||
os: [ubuntu-latest, macos-latest] | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
submodules: true | ||
|
||
- name: Install libomp for macOS | ||
if: runner.os == 'macOS' | ||
run: brew install libomp | ||
|
||
- uses: pypa/[email protected] | ||
|
||
- name: Verify clean directory | ||
|
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
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