-
Notifications
You must be signed in to change notification settings - Fork 11
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
2 changed files
with
6 additions
and
17 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 |
---|---|---|
|
@@ -61,24 +61,13 @@ jobs: | |
shell: bash -l {0} | ||
run: | | ||
python -m pip install --upgrade pip build wheel twine | ||
- name: Build Python wheel | ||
|
||
if: matrix.os != 'ubuntu-latest' | ||
shell: bash -l {0} | ||
env: | ||
NUMPY_VERSION: 2.0 | ||
run: | | ||
# Build against lowest required Numpy version | ||
python -m pip install numpy==${NUMPY_VERSION} | ||
python -m build -o wheelhouse --wheel . | ||
- name: Build manylinux Python wheel | ||
if: matrix.os == 'ubuntu-latest' | ||
uses: pypa/[email protected] | ||
env: | ||
CIBW_BUILD: ${{ matrix.manylinux-version-tag}}-manylinux* | ||
CIBW_BEFORE_BUILD: python -m pip install numpy==2.0 | ||
CIBW_ARCHS: x86_64 | ||
# env: | ||
# CIBW_BUILD: ${{ matrix.manylinux-version-tag}}-manylinux* | ||
# CIBW_BEFORE_BUILD: python -m pip install numpy==2.0 | ||
# CIBW_ARCHS: x86_64 | ||
with: | ||
output-dir: wheelhouse | ||
|
||
|
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