Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions doc/analyze_check_versions.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,9 @@ This table is to clarify the currently pinned version of tools we run in CI and

| Tool | Current Version | Next Version | Next Version Merge Date |
|------|-----------------|--------------|-------------------------|
Pylint | 4.0.4 | 4.0.4 | 2026-07-13 |
Pylint | 4.0.4 | 4.0.6 | 2026-10-05 |
Pylint Guidelines Checker | 0.5.7 | 0.5.7 | 2026-07-13 |
MyPy | 1.19.1 | 1.19.1 | 2026-07-13 |
Pyright | 1.1.407 | 1.1.407 | 2026-07-13 |
MyPy | 1.19.1 | 2.1.0 | 2026-10-05 |
Pyright | 1.1.407 | 1.1.411 | 2026-10-05 |
Sphinx | 8.2.0 | N/A | N/A |
Comment thread
JennyPng marked this conversation as resolved.
Black | 24.4.0 | N/A | N/A |
Ruff | 0.15.11 | N/A | N/A |
2 changes: 1 addition & 1 deletion eng/tools/azure-sdk-tools/azpysdk/mypy.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

PYTHON_VERSION = "3.10"
MYPY_VERSION = "1.19.1"
NEXT_MYPY_VERSION = "1.19.1"
NEXT_MYPY_VERSION = "2.1.0"
ADDITIONAL_LOCKED_DEPENDENCIES = [
"types-chardet==5.0.4.6",
"types-requests==2.31.0.6",
Expand Down
2 changes: 1 addition & 1 deletion eng/tools/azure-sdk-tools/azpysdk/pylint.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

REPO_ROOT = discover_repo_root()
PYLINT_VERSION = "4.0.4"
NEXT_PYLINT_VERSION = "4.0.4"
NEXT_PYLINT_VERSION = "4.0.6"


class pylint(Check):
Expand Down
2 changes: 1 addition & 1 deletion eng/tools/azure-sdk-tools/azpysdk/pyright.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
from ci_tools.logging import logger

PYRIGHT_VERSION = "1.1.407"
NEXT_PYRIGHT_VERSION = "1.1.407"
NEXT_PYRIGHT_VERSION = "1.1.411"
REPO_ROOT = discover_repo_root()


Expand Down
Loading