chore(deps): update python dependencies - #259
Open
renovate[bot] wants to merge 1 commit into
Open
renovate[bot] wants to merge 1 commit into
renovate[bot] wants to merge 1 commit into
Conversation
renovate
Bot
force-pushed
the
renovate/python-dependencies
branch
from
August 26, 2026 21:16
6381b2d to
1970d47
Compare
Collaborator
|
@G-Rath, This one LGTM, but with your other Ruff related PRs I'll leave this for you to click merge on. |
renovate
Bot
force-pushed
the
renovate/python-dependencies
branch
2 times, most recently
from
September 2, 2026 19:34
b85476a to
975cd0b
Compare
renovate
Bot
force-pushed
the
renovate/python-dependencies
branch
from
September 4, 2026 00:49
975cd0b to
b1ada5d
Compare
renovate
Bot
force-pushed
the
renovate/python-dependencies
branch
from
September 10, 2026 23:10
b1ada5d to
edde3f0
Compare
renovate
Bot
force-pushed
the
renovate/python-dependencies
branch
from
September 12, 2026 20:44
edde3f0 to
d5643c5
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
0.16.3→0.16.73.0.4→3.1.0Release Notes
astral-sh/ruff (ruff)
v0.16.7Compare Source
Released on 2026-09-10.
Preview features
ruff] Add rule for default values on method receivers (RUF077) (#26700)ruff] Recognizere.prefixmatch(RUF039,RUF055) (#28311)Bug fixes
flake8-implicit-str-concat] Mark fix unsafe when it creates a docstring (ISC003) (#27981)flake8-tidy-imports] Skip fixes for multi-member imports (TID254) (#26584)pylint] GateImportCycleErroron Python 3.15 (PLW0133) (#28310)Rule changes
D211andD203rule conflict diagnostic (#28444)sliceandfrozendictgenerics (#28477)__cached__for Python 3.15 (#28476)pyupgrade] Stop recommending removedtyping.no_type_check_decorator(UP035) (#28475)Performance
Documentation
line-lengthpath in--configexample (#28392)Other changes
Contributors
v0.16.6Compare Source
Released on 2026-09-03.
Preview features
pytest-fixture-autouseto therestrictioncategory (#28219)flake8-pytest-style] Add an autofix forPT020(#27993)flake8-tidy-imports] Prevent fix loop betweenTID254andTID255(#28262)isort] Exclude pragma comments from line length calculation (I001) (#27313)Bug fixes
flake8-async,pylint] Recognizebuiltins.open(ASYNC230,PLW1514) (#28021)flake8-bugbear] Fix panic onmatchsubjects (B031) (#27781)flake8-datetimez] Rejecttzinfo=Nonefordatetimebounds (DTZ901) (#28022)flake8-pytest-style] Avoid duplicatePT017diagnostics (#27918)ruff] Removelint.externalhint for Ruff-specific suppressions (RUF102) (#27923)Rule changes
flake8-use-pathlib] Add display-only fix foros.listdir(PTH208) (#28027)Documentation
lint.per-file-ignores(#28106)flake8-async] Document thread offloading (ASYNC240) (#28008)pyupgrade] Clarify defaultencodingargument handling (UP012) (#27315)Other changes
Contributors
v0.16.5Compare Source
Released on 2026-08-27.
Preview features
Bug fixes
flake8-async] Detect blocking generic HTTP requests (ASYNC210) (#28024)flake8-datetimez] Allow timezone-safestrptimechains (DTZ007) (#28023)flake8-simplify] Respect side effects inlambdadefaults (SIM401) (#28000)Server
ClientOptionsdoc comment (#27978)Documentation
Contributors
v0.16.4Compare Source
Released on 2026-08-20.
Preview features
flake8-use-pathlib] Add autofix forPTH116(#26460)refurb] Restrictdelete-full-sliceto lists (FURB131) (#27711)refurb] SkipFURB101andFURB103when theopenargument is a file descriptor (#27643)Bug fixes
InvalidInstructionon Windows CPUs that do not supportPOPCNT(#27803)pyflakes] Emit semantic syntax errors in string type definitions asF722(#27835)pylint] Allowos._exitimports inimport-private-name(PLC2701) (#27738)Rule changes
ruff] Addctypes.LittleEndianStructureand related types to existing exception (RUF012) (#27753)nonlocal(#27628)Server
Documentation
Other changes
Contributors
python-semver/python-semver (semver)
v3.1.0Compare Source
=============
:Released: 2026-09-12
:Maintainer: Tom Schraitle
Bug Fixes
:pr:
478:Version.parse()andVersion.is_valid()now reject non-ASCII digits andtrailing newlines, in accordance with the SemVer grammar. Optional minor and
patch parsing applies the same character restrictions.
:pr:
479: Comparing a :class:~semver.Versionwith adict,tuple, orlistthat cannot construct a valid version (for example, an empty collection, wrong number of parts, non-numeric parts, or unknown keys) no longer raises internal errors fromVersion.__init__. The comparison operators now return :py:const:NotImplementedfor such operands, following the general rule for invalid comparison operand types: equality evaluates toFalseand ordering raises Python's standard :py:exc:TypeError(for example,'>' not supported between instances of 'Version' and 'dict').:pr:
480: (:meth:~semver.version.Version.bump_build) will now add.0to an existing build when the last segment of the current build metadata, split by dots (.), is not numeric. This is to ensure the bumped version contains a raised build instead of silently returning an unchanged version. For example,1.2.3+alphais bumped to1.2.3+alpha.0. This mirrors the corresponding fix for the prerelease part (:gh:460). Related to :gh:466.:gh:
460: :meth:~semver.version.Version.bump_prereleasewill now add.0to anexisting prerelease when the last segment of the current prerelease, split by
dots (
.), is not numeric. This is to ensure the new prerelease is consideredhigher than the previous one.
:meth:
~semver.version.Version.bump_prereleasenow also support an argumentbump_when_emptywhich will bump the patch version if there is no existingprerelease, to ensure the resulting version is considered a higher version than
the previous one.
Features
476: Added optional[native]extra to accelerate parsing on CPython via thefast-semver-rs-backendpackage. The pure-Python parser remains the default;the native backend is opt-in and only available on CPython.
Internal Changes
: Update GitHub Actions for astral-sh/setup-uv (version 0.10.1), github/codeql-action (version 4)
Trivial Changes
463: Remove double code in :meth:Version.bump_build: Improve test coverage to 100% by ignoring the optional Rust backend fallback.
: Improve test suite for comparisons and fix test coverage.
: Suppress deprecation warnings in test suite.
Configuration
📅 Schedule: (UTC)
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.