Skip to content

Commit 0aa91d2

Browse files
Merge branch 'master' into detailed-error-msg
2 parents 712bf92 + 34ae214 commit 0aa91d2

File tree

7 files changed

+1125
-16
lines changed

7 files changed

+1125
-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: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,9 @@ env:
2323
SILK_ASSET_GROUP: mongodb-python-driver
2424
EVERGREEN_PROJECT: mongo-python-driver
2525
# Constant
26-
DRY_RUN: ${{ inputs.dry_run == 'true' }}
26+
# inputs will be empty on a scheduled run. so, we only set dry_run
27+
# to 'false' when the input is set to 'false'.
28+
DRY_RUN: ${{ ! contains(inputs.dry_run, 'false') }}
2729
FOLLOWING_VERSION: ${{ inputs.following_version || '' }}
2830
VERSION: ${{ inputs.version || '10.10.10.10' }}
2931

0 commit comments

Comments
 (0)