From 0e7fecc5c507f3b1cd9eaf64c95aafd0a4c52792 Mon Sep 17 00:00:00 2001 From: Lewis Sobotkiewicz Date: Wed, 21 Jan 2026 21:05:51 -0700 Subject: [PATCH] remove old wheel building stuff --- travis/build-wheels.sh | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100755 travis/build-wheels.sh diff --git a/travis/build-wheels.sh b/travis/build-wheels.sh deleted file mode 100755 index 5326968..0000000 --- a/travis/build-wheels.sh +++ /dev/null @@ -1,22 +0,0 @@ -#!/bin/bash -set -e -u -x - -function repair_wheel { - wheel="$1" - if ! auditwheel show "$wheel"; then - echo "Skipping non-platform wheel $wheel" - else - auditwheel repair "$wheel" --plat "$PLAT" -w /io/wheelhouse/ - fi -} - -# Compile wheels -for PYBIN in /opt/python/*/bin; do - "${PYBIN}/pip" wheel /io/ --no-deps -w wheelhouse/ -done - -# Bundle external shared libraries into the wheels -for whl in wheelhouse/*.whl; do - repair_wheel "$whl" -done -