-
-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Nick Papior <[email protected]>
- Loading branch information
Showing
1 changed file
with
7 additions
and
7 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 |
---|---|---|
|
@@ -35,7 +35,7 @@ jobs: | |
needs: sdist | ||
|
||
env: | ||
CIBW_BUILD_VERBOSITY: 3 | ||
CIBW_BUILD_VERBOSITY: 1 | ||
CIBW_BEFORE_BUILD: >- | ||
rm -rf {package}/build | ||
# Instead of running pytest directly, we use a bash script that will set up | ||
|
@@ -52,7 +52,7 @@ jobs: | |
# Perhaps in some later release | ||
CIBW_MANYLINUX_X86_64_IMAGE: manylinux2014 | ||
# Deployment of the SDK in MacOS | ||
MACOSX_DEPLOYMENT_TARGET: "10.12" | ||
MACOSX_DEPLOYMENT_TARGET: "${{ matrix.deployment_target }}" | ||
|
||
strategy: | ||
# Ensure that a wheel builder finishes even if another fails | ||
|
@@ -83,11 +83,11 @@ jobs: | |
|
||
- uses: actions/checkout@v4 | ||
|
||
#- name: Ensure fortran | ||
# uses: fortran-lang/setup-fortran@v1 | ||
# with: | ||
# compiler: gcc | ||
# version: 11 | ||
- name: Ensure fortran | ||
uses: fortran-lang/setup-fortran@v1 | ||
with: | ||
compiler: gcc | ||
version: 11 | ||
|
||
- name: Build wheels for CPython 3.12 | ||
uses: pypa/[email protected] | ||
|