Skip to content

Commit

Permalink
Upgrade maturin to 0.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
messense committed Jul 11, 2022
1 parent bfb5e28 commit 3adc7b8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/Release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
- name: Build wheels - universal2
uses: messense/maturin-action@v1
with:
args: --release --universal2 --out dist --strip --no-sdist
args: --release --universal2 --out dist --strip
- name: Install built wheel - universal2
run: |
pip install aliyundrive-webdav --no-index --find-links dist --force-reinstall
Expand Down Expand Up @@ -106,13 +106,13 @@ jobs:
uses: messense/maturin-action@v1
with:
target: ${{ matrix.platform.target }}
args: --release --out dist --no-sdist --strip
args: --release --out dist --strip
- name: Build wheels
if: matrix.platform.arch == 'arm64'
uses: messense/maturin-action@v1
with:
target: ${{ matrix.platform.target }}
args: --release --out dist --no-sdist --strip --cargo-extra-args="--no-default-features" --cargo-extra-args="--features atomic64,native-tls"
args: --release --out dist --strip --no-default-features --features atomic64,native-tls
- name: Install built wheel
if: matrix.platform.arch != 'arm64'
run: |
Expand Down Expand Up @@ -176,15 +176,15 @@ jobs:
target: ${{ matrix.platform.target }}
manylinux: auto
container: off
args: --no-sdist --release -o dist --strip
args: --release -o dist --strip
- name: Build wheels - musllinux
if: matrix.platform.wheel
uses: messense/maturin-action@v1
with:
target: ${{ matrix.platform.target }}
manylinux: musllinux_1_1
container: off
args: --release --out dist --no-sdist --strip
args: --release --out dist --strip
- name: Install cargo packages
if: matrix.platform.deb
run: |
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build-system]
requires = ["maturin>=0.12,<0.13"]
requires = ["maturin>=0.13,<0.14"]
build-backend = "maturin"

[tool.maturin]
Expand Down

0 comments on commit 3adc7b8

Please sign in to comment.