fix(deps): update python dependencies (non-major) - #47
Open
renovate[bot] wants to merge 1 commit into
Open
Conversation
renovate
Bot
force-pushed
the
renovate/python-dependencies-(non-major)
branch
6 times, most recently
from
July 30, 2026 23:04
520e9cf to
fd5ec3d
Compare
renovate
Bot
force-pushed
the
renovate/python-dependencies-(non-major)
branch
5 times, most recently
from
August 7, 2026 13:57
85cd3b5 to
4e3cb63
Compare
renovate
Bot
force-pushed
the
renovate/python-dependencies-(non-major)
branch
4 times, most recently
from
August 15, 2026 01:45
2b13d25 to
fad0cb5
Compare
renovate
Bot
force-pushed
the
renovate/python-dependencies-(non-major)
branch
5 times, most recently
from
August 22, 2026 22:37
3d1cef7 to
6d602c4
Compare
renovate
Bot
force-pushed
the
renovate/python-dependencies-(non-major)
branch
6 times, most recently
from
August 31, 2026 04:29
8014cef to
acf0791
Compare
renovate
Bot
force-pushed
the
renovate/python-dependencies-(non-major)
branch
from
September 3, 2026 11:58
acf0791 to
6bdae12
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:
==4.22.0→==4.23.3==1.4.1→==1.4.3==1.28.1→==1.29.1==4.6.0→==4.6.2==3.14.6→==3.14.7==0.15.22→==0.16.5Release Notes
BrianPugh/cyclopts (cyclopts)
v4.23.3Compare Source
Bug Fixes
New Contributors
Full Changelog: BrianPugh/cyclopts@v4.23.2...v4.23.3
v4.23.2Compare Source
What's Changed
copymethods by @Ichunjo in #899New Contributors
Full Changelog: BrianPugh/cyclopts@v4.23.1...v4.23.2
v4.23.1Compare Source
Bug Fixes
Number,Path, andSlicevalidators silently skippingset,frozenset, anddictelements by @BrianPugh in #891Full Changelog: BrianPugh/cyclopts@v4.23.0...v4.23.1
v4.23.0Compare Source
Performing this as a minor release as it may break setups who rely on strict snapshot testing.
Bug Fixes
Full Changelog: BrianPugh/cyclopts@v4.22.5...v4.23.0
v4.22.5Compare Source
Bug Fixes
Various fixes around abstract collection types:
TypeErrorwhen an abstract collection parameter is given no values by @BrianPugh in #881Collection,Container, andReversibletype hints by @BrianPugh in #882--empty-*flags for abstract collection hints by @BrianPugh in #883Full Changelog: BrianPugh/cyclopts@v4.22.4...v4.22.5
v4.22.4Compare Source
Bug Fixes
ConsumeMultipleErrornoun when the count is 1 by @BrianPugh in #879Full Changelog: BrianPugh/cyclopts@v4.22.3...v4.22.4
v4.22.3Compare Source
Bug Fixes
Enumtypes with__init__defined. by @BrianPugh in #877Full Changelog: BrianPugh/cyclopts@v4.22.2...v4.22.3
v4.22.2Compare Source
Bug Fixes
MissingArgumentErrorfor explicitly-supplied empty mappings by @BrianPugh in #871=valueonParameter.count=Trueflags instead of silently dropping it by @BrianPugh in #872Full Changelog: BrianPugh/cyclopts@v4.22.1...v4.22.2
v4.22.1Compare Source
Bug Fixes
Parameter(env_var=...)values viaenv_var_splitby @chuenchen309 in #866=valueby @chuenchen309 in #865Full Changelog: BrianPugh/cyclopts@v4.22.0...v4.22.1
scrapinghub/dateparser (dateparser)
v1.4.3Compare Source
Fixes:
raises an intermittent
KeyErrorfrom the shared language caches,and a
DATE_ORDERorRELATIVE_BASEvalue meant for one parse nolonger leaks into the settings that other parses read, where it could
make them return a wrong date (#1346)
search_dates()calls, so concurrent searches over text indifferent languages no longer return
Noneor a date read in thewrong locale (#1371)
BSTandHDTtimezone abbreviations to the offsetsthe tz database gives them, UTC+1 (British Summer Time) and UTC-9
(Hawaii-Aleutian Daylight Time), instead of +11 and -9:30, which no
zone goes by those names today; abbreviations that the tz database
maps to more than one offset, such as
CSTandIST, keep theircurrent offset. Text carrying these abbreviations keeps its wall clock
but moves by 10 hours for
BSTand 30 minutes forHDT, which canput the parsed instant on a different day (#1366)
%j(day of year) value that the parsed year does nothave, instead of rolling it over into the next year, so "1999366" with
date_formats=["%Y%j"]returnsNonerather than 2000-01-01. Aformat with no year directive is checked against the year
strptimedefaults to, 1900, which is not a leap year, so "366" with
date_formats=["%j"]now returnsNonewhere it used to returnJanuary 1 (#1370)
Cleanups and internal improvements:
performance regression such as the quadratic backtracking fixed in
1.4.1 is reported on the pull request that introduces it (#1365)
v1.4.2Compare Source
New features:
IGNORE_SURROUNDING_TEXTsetting that, when enabled, retriesparsing after ignoring the leading and trailing words the language does
not recognize, so a date wrapped in extra text such as "Published on
16/04/2019" is parsed (#1356)
strategyargument tosearch_dates()to choose the searchstrategy: the default
"split"keeps the current behavior, while thenew
"ngram"strategy parses the longest sequences of tokens as datesfor more predictable results on noisy text (#1351)
Fixes:
found in year-first date orders, so the day in Japanese dates such as
"4月20日" is no longer consumed as the year (#1358)
order even when an explicit day-first language such as
itorfrisgiven, without needing to set
PREFER_LOCALE_DATE_ORDERtoFalse(#1352)
PREFER_DATES_FROMandRELATIVE_BASEwhen parsing with customdate_formatsthat use a two-digit year (%y) (#1342)%j(day of year) directive indate_formatsinstead ofoverwriting the parsed month and day with the current date (#1345)
Improvements:
recognized date forms across locales and a standalone hour/duration unit
(e.g. Catalan "2 hores"), while keeping previously supported forms
parseable (#1343)
so phrases like "oggi alle 11:00" parse (#1049)
lednu 2023"), the July abbreviation "črv", and relative expressions such
as "za týden", "za měsíc" and "za rok" (#1172)
modelcontextprotocol/python-sdk (mcp)
v1.29.1Compare Source
What's Changed
Full Changelog: modelcontextprotocol/python-sdk@v1.29.0...v1.29.1
v1.29.0Compare Source
What's Changed
Full Changelog: modelcontextprotocol/python-sdk@v1.28.1...v1.29.0
pre-commit/pre-commit (pre-commit)
v4.6.2Compare Source
==================
Fixes
language: nodehooks that contain"scripts": {"build": ...}withnpm 11.x.
v4.6.1Compare Source
==================
Fixes
language: nodehooks viagit.JULIA_DEPOT_PATHforlanguage: julia.--repoforpre-commit autoupdate.pre-push.pre-commit run --all-files.python/cpython (python)
v3.14.7Compare Source
astral-sh/ruff (ruff)
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
v0.16.3Compare Source
Released on 2026-08-13.
Preview features
pylint] Fix false negatives on negative numbers (PLR6104) (#27251)pyupgrade] Add rule to replacewhile 1withwhile True(UP048) (#27190)Bug fixes
flake8-bandit] Also check keyword arguments (S602,S603,S607,S609) (#27687)pylint] Allowcontinueinfinallyon Python 3.8 (#27626)pylint] FixPLE1307false positive with bools (#27651)pylint] Fix false positives and negatives with%bformat character (PLE1300,PLE1307) (#27560)pylint] Improve handling of concatenated strings (PLE1300) (#27659)Rule changes
numpy] Makenp.chararrayautofix backwards-compatible (NPY201) (#27527)Performance
Exprsize to 64 bytes (#27591)CLI
ruff check --statisticsoutput (#27646)Documentation
ruff] Also suggestasyncio.TaskGroup(RUF006) (#27461)Other changes
Contributors
v0.16.2Compare Source
Released on 2026-08-06.
Bug fixes
flake8-pyi] Avoid false positives onsingledispatchfunctions (PYI041) (#27335)Server
Contributors
v0.16.1Compare Source
Released on 2026-07-30.
Preview features
flake8-pytest-style] Make fixes safe by default and unsafe only when comments are present (PT018) (#27201)pyupgrade] Skip fix when a defaultedTypeVarprecedes a non-defaulted one (UP040,UP046,UP047) (#27133)ruff] Fix false positive with unpacked arguments (RUF065) (#26959)Bug fixes
gen-lsp-typesto gracefully handle unknown enumeration values in LSP messages (#27230)flake8-bugbear] Markrangeas immutable (B008) (#27247)flake8-comprehensions] NFKC-normalize keyword names inC408fix (#26813)flake8-return] Fix false positive when variable is read infinallyclause (RET504) (#25441)pydocstyle] Skip section detection inside RST directive bodies (D214,D405,D413) (#23635)refurb] Parenthesizeyieldarguments in theFURB192fix (#27192)Rule changes
flake8-pytest-style] MarkPT022fixes as unsafe (#26440)refurb] Mark fixes that remove unknown separators as unsafe (FURB105) (#27200)Server
Documentation
pyconMarkdown formatting (#27153)flake8-bandit] DocumentTYPE_CHECKINGexception (S101) (#27004)flake8-import-conventions] Document thatextend-aliasescan override default aliases (#27191)pylint] Add missing fix safety gotchas fornon-augmented-assignment(PLR6104) (#27250)Other changes
Contributors
v0.16.0Compare Source
Released on 2026-07-23.
Check out the blog post for a migration
guide and overview of the changes!
Breaking changes
Ruff now enables a much larger set of rules by default (413, up from 59). See the blog post for
more details and the new Default Rules page for a
full listing of the enabled rules.
Ruff can now format Python code blocks in Markdown files and will do this by default. See the
documentation for more details.
Ruff now supports
ruff: ignorecomments at the ends of lines, likenoqacomments, or on the line preceding a diagnostic. For example, these both suppress anunused-import(F401) diagnostic:Fixes are now shown in
checkandformat --checkoutput:This example also shows off the Markdown formatting.
format --checknow supports the same output formats as the linter, including thegithubandgitlaboutputs for rendering annotations in CI:See the CLI help or documentation for the
full list of supported formats.
The
filename,location,end_location,fix.edits[].location, andfix.edits[].end_locationfields in the JSON output format may now be
nullrather than defaulting to the empty string androw 1, column 1, respectively.
Stabilization
The following rules have been stabilized and are no longer in preview:
airflow3-incompatible-function-signature(
AIR303)missing-copyright-notice(
CPY001)unnecessary-from-float(FURB164)sorted-min-max(FURB192)implicit-string-concatenation-in-collection-literal(
ISC004)log-exception-outside-except-handler(
LOG004)invalid-bool-return-type(
PLE0304)too-many-positional-arguments(
PLR0917)stop-iteration-return(PLR1708)none-not-at-end-of-union(
RUF036)access-annotations-from-class-dict(
RUF063)duplicate-entry-in-dunder-all(
RUF068)The following behaviors have been stabilized:
blind-except(BLE001) is now suppressed whenthe exception is logged via
loggingmethods other thancritical,errorandexception.future-required-type-annotation(
FA102) now checks for additional PEP 585-compatibleAPIs, such as those from
collections.abc.f-string-in-get-text-func-call(
INT001),format-in-get-text-func-call(
INT002), andprintf-in-get-text-func-call(
INT003) now check for additional common ways of using thegettextmodule, such as assigningit to
builtins._.suspicious-url-open-usage(
S310) now resolves local string literal bindings to avoid more false positives.snmp-insecure-version(S508) andsnmp-weak-cryptography(S509) nowsupport the recommended API from newer versions of PySNMP.
typing-text-str-alias(UP019) nowrecognizes
typing_extensions.Textin addition totyping.Text.Preview features
pyupgrade] Fix false positive withTypeVardefault before Python 3.13 (UP040) (#26888)Bug fixes
ruff] Fix missing check on unrecognized early bound (RUF016) (#26986)Rule changes
Performance
pyupgrade] Speed upunnecessary-future-import(UP010) (#27047)Documentation
ruff] Add missing period in "Why is this bad?" section (RUF200) (#26930)flake8-simplify] Clarifyos.environbehavior on Windows (SIM112) (#26972)pydocstyle] Document fix safety (D400) (#26971)Contributors
Configuration
📅 Schedule: (UTC)
* * * * 0,6)🚦 Automerge: Enabled.
♻ 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.