Skip to content

Commit

Permalink
intermediate
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkusRainerSchmidt committed May 8, 2024
1 parent 2b4ea2b commit 81252ad
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-11]
python-version: ["cp38-*", "cp39-*", "cp310-*", "cp311-*"]
python-version: ["cp38", "cp39", "cp310", "cp311"]

steps:
- uses: actions/checkout@v4
Expand All @@ -31,7 +31,7 @@ jobs:
- name: Build wheels
uses: pypa/cibuildwheel@v2.17.0
env:
CIBW_BUILD: ${{ matrix.python-version }}
CIBW_BUILD: ${{ matrix.python-version }}-*
CIBW_BEFORE_BUILD: 'pip install pybind11 wheel && pip install git+https://github.com/Siegel-Lab/libSps.git'
MACOSX_DEPLOYMENT_TARGET : '10.13'
CIBW_ARCHS_MACOS: "x86_64 universal2 arm64"
Expand All @@ -48,8 +48,8 @@ jobs:
needs: [build_wheels]
steps:
- name: Merge Artifacts
uses: actions/upload-artifact/merge@v4
with:
uses: actions/upload-artifact/merge@v4
with:
name: dist
pattern: dist-*

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-11]
python-version: ["cp38-*", "cp39-*", "cp310-*", "cp311-*"]
python-version: ["cp38", "cp39", "cp310", "cp311"]

steps:
- uses: actions/checkout@v4
Expand All @@ -23,7 +23,7 @@ jobs:
- name: Build wheels
uses: pypa/cibuildwheel@v2.17.0
env:
CIBW_BUILD: ${{ matrix.python-version }}
CIBW_BUILD: ${{ matrix.python-version }}-*
CIBW_BEFORE_BUILD: 'pip install pybind11 wheel && pip install git+https://github.com/Siegel-Lab/libSps.git'
MACOSX_DEPLOYMENT_TARGET : '10.13'
CIBW_ARCHS_MACOS: "x86_64 universal2 arm64"
Expand Down

0 comments on commit 81252ad

Please sign in to comment.