Skip to content

Commit 75863e6

Browse files
build(deps): bump basedpyright from 1.36.2 to 1.37.2 in /dev-tools/scripts (#15639)
* build(deps): bump basedpyright in /dev-tools/scripts Bumps [basedpyright](https://github.com/detachhead/basedpyright) from 1.36.2 to 1.37.2. - [Release notes](https://github.com/detachhead/basedpyright/releases) - [Commits](DetachHead/basedpyright@v1.36.2...v1.37.2) --- updated-dependencies: - dependency-name: basedpyright dependency-version: 1.37.2 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * fix: remove deprecated python function usage --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Robert Muir <rmuir@apache.org>
1 parent 65e24c0 commit 75863e6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dev-tools/scripts/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ PyGithub==2.8.1
1313
# JIRA processing in githubPRs
1414
jira==3.10.5
1515
# type-checking in "make lint"
16-
basedpyright==1.36.2
16+
basedpyright==1.37.2
1717
# linting in "make lint"
1818
ruff==0.14.14

dev-tools/scripts/smokeTestRelease.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -431,7 +431,7 @@ def printFileContents(fileName: str):
431431
# even if we are wrong, we replace errors ... the ASCII chars
432432
# (which is what we mostly care about eg for the test seed) should
433433
# still survive:
434-
txt = codecs.open(fileName, "r", encoding=sys.getdefaultencoding(), errors="replace").read()
434+
txt = open(fileName, encoding=sys.getdefaultencoding(), errors="replace").read()
435435

436436
# Encode to our output encoding (likely also system's default
437437
# encoding):

0 commit comments

Comments
 (0)