Update python dependencies #2418
Merged
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:
~=24.10.0->~=25.1.0~=7.6.8->~=7.8.0~=4.4->~=5.1~=3.2.3->~=4.1.0~=5.13.1->~=6.0.1~=1.13.0->~=1.15.0~=0.8.0->~=0.11.5~=4.27.0->~=4.31.0~=3.0.0->~=3.1.0~=4.12.2->~=4.13.2Release Notes
psf/black (black)
v25.1.0Compare Source
Highlights
This release introduces the new 2025 stable style (#4558), stabilizing
the following changes:
# fmt: skipcomments is no longer normalized (#4146)*and more complex type variable tuple (#4440)The following changes were not in any previous release:
split over multiple lines first instead of type parameter definitions (#4553)
Stable style
empty lines (#4484)
withstatements containing tuple generators/unpacking(#4538)
Preview style
(#4498)
string_processingandwrap_long_dict_values_in_parensfrom removingparentheses around long dictionary values (#4377)
wrap_long_dict_values_in_parensfrom the unstable to preview style (#4561)Packaging
License-Expressionmetadata field, seePEP 639. (#4479)
Performance
is_fstring_startfunction in Black's tokenizer (#4541)Integrations
--stdin-filenameset to a force excluded path, stdin won't beformatted. (#4539)
nedbat/coveragepy (coverage)
v7.8.0Compare Source
Added a new
source_dirssetting for symmetry with the existingsource_pkgssetting. It's preferable to the existingsourcesetting,because you'll get a clear error when directories don't exist. Fixes
issue 1942. Thanks,Jeremy Fleischman <pull 1943_>.Fix: the PYTHONSAFEPATH environment variable new in Python 3.11 is properly
supported, closing
issue 1696. Thanks,Philipp A. <pull 1700_>. Thisworks properly except for a detail when using the
coveragecommand onWindows. There you can use
python -m coverageinstead if you need exactemulation.
.. _issue 1696:https://github.com/nedbat/coveragepy/issues/16966
.. _pull 1700https://github.com/nedbat/coveragepy/pull/170000
.. _issue 194https://github.com/nedbat/coveragepy/issues/1942942
.. _pull 19https://github.com/nedbat/coveragepy/pull/19431943
.. _changes_7-7-1:
v7.7.1Compare Source
test!
.. _changes_7-7-0:
v7.7.0Compare Source
The Coverage object has a new method, :meth:
.Coverage.branch_statsforgetting simple branch information for a module. Closes
issue 1888_.The :class:
Coverage constructor<.Coverage>now has apluginsparameterfor passing in plugin objects directly, thanks to
Alex Gaynor <pull 1919_>_.Many constant tests in if statements are now recognized as being optimized
away. For example, previously
if 13:would have been considered a branchwith one path not taken. Now it is understood as always true and no coverage
is missing.
The experimental sys.monitoring support now works for branch coverage if you
are using Python 3.14.0 alpha 6 or newer. This should reduce the overhead
coverage.py imposes on your test suite. Set the environment variable
COVERAGE_CORE=sysmonto try it out.Confirmed support for PyPy 3.11. Thanks Michał Górny.
.. _issue 1888:https://github.com/nedbat/coveragepy/issues/18888
.. _pull 1919https://github.com/nedbat/coveragepy/pull/191919
.. _changes_7-6-12:
v7.6.12Compare Source
issue 1927_). These are nowbuilding reliably.
.. _issue 1927:https://github.com/nedbat/coveragepy/issues/19277
.. _changes_7-6-11:
v7.6.11Compare Source
Fix: a memory leak in CTracer has been fixed. The details are in
issue 1924_ andpytest-dev 676_. This should reduce the memory footprint foreveryone even if it hadn't caused a problem before.
We now ship a py3-none-any.whl wheel file. Thanks,
Russell Keith-Magee <pull 1914_>_... _pull 1914:https://github.com/nedbat/coveragepy/pull/19144
.. _issue 1924https://github.com/nedbat/coveragepy/issues/192424
.. _pytest-dev 67https://github.com/pytest-dev/pytest-cov/issues/676676
.. _changes_7-6-10:
v7.6.10Compare Source
Fix: some descriptions of missing branches in HTML and LCOV reports were
incorrect when multi-line statements were involved (
issue 1874_ andissue 1875_). These are now fixed.Fix: Python 3.14
defers evaluation of annotations <pep649_>_ by moving theminto separate code objects. That code is rarely executed, so coverage.py
would mark them as missing, as reported in
issue 1908_. Now they areignored by coverage automatically.
Fixed an obscure and mysterious problem on PyPy 3.10 seemingly involving
mocks, imports, and trace functions:
issue 1902_. To be honest, I don'tunderstand the problem or the solution, but
git bisecthelped find it,and now it's fixed.
Docs: re-wrote the :ref:
subprocesspage to put multiprocessing first and tohighlight the correct use of :class:
multiprocessing.Pool <python:multiprocessing.pool.Pool>... _issue 1874:https://github.com/nedbat/coveragepy/issues/18744
.. _issue 1875https://github.com/nedbat/coveragepy/issues/187575
.. _issue 190https://github.com/nedbat/coveragepy/issues/1902902
.. _issue 19https://github.com/nedbat/coveragepy/issues/19081908
.. _pep649: https://docs.python.org/3.14/whatsnew/3.14.html#pep-649-deferred-evaluation-of-annotations
.. _changes_7-6-9:
v7.6.9Compare Source
Tomas Uribe fixed <pull 1901_>_ a performance problem in the XMLreport. Large code bases should produce XML reports much faster now.
.. _pull 1901:https://github.com/nedbat/coveragepy/pull/19011
.. _changes_7-6-8:
django-commons/django-debug-toolbar (django-debug-toolbar)
v5.1.0Compare Source
What's Changed
New Contributors
Full Changelog: django-commons/django-debug-toolbar@5.0.1...5.1.0
v5.0.1Compare Source
What's Changed
There were no functional changes in this version.
PRs
Full Changelog: django-commons/django-debug-toolbar@5.0.0...5.0.1
v5.0.0Compare Source
What's Changed
Please note that Django Debug Toolbar has now moved into the Django Commons organization.
Changelog
strstatic file values.Google Summer of Code Project 2024 <https://summerofcode.withgoogle.com/programs/2024/projects/iXVvyGYp>__.LoginRequiredMiddlewareintroduced in Django 5.1.UNIONqueries on PostgreSQL.FORCE_SCRIPT_NAMEwas set.RedirectsPanelto be async compatible.sorted.
PRs
FORCE_SCRIPT_NAMEby @dmartin in https://github.com/django-commons/django-debug-toolbar/pull/1970DEBUG=Truein async middleware compatibility tests by @salty-ivy in https://github.com/django-commons/django-debug-toolbar/pull/1977StaticFilesPanelby @salty-ivy in https://github.com/django-commons/django-debug-toolbar/pull/1983HistoryPanelby @salty-ivy in https://github.com/django-commons/django-debug-toolbar/pull/1991SQLPanelby @salty-ivy in https://github.com/django-commons/django-debug-toolbar/pull/1993Google Summer of Code - Async project
This release contains the changes for async compatibility for the majority of panels. This is the result of the Google Summer of Code project by @salty-ivy. A massive thank you 💚 and a round of applause 👏 is due to Aman!
New Contributors
Full Changelog: django-commons/django-debug-toolbar@4.4.6...5.0.0
django-extensions/django-extensions (django-extensions)
v4.1Compare Source
Changes:
v4.0Compare Source
Changes:
field-type-differ(#1867)PyCQA/isort (isort)
v6.0.1Compare Source
Changes
🪲 Fixes
👷 Continuous Integration
v6.0.0Compare Source
Changes
💥 Breaking Changes
🚀 Features
asimports (#2340) @DanielNoordpre-commit autoupdate(#2321) @kurtmckee🪲 Fixes
--diffto be used with--jobs(#2302) @mnakamawemakehas 80 chars hard limit, not 79 (#2241) @sobolevnmain(#2320) @DanielNoordsort_reexportscode mangling (#2283) @Helveg👷 Continuous Integration
actions/cache@v2usage (#2322) @kurtmckeepre-commit(#2296) @matthewhughes934📦 Dependencies
poetryto2.0.1(#2341) @DanielNoordpython/mypy (mypy)
v1.15.0Compare Source
v1.14.1Compare Source
v1.14.0Compare Source
astral-sh/ruff (ruff)
v0.11.5Compare Source
Preview features
airflow] Add missingAIR302attribute check (#17115)airflow] Expand module path check to individual symbols (AIR302) (#17278)airflow] ExtractAIR312fromAIR302rules (AIR302,AIR312) (#17152)airflow] Update oudatedAIR301,AIR302rules (#17123)await(#17282)Bug fixes
flake8-pie] Avoid false positive for multiple assignment withauto()(PIE796) (#17274)Rule changes
ruff] FixRUF100to detect unused file-levelnoqadirectives with specific codes (#17042) (#17061)flake8-pytest-style] Avoid false positive for legacy form ofpytest.raises(PT011) (#17231)Documentation
v0.11.4Compare Source
Preview features
ruff] Implementinvalid-rule-codeasRUF102(#17138)matchmapping patterns (#17129)matchclass patterns (#17186)Bug fixes
matchpatterns (#17184)typing.Annotatedsubscripts (#17201)v0.11.3Compare Source
Preview features
airflow] Add more autofixes forAIR302(#16876, #16977, #16976, #16965)airflow] MoveAIR301toAIR002(#16978)airflow] MoveAIR302toAIR301andAIR303toAIR302(#17151)flake8-bandit] Markstrandlist[str]literals as trusted input (S603) (#17136)ruff] Support slices inRUF005(#17078)casepattern before final case (#16905)casepattern (#16957)return, `yConfiguration
📅 Schedule: Branch creation - "* * 1 * *" (UTC), Automerge - At any time (no schedule defined).
🚦 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.