Skip to content

Commit

Permalink
remove -Z arg
Browse files Browse the repository at this point in the history
  • Loading branch information
tehcoderer committed Sep 18, 2023
1 parent 3f42718 commit 4512ea0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pip-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
mv Cargo-linux.toml Cargo.toml && mv Cargo-linux.lock Cargo.lock
for PYBIN in /opt/python/${{ matrix.python.abi }}/bin; do
"${PYBIN}/pip" install --upgrade pip wheel auditwheel setuptools-rust toml maturin
"${PYBIN}/maturin" pep517 build-wheel --compatibility manylinux_2_28 -Z build-std=std,panic_abort --target=x86_64-unknown-linux-gnu --out dist --find-interpreter
"${PYBIN}/maturin" pep517 build-wheel --compatibility manylinux_2_28 --target=x86_64-unknown-linux-gnu --out dist --find-interpreter
done
# Try to install and test importing the package
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pip.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
mv Cargo-linux.toml Cargo.toml && mv Cargo-linux.lock Cargo.lock
for PYBIN in /opt/python/${{ matrix.python.abi }}/bin; do
"${PYBIN}/pip" install --upgrade pip wheel auditwheel setuptools-rust toml maturin
"${PYBIN}/maturin" pep517 build-wheel --compatibility manylinux_2_28 -Z build-std=std,panic_abort --target=x86_64-unknown-linux-gnu --out dist --find-interpreter
"${PYBIN}/maturin" pep517 build-wheel --compatibility manylinux_2_28 --target=x86_64-unknown-linux-gnu --out dist --find-interpreter
done
# Try to install and test importing the package
Expand Down

0 comments on commit 4512ea0

Please sign in to comment.