Skip to content

Commit 4697436

Browse files
PYTHON-5538 Fix lock file handling and bump pyright from 1.1.405 to 1.1.406 (#2575)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Steven Silvester <[email protected]>
1 parent 406bed0 commit 4697436

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ HERE="$( cd -- "$HERE" > /dev/null 2>&1 && pwd )"
77
ROOT=$(dirname "$(dirname $HERE)")
88
pushd $ROOT > /dev/null
99

10+
# Bail early if running on GitHub Actions.
11+
if [ -n "${GITHUB_ACTION:-}" ]; then
12+
exit 0
13+
fi
14+
1015
# Source the env files to pick up common variables.
1116
if [ -f $HERE/env.sh ]; then
1217
. $HERE/env.sh

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ mockupdb = [
6060
perf = ["simplejson>=3.17.0"]
6161
typing = [
6262
"mypy==1.18.2",
63-
"pyright==1.1.405",
63+
"pyright==1.1.406",
6464
"typing_extensions",
6565
"pip"
6666
]

uv.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)