Skip to content

Commit f8b6502

Browse files
sfc-gh-mkellersfc-gh-abhatnagar
authored andcommitted
SNOW-186696 change what directory mac wheels get built into
1 parent 115844d commit f8b6502

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

ci/build_darwin.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ export MACOSX_DEPLOYMENT_TARGET="10.13"
2222
for PYTHON_VERSION in ${PYTHON_VERSIONS}; do
2323
# Constants and setup
2424
PYTHON="python${PYTHON_VERSION}"
25-
BUILD_DIR="${DIST_DIR}/$PYTHON_VERSION/"
2625
VENV_DIR="${CONNECTOR_DIR}/venv-${PYTHON_VERSION}"
2726

2827
# Need to create a venv to update build dependencies
@@ -37,7 +36,7 @@ for PYTHON_VERSION in ${PYTHON_VERSIONS}; do
3736
# Update PEP-517 dependencies
3837
python -m pip install -U pip setuptools
3938
# Use new PEP-517 build
40-
python -m pip wheel -w ${BUILD_DIR} --no-deps .
39+
python -m pip wheel -w ${DIST_DIR} --no-deps .
4140
deactivate
4241
echo "[Info] Deleting venv at ${VENV_DIR}"
4342
rm -rf ${VENV_DIR}

0 commit comments

Comments
 (0)