Skip to content

Commit

Permalink
Merge pull request #46 from LBL-EESA/fix-wheel-upload
Browse files Browse the repository at this point in the history
Fix wheel build and upload process
  • Loading branch information
taobrienlbl authored Sep 12, 2024
2 parents ec61aec + 52f3ab5 commit 17611d1
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 2.1.0
current_version = 2.1.1
commit = True
tag = True

Expand Down
13 changes: 8 additions & 5 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,11 @@ jobs:


build_arch_wheels:
name: ${{ matrix.python }} on ${{ matrix.arch }}
name: ${{ matrix.python }}-${{ matrix.arch }}
runs-on: ubuntu-24.04
strategy:
matrix:
python: [39, 310, 311, 312]
python: [39, 310, 311, 312, 313]
arch: [aarch64]
steps:

Expand Down Expand Up @@ -94,6 +94,7 @@ jobs:
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
name: arch-wheels-${{ matrix.python }}-${{ matrix.arch }}
path: wheelhouse/*.whl

build_wheels:
Expand All @@ -102,12 +103,12 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [windows-2019, macos-latest, ubuntu-latest]
os: [windows-latest, macos-latest, ubuntu-latest]
arch: [auto64]

include:
- os: macos-latest
arch: universal2
arch: arm64

steps:
- uses: actions/checkout@v4
Expand All @@ -132,6 +133,7 @@ jobs:
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
name: wheels-${{ matrix.os }}-${{ matrix.arch }}
path: wheelhouse/*.whl

upload_all:
Expand All @@ -142,7 +144,8 @@ jobs:
steps:
- uses: actions/[email protected]
with:
name: artifact
name: artifact-*
merge-multiple: true
path: dist

- name: List all files
Expand Down
2 changes: 1 addition & 1 deletion REVISION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.1.0
2.1.1

0 comments on commit 17611d1

Please sign in to comment.