We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 115844d commit f8b6502Copy full SHA for f8b6502
ci/build_darwin.sh
@@ -22,7 +22,6 @@ export MACOSX_DEPLOYMENT_TARGET="10.13"
22
for PYTHON_VERSION in ${PYTHON_VERSIONS}; do
23
# Constants and setup
24
PYTHON="python${PYTHON_VERSION}"
25
- BUILD_DIR="${DIST_DIR}/$PYTHON_VERSION/"
26
VENV_DIR="${CONNECTOR_DIR}/venv-${PYTHON_VERSION}"
27
28
# Need to create a venv to update build dependencies
@@ -37,7 +36,7 @@ for PYTHON_VERSION in ${PYTHON_VERSIONS}; do
37
36
# Update PEP-517 dependencies
38
python -m pip install -U pip setuptools
39
# Use new PEP-517 build
40
- python -m pip wheel -w ${BUILD_DIR} --no-deps .
+ python -m pip wheel -w ${DIST_DIR} --no-deps .
41
deactivate
42
echo "[Info] Deleting venv at ${VENV_DIR}"
43
rm -rf ${VENV_DIR}
0 commit comments