-
Notifications
You must be signed in to change notification settings - Fork 95
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
wheels aren't working, can't fix right now
- Loading branch information
Showing
1 changed file
with
55 additions
and
54 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 |
---|---|---|
|
@@ -30,62 +30,63 @@ jobs: | |
path: dist/*.tar.gz | ||
|
||
# adapted from | ||
# https://github.com/biopython/biopython/blob/master/.github/workflows/ci.yml | ||
build_wheels: | ||
name: Build wheels (py ${{ matrix.pyver }}) ${{ matrix.os }} | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest, macos-latest] | ||
pyver: ["37", "38", "39", "310", "311", "312"] | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: 3.9 | ||
|
||
- name: Install Python packaging tools | ||
run: | | ||
export RELEASE_VERSION=${{ github.ref_name }} | ||
pip install numpy cython | ||
python -m pip install --upgrade pip setuptools wheel | ||
# https://github.com/pypa/cibuildwheel/blob/main/examples/github-deploy.yml | ||
- name: Build wheels (py ${{ matrix.pyver }}) Linux | ||
if: matrix.os == 'ubuntu-latest' | ||
env: | ||
CIBW_ARCHS_LINUX: "x86_64 aarch64" | ||
CIBW_SKIP: "*-musllinux*" | ||
CIBW_BUILD: "cp${{ matrix.pyver }}-*" | ||
|
||
uses: pypa/[email protected] | ||
|
||
- name: Build wheels (py ${{ matrix.pyver }}) MacOS | ||
if: matrix.os == 'macos-latest' | ||
env: | ||
CIBW_ARCHS_MACOS: "x86_64 arm64 universal2" | ||
CIBW_BUILD: "cp${{ matrix.pyver }}-*" | ||
|
||
uses: pypa/[email protected] | ||
|
||
- name: Build wheels (py ${{ matrix.pyver }}) Windows | ||
if: matrix.os == 'windows-latest' | ||
env: | ||
CIBW_ARCHS_WINDOWS: "amd64 win32" | ||
CIBW_BUILD: "cp${{ matrix.pyver }}-*" | ||
|
||
uses: pypa/[email protected] | ||
|
||
- name: Upload wheels | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: dist-artifacts | ||
path: ./wheelhouse/*.whl | ||
# wheels are not working, have to delay a fix | ||
#build_wheels: | ||
# name: Build wheels (py ${{ matrix.pyver }}) ${{ matrix.os }} | ||
# runs-on: ${{ matrix.os }} | ||
# strategy: | ||
# matrix: | ||
# os: [ubuntu-latest, macos-latest] | ||
# pyver: ["37", "38", "39", "310", "311", "312"] | ||
|
||
# steps: | ||
# - uses: actions/checkout@v4 | ||
# - name: Set up Python | ||
# uses: actions/setup-python@v5 | ||
# with: | ||
# python-version: 3.9 | ||
|
||
# - name: Install Python packaging tools | ||
# run: | | ||
# export RELEASE_VERSION=${{ github.ref_name }} | ||
# pip install numpy cython | ||
# python -m pip install --upgrade pip setuptools wheel | ||
|
||
# # https://github.com/pypa/cibuildwheel/blob/main/examples/github-deploy.yml | ||
# - name: Build wheels (py ${{ matrix.pyver }}) Linux | ||
# if: matrix.os == 'ubuntu-latest' | ||
# env: | ||
# CIBW_ARCHS_LINUX: "x86_64 aarch64" | ||
# CIBW_SKIP: "*-musllinux*" | ||
# CIBW_BUILD: "cp${{ matrix.pyver }}-*" | ||
|
||
# uses: pypa/[email protected] | ||
# | ||
# - name: Build wheels (py ${{ matrix.pyver }}) MacOS | ||
# if: matrix.os == 'macos-latest' | ||
# env: | ||
# CIBW_ARCHS_MACOS: "x86_64 arm64 universal2" | ||
# CIBW_BUILD: "cp${{ matrix.pyver }}-*" | ||
|
||
# uses: pypa/[email protected] | ||
|
||
# - name: Build wheels (py ${{ matrix.pyver }}) Windows | ||
# if: matrix.os == 'windows-latest' | ||
# env: | ||
# CIBW_ARCHS_WINDOWS: "amd64 win32" | ||
# CIBW_BUILD: "cp${{ matrix.pyver }}-*" | ||
|
||
# uses: pypa/[email protected] | ||
|
||
# - name: Upload wheels | ||
# uses: actions/upload-artifact@v4 | ||
# with: | ||
# name: dist-artifacts | ||
# path: ./wheelhouse/*.whl | ||
|
||
release: | ||
needs: [build_wheels, build_sdist] | ||
#needs: [build_wheels, build_sdist] | ||
needs: build_sdist | ||
runs-on: ubuntu-latest | ||
# this is not ideal as it doesn't limit to what type of tag | ||
# but it at least seems to work | ||
|