-
Notifications
You must be signed in to change notification settings - Fork 84
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Point the Python wheel building workflows to the new package directory in `python/finufft` instead of the repository root.
- Loading branch information
Showing
2 changed files
with
7 additions
and
1 deletion.
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
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 |
---|---|---|
|
@@ -15,6 +15,8 @@ jobs: | |
|
||
- name: Build wheels | ||
uses: pypa/[email protected] | ||
with: | ||
package-dir: 'python/finufft' | ||
env: | ||
CIBW_BEFORE_ALL_MACOS: brew install gcc@14 fftw | ||
# Need following versions of GCC for compatibility with fftw | ||
|
@@ -39,6 +41,8 @@ jobs: | |
|
||
- name: Build wheels | ||
uses: pypa/[email protected] | ||
with: | ||
package-dir: 'python/finufft' | ||
env: | ||
# Make sure to install the ARM64-specific versions of FFTW and GCC. | ||
# Perhaps this is done automatically on the macos-14 image. We should | ||
|
@@ -77,6 +81,8 @@ jobs: | |
- name: Build wheels | ||
uses: pypa/[email protected] | ||
with: | ||
package-dir: 'python/finufft' | ||
env: | ||
# This is required to force cmake to avoid using MSVC (the default). | ||
# By setting the generator to Ninja, cmake will pick gcc (mingw64) | ||
|