Skip to content
Draft
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
8 changes: 4 additions & 4 deletions doc/analyze_check_versions.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +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 | 3.2.7 | 3.2.7 | 2026-01-12 |
Pylint Guidelines Checker | 0.5.6 | 0.5.7 | 2026-01-12 |
MyPy | 1.14.1 | 1.18.1 | 2026-01-12 |
Pyright | 1.1.391 | 1.1.405 | 2026-01-12 |
Pylint | 3.2.7 | 4.0.4 | 2026-04-13 |
Pylint Guidelines Checker | 0.5.7 | 0.5.7 | 2026-04-13 |
MyPy | 1.18.1 | 1.19.1 | 2026-04-13 |
Pyright | 1.1.405 | 1.1.407 | 2026-04-13 |
Sphinx | 8.2.0 | N/A | N/A |
Black | 24.4.0 | N/A | N/A |
4 changes: 3 additions & 1 deletion eng/pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ load-plugins=pylint_guidelines_checker
# Let's black deal with bad-continuation

# Added disables from super-with-arguments
disable=useless-object-inheritance,missing-docstring,locally-disabled,fixme,cyclic-import,too-many-arguments,invalid-name,duplicate-code,too-few-public-methods,consider-using-f-string,super-with-arguments,redefined-builtin,import-outside-toplevel,client-suffix-needed,unnecessary-dunder-call,unnecessary-ellipsis,client-paging-methods-use-list,consider-using-max-builtin,too-many-lines,possibly-used-before-assignment,do-not-hardcode-dedent,arguments-differ,signature-differs,deprecated-class,too-many-positional-arguments
disable=useless-object-inheritance,missing-docstring,locally-disabled,fixme,cyclic-import,too-many-arguments,invalid-name,duplicate-code,too-few-public-methods,consider-using-f-string,super-with-arguments,redefined-builtin,import-outside-toplevel,client-suffix-needed,unnecessary-dunder-call,unnecessary-ellipsis,client-paging-methods-use-list,consider-using-max-builtin,too-many-lines,possibly-used-before-assignment,do-not-hardcode-dedent,arguments-differ,signature-differs,deprecated-class,too-many-positional-arguments,use-maxsplit-arg


[FORMAT]
Expand All @@ -39,6 +39,8 @@ max-branches=20
max-attributes=10
# Maximum number of ancestors
max-parents=15
# Maximum number of positional arugments for function / method
max-positional-arguments=5

[SIMILARITIES]
min-similarity-lines=10
Expand Down
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 @@ -15,7 +15,7 @@
from ci_tools.logging import logger

PYTHON_VERSION = "3.10"
MYPY_VERSION = "1.14.1"
MYPY_VERSION = "1.18.1"
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 @@ -58,7 +58,7 @@ def run(self, args: argparse.Namespace) -> int:
install_into_venv(
executable,
[
"azure-pylint-guidelines-checker==0.5.6",
"azure-pylint-guidelines-checker==0.5.7",
"--index-url=https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-python/pypi/simple/",
],
package_dir,
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.391"
PYRIGHT_VERSION = "1.1.405"
REPO_ROOT = discover_repo_root()


Expand Down
Loading