File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 44# NOTES:
55# - This is designed to ONLY be called in our build docker image
66# - To compile only a specific version(s) pass in versions like: `./build_linux.sh "3.9 3.10"`
7- set -o pipefail
7+ set -ox pipefail
88
99U_WIDTH=16
1010PYTHON_VERSIONS=" ${1:- 3.9 3.10 3.11 3.12 3.13} "
@@ -39,7 +39,7 @@ for PYTHON_VERSION in ${PYTHON_VERSIONS}; do
3939 ${PYTHON} -m build --outdir ${BUILD_DIR} .
4040 # On Linux we should repair wheel(s) generated
4141arch=$( uname -p)
42- auditwheel repair /home/user/snowflake-connector-python/dist/3.9/snowflake_connector_python-4.1.1-cp39-cp39-linux_x86_64.whl
42+ auditwheel show /home/user/snowflake-connector-python/dist/3.9/snowflake_connector_python-4.1.1-cp39-cp39-linux_x86_64.whl
4343if [[ $arch == x86_64 ]]; then
4444 auditwheel repair --plat manylinux2014_x86_64 ${BUILD_DIR} /* .whl -w ${REPAIRED_DIR} \
4545 --exclude " libsf_mini_core.so" \
You can’t perform that action at this time.
0 commit comments