Skip to content

Merging *-Next to Main and updating to 3.9 #40338

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Apr 16, 2025
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
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 | 2025-04-14 |
Pylint Guidelines Checker | 0.4.1 | 0.5.1 | 2025-04-14 |
MyPy | 1.13.0 | 1.14.1 | 2025-04-14 |
Pyright | 1.1.389 | 1.1.391 | 2025-04-14 |
Pylint | 3.2.7 | 3.2.7 | 2025-07-21 |
Pylint Guidelines Checker | 0.5.3 | 0.5.3 | 2025-07-21 |
MyPy | 1.14.1 | 1.14.1 | 2025-07-21 |
Pyright | 1.1.391 | 1.1.391 | 2025-07-21 |
Sphinx | 8.2.0 | N/A | N/A |
Black | 24.4.0 | N/A | N/A |
2 changes: 1 addition & 1 deletion eng/pylintrc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[MASTER]
py-version=3.8
py-version=3.9
ignore-patterns=test_*,conftest,setup
reports=no

Expand Down
8 changes: 4 additions & 4 deletions eng/tox/tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ deps =
-rdev_requirements.txt
commands =
python -m pip install pylint=={[testenv:pylint]pylint_version}
python -m pip install azure-pylint-guidelines-checker==0.5.2 --index-url="https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-python/pypi/simple/"
python -m pip install azure-pylint-guidelines-checker==0.5.3 --index-url="https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-python/pypi/simple/"
python {repository_root}/eng/tox/create_package_and_install.py \
-d {envtmpdir}/dist \
-p {tox_root} \
Expand All @@ -117,7 +117,7 @@ deps =
PyGitHub>=1.59.0
commands =
python -m pip install pylint=={[testenv:next-pylint]pylint_version}
python -m pip install azure-pylint-guidelines-checker==0.5.2 --index-url="https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-python/pypi/simple/"
python -m pip install azure-pylint-guidelines-checker==0.5.3 --index-url="https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-python/pypi/simple/"
python {repository_root}/eng/tox/create_package_and_install.py \
-d {envtmpdir}/dist \
-p {tox_root} \
Expand Down Expand Up @@ -146,7 +146,7 @@ commands =

[testenv:mypy]
description=Typechecks a package with mypy (version {[testenv:mypy]mypy_version})
mypy_version=1.13.0
mypy_version=1.14.1
skipsdist = true
skip_install = true
usedevelop = true
Expand Down Expand Up @@ -198,7 +198,7 @@ commands =

[testenv:pyright]
description=Typechecks a package with pyright (version {[testenv:pyright]pyright_version})
pyright_version=1.1.389
pyright_version=1.1.391
skipsdist = true
skip_install = true
usedevelop = true
Expand Down
4 changes: 2 additions & 2 deletions pylintrc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[MASTER]
py-version=3.8
py-version=3.9
ignore-patterns=test_*,conftest,setup
reports=no

Expand All @@ -21,7 +21,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,docstring-type-do-not-use-class,consider-using-max-builtin,too-many-lines,possibly-used-before-assignment,do-not-log-raised-errors,do-not-use-legacy-typing,do-not-import-asyncio,invalid-use-of-overload,do-not-hardcode-connection-verify,do-not-log-exceptions,unapproved-client-method-name-prefix,do-not-hardcode-dedent,networking-import-outside-azure-core-transport
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,docstring-type-do-not-use-class,consider-using-max-builtin,too-many-lines,possibly-used-before-assignment,do-not-log-raised-errors,do-not-log-exceptions,networking-import-outside-azure-core-transport,do-not-hardcode-dedent,arguments-differ,signature-differs

[FORMAT]
max-line-length=120
Expand Down