Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update deployment/linux_wheels #1194

Merged
merged 1 commit into from
Sep 28, 2023
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
2 changes: 1 addition & 1 deletion deployment/linux_wheels/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ RUN yum update -y && yum install -y cmake curl gsl-devel \
# so we need to be careful in general.
&& rustup override set 1.62.1 \
# Pin cbindgen
&& cargo install cbindgen@0.24.3 \
&& cargo install --locked cbindgen@0.24.3 \
&& rustc --version \
&& cbindgen --version \
# The GSL version available from yum install is too old so we manually install.
Expand Down
2 changes: 1 addition & 1 deletion deployment/linux_wheels/build_and_audit.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
rm -rf dist/

for py in cp37-cp37m cp38-cp38 cp39-cp39 cp310-cp310
for py in cp38-cp38 cp39-cp39 cp310-cp310 cp311-cp311
do
rm -rf build
PYPATH=/opt/python/${py}
Expand Down
2 changes: 1 addition & 1 deletion deployment/linux_wheels/install_wheels_run_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ cd test_wheels
# Copy tests over b/c some of the test rely on paths
cp -r ../tests .
pwd
for py in cp37-cp37m cp38-cp38 cp39-cp39 cp310-cp310
for py in cp38-cp38 cp39-cp39 cp310-cp310 cp311-cp311
do
PYPATH=/opt/python/${py}
PYBIN=${PYPATH}/bin/python
Expand Down
Loading