Skip to content

Commit eb5c300

Browse files
fix[ci]: pin maturin due to fix upstream error (#5868)
the PR that was incorrect: PyO3/maturin#2901 However I think we should pin maturin going forward? --------- Signed-off-by: Joe Isaacs <[email protected]>
1 parent 49b1634 commit eb5c300

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -145,9 +145,8 @@ jobs:
145145
rm -rf ../target/wheels/
146146
147147
uv venv
148-
uv pip install "maturin[zig]"
149-
uv tool run maturin build --interpreter python3.11 --zig
150-
uv tool run maturin build --interpreter python3.11 --zig --sdist
148+
uv tool run [email protected] build --interpreter python3.11 --zig
149+
uv tool run [email protected] build --interpreter python3.11 --zig --sdist
151150
152151
file_count=$(ls -1 ../target/wheels/ | wc -l)
153152

.github/workflows/package.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ jobs:
5656
uses: PyO3/maturin-action@v1
5757
with:
5858
command: build
59+
maturin-version: v1.10
5960
target: ${{ matrix.target.target }}
6061
args: >
6162
${{ (matrix.target.os == 'ubuntu' && '--zig') || '' }}

0 commit comments

Comments
 (0)