Set maturin version in release.yaml (#10257)

See: https://github.com/astral-sh/uv/pull/2219
This commit is contained in:
Charlie Marsh 2024-03-06 13:50:40 -08:00 committed by GitHub
parent ea79f616bc
commit b9264a5a11
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -28,6 +28,7 @@ env:
CARGO_NET_RETRY: 10 CARGO_NET_RETRY: 10
CARGO_TERM_COLOR: always CARGO_TERM_COLOR: always
RUSTUP_MAX_RETRIES: 10 RUSTUP_MAX_RETRIES: 10
MATURIN_VERSION: "1.4.0"
jobs: jobs:
sdist: sdist:
@ -44,6 +45,7 @@ jobs:
- name: "Build sdist" - name: "Build sdist"
uses: PyO3/maturin-action@v1 uses: PyO3/maturin-action@v1
with: with:
maturin-version: ${{ env.MATURIN_VERSION }}
command: sdist command: sdist
args: --out dist args: --out dist
- name: "Test sdist" - name: "Test sdist"
@ -72,6 +74,7 @@ jobs:
- name: "Build wheels - x86_64" - name: "Build wheels - x86_64"
uses: PyO3/maturin-action@v1 uses: PyO3/maturin-action@v1
with: with:
maturin-version: ${{ env.MATURIN_VERSION }}
target: x86_64 target: x86_64
args: --release --locked --out dist args: --release --locked --out dist
- name: "Test wheel - x86_64" - name: "Test wheel - x86_64"
@ -112,6 +115,7 @@ jobs:
- name: "Build wheels - universal2" - name: "Build wheels - universal2"
uses: PyO3/maturin-action@v1 uses: PyO3/maturin-action@v1
with: with:
maturin-version: ${{ env.MATURIN_VERSION }}
args: --release --locked --target universal2-apple-darwin --out dist args: --release --locked --target universal2-apple-darwin --out dist
- name: "Test wheel - universal2" - name: "Test wheel - universal2"
run: | run: |
@ -160,6 +164,7 @@ jobs:
- name: "Build wheels" - name: "Build wheels"
uses: PyO3/maturin-action@v1 uses: PyO3/maturin-action@v1
with: with:
maturin-version: ${{ env.MATURIN_VERSION }}
target: ${{ matrix.platform.target }} target: ${{ matrix.platform.target }}
args: --release --locked --out dist args: --release --locked --out dist
- name: "Test wheel" - name: "Test wheel"
@ -208,6 +213,7 @@ jobs:
- name: "Build wheels" - name: "Build wheels"
uses: PyO3/maturin-action@v1 uses: PyO3/maturin-action@v1
with: with:
maturin-version: ${{ env.MATURIN_VERSION }}
target: ${{ matrix.target }} target: ${{ matrix.target }}
manylinux: auto manylinux: auto
args: --release --locked --out dist args: --release --locked --out dist
@ -270,6 +276,7 @@ jobs:
- name: "Build wheels" - name: "Build wheels"
uses: PyO3/maturin-action@v1 uses: PyO3/maturin-action@v1
with: with:
maturin-version: ${{ env.MATURIN_VERSION }}
target: ${{ matrix.platform.target }} target: ${{ matrix.platform.target }}
manylinux: auto manylinux: auto
docker-options: ${{ matrix.platform.maturin_docker_options }} docker-options: ${{ matrix.platform.maturin_docker_options }}
@ -326,6 +333,7 @@ jobs:
- name: "Build wheels" - name: "Build wheels"
uses: PyO3/maturin-action@v1 uses: PyO3/maturin-action@v1
with: with:
maturin-version: ${{ env.MATURIN_VERSION }}
target: ${{ matrix.target }} target: ${{ matrix.target }}
manylinux: musllinux_1_2 manylinux: musllinux_1_2
args: --release --locked --out dist args: --release --locked --out dist
@ -381,6 +389,7 @@ jobs:
- name: "Build wheels" - name: "Build wheels"
uses: PyO3/maturin-action@v1 uses: PyO3/maturin-action@v1
with: with:
maturin-version: ${{ env.MATURIN_VERSION }}
target: ${{ matrix.platform.target }} target: ${{ matrix.platform.target }}
manylinux: musllinux_1_2 manylinux: musllinux_1_2
args: --release --locked --out dist args: --release --locked --out dist