Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 11 additions & 10 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@ jobs:
with:
command: sdist
- name: Upload wheels
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: wheels
name: wheels-${{ matrix.runs-on }}
path: target/wheels

pack-linux:
Expand All @@ -77,9 +77,9 @@ jobs:
manylinux: auto
args: -i ${{ matrix.python-version }} --release
- name: Upload wheels
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: wheels
name: wheels-${{ matrix.runs-on }}
path: target/wheels

pack-windows:
Expand All @@ -104,9 +104,9 @@ jobs:
manylinux: auto
args: -i ${{ matrix.python-version }} --release
- name: Upload wheels
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: wheels
name: wheels-${{ matrix.runs-on }}
path: target/wheels

pack-macos:
Expand All @@ -129,9 +129,9 @@ jobs:
manylinux: auto
args: -i ${{ matrix.python-version }} --release --universal2
- name: Upload wheels
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: wheels
name: wheels-${{ matrix.runs-on }}
path: target/wheels

release:
Expand All @@ -140,9 +140,10 @@ jobs:
needs: [ pack-sdist, pack-linux, pack-windows, pack-macos ]
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: wheels
patterns: wheels-*
merge-multiple: true
- name: Publish to PyPI
uses: messense/maturin-action@v1
env:
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "python-daachorse"
version = "0.1.8"
version = "0.1.9"
edition = "2021"
authors = [
"Koichi Akabe <[email protected]>",
Expand Down