From cf01bc0fecadc9a93f57c1fe2d9a9fb0bdbae552 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 2 Oct 2025 00:42:08 +0000 Subject: [PATCH 1/2] build(deps): bump basedpyright in /dev-tools/scripts Bumps [basedpyright](https://github.com/detachhead/basedpyright) from 1.31.4 to 1.31.6. - [Release notes](https://github.com/detachhead/basedpyright/releases) - [Commits](https://github.com/detachhead/basedpyright/compare/v1.31.4...v1.31.6) --- updated-dependencies: - dependency-name: basedpyright dependency-version: 1.31.6 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- dev-tools/scripts/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-tools/scripts/requirements.txt b/dev-tools/scripts/requirements.txt index 5fc81a630817..93003575a049 100644 --- a/dev-tools/scripts/requirements.txt +++ b/dev-tools/scripts/requirements.txt @@ -13,6 +13,6 @@ PyGithub==2.8.1 # JIRA processing in githubPRs jira==3.8.0 # type-checking in "make lint" -basedpyright==1.31.4 +basedpyright==1.31.6 # linting in "make lint" ruff==0.13.2 From aa8d48b0f60689f1fdff47f715ce05063822868d Mon Sep 17 00:00:00 2001 From: Robert Muir Date: Wed, 1 Oct 2025 20:47:14 -0400 Subject: [PATCH 2/2] chore: remove disabled reportShadowedImports pyright check Remove commented-out reportShadowedImports setting from pyproject.toml. This check was intentionally disabled due to performance concerns, it now no longer exists. --- dev-tools/scripts/pyproject.toml | 3 --- 1 file changed, 3 deletions(-) diff --git a/dev-tools/scripts/pyproject.toml b/dev-tools/scripts/pyproject.toml index 4cef91a063be..c19b333c397c 100644 --- a/dev-tools/scripts/pyproject.toml +++ b/dev-tools/scripts/pyproject.toml @@ -22,9 +22,6 @@ reportUnnecessaryComparison = "hint" # Requires cleaning up some dead co reportUntypedNamedTuple = "hint" # Requires moving to different type of named tuple reportUnusedCallResult = "none" # Forces you to assign unused retvals to '_', very noisy. -# Intentionally disabled because it slows pyright by 2x -reportShadowedImports = "none" # Extremely slow check - [tool.ruff] target-version = "py312" line-length = 200