Skip to content

Commit e256f4c

Browse files
authored
Merge branch 'master' into PYTHON-5075
2 parents c36586b + 1784e2c commit e256f4c

File tree

7 files changed

+1123
-16
lines changed

7 files changed

+1123
-16
lines changed

.evergreen/scripts/setup-dev-env.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ if [ ! -d $BIN_DIR ]; then
3030
fi
3131
export UV_PYTHON=${PYTHON_BINARY}
3232
echo "export UV_PYTHON=$UV_PYTHON" >> $HERE/env.sh
33+
echo "Using python $UV_PYTHON"
3334
fi
34-
echo "Using python $UV_PYTHON"
3535
uv sync --frozen
3636
uv run --frozen --with pip pip install -e .
3737
echo "Setting up python environment... done."

.github/workflows/release-python.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ env:
2323
SILK_ASSET_GROUP: mongodb-python-driver
2424
EVERGREEN_PROJECT: mongo-python-driver
2525
# Constant
26-
DRY_RUN: ${{ inputs.dry_run == 'true' }}
26+
DRY_RUN: ${{ github.event_name == 'workflow_dispatch' && inputs.dry_run || 'true' }}
2727
FOLLOWING_VERSION: ${{ inputs.following_version || '' }}
2828
VERSION: ${{ inputs.version || '10.10.10.10' }}
2929

0 commit comments

Comments
 (0)