Update Python package updates #18
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:
==5.5.0->==5.5.2==3.4.0->==3.4.1==7.6.3->==7.8.0==3.16.1->==3.18.0==2.0.0->==2.1.0==0.2.25->==0.2.28==24.1->==24.2==4.3.6->==4.3.7==1.8.0->==1.9.0==8.3.3->==8.3.5==0.35.1->==0.36.2==0.25.3->==0.25.7==0.21.0->==0.24.0==0.18.6->==0.18.10==4.21.2->==4.25.0==2.2.3->==2.4.0==20.26.6->==20.30.0Release Notes
tkem/cachetools (cachetools)
v5.5.2Compare Source
===================
Reduce number of
@cachedlock/unlock operations.Improve documentation.
Update CI environment.
v5.5.1Compare Source
===================
Add documentation regarding caching of exceptions.
Officially support Python 3.13.
Update CI environment.
jawah/charset_normalizer (charset-normalizer)
v3.4.1Compare Source
Changed
pyproject.tomlinstead ofsetup.cfgusing setuptools as the build backend.Added
Removed
build-requirements.txtas per usingpyproject.tomlnative build configuration.bin/integration.pyandbin/serve.pyin favor of downstream integration test (see noxfile).setup.cfgin favor ofpyproject.tomlmetadata configuration.utils.range_scanfunction.Fixed
utf_8instead of preferredutf-8. (#572)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:
v7.6.8Compare Source
Fix: the LCOV report code assumed that a branch line that took no branches
meant that the entire line was unexecuted. This isn't true in a few cases:
the line might always raise an exception, or might have been optimized away.
Fixes
issue 1896_.Fix: similarly, the HTML report will now explain that a line that jumps to
none of its expected destinations must have always raised an exception.
Previously, it would say something nonsensical like, "line 4 didn't jump to
line 5 because line 4 was never true, and it didn't jump to line 7 because
line 4 was always true." This was also shown in
issue 1896_... _issue 1896:https://github.com/nedbat/coveragepy/issues/18966
.. _changes_7-6-7:
v7.6.7Compare Source
so it's been restored to a conditional. Sorry for the churn.
.. _changes_7-6-6:
v7.6.6Compare Source
reported in
issue 1891_. The assert has been removed... _issue 1891:https://github.com/nedbat/coveragepy/issues/18911
.. _changes_7-6-5:
v7.6.5Compare Source
Fix: fine-tuned the exact Python version (3.12.6) when exiting from
withstatements changed how they traced. This affected whether people saw the
fix for
issue 1880_.Fix: isolate our code more from mocking in the os module that in rare cases
can cause
bizarre behavior <pytest-cov-666_>_.Refactor: some code unreachable code paths in parser.py were changed to
asserts. If you encounter any of these, please let me know!
.. _pytest-cov-666:https://github.com/pytest-dev/pytest-cov/issues/6666
.. _changes_7-6-4:
v7.6.4Compare Source
withstatements could cause contained branches to beincorrectly marked as missing (
issue 1880_). This is now fixed... _issue 1880:https://github.com/nedbat/coveragepy/issues/18800
.. _changes_7-6-3:
tox-dev/py-filelock (filelock)
v3.18.0Compare Source
What's Changed
New Contributors
Full Changelog: tox-dev/filelock@3.17.0...3.18.0
v3.17.0: Drop 3.8Compare Source
Full Changelog: tox-dev/filelock@3.16.1...3.17.0
pytest-dev/iniconfig (iniconfig)
v2.1.0Compare Source
=====
oras-project/oras-py (oras)
v0.2.28: Oras Python v0.2.28Compare Source
What's Changed
Full Changelog: oras-project/oras-py@0.2.27...0.2.28
v0.2.27: Oras Python v0.2.27Compare Source
What's Changed
New Contributors
Full Changelog: oras-project/oras-py@0.2.25...0.2.27
pypa/packaging (packaging)
v24.2Compare Source
What's Changed
__str__by @aryanpingle in https://github.com/pypa/packaging/pull/817>and<by @notatallshaw in https://github.com/pypa/packaging/pull/794Metadata.nameisn't normalized by @brettcannon in https://github.com/pypa/packaging/pull/842New Contributors
Full Changelog: pypa/packaging@24.1...24.2
tox-dev/platformdirs (platformdirs)
v4.3.7Compare Source
What's Changed
Full Changelog: tox-dev/platformdirs@4.3.6...4.3.7
tox-dev/pyproject-api (pyproject-api)
v1.9.0: Drop 3.8Compare Source
What's Changed
Full Changelog: tox-dev/pyproject-api@1.8.0...1.9.0
pytest-dev/pytest (pytest)
v8.3.5Compare Source
pytest 8.3.5 (2025-03-02)
Bug fixes
-vvverbosity.libeditbuild of Python, such as on macOS or with uv-managed Python binaries from thepython-build-standaloneproject. This could manifest e.g. by a broken prompt when usingPdb, or seeing empty inputs with manual usage ofinput()and suspended capturing.AttributeError{.interpreted-text role="class"} crash when using--import-mode=importlibwhen top-level directory same name as another module of the standard library.--import-mode=importlib, a directory containing py file with the same name would cause anImportErrorImproved documentation
#12842: Added dedicated page about using types with pytest.
See
types{.interpreted-text role="ref"} for detailed usage.Contributor-facing changes
test_terminal.pywith Pygments >= 2.19.0when building Sphinx docs -- by
webknjaz{.interpreted-text role="user"}.v8.3.4Compare Source
pytest 8.3.4 (2024-12-01)
Bug fixes
#12592: Fixed
KeyError{.interpreted-text role="class"} crash when using--import-mode=importlibin a directory layout where a directory contains a child directory with the same name.#12818: Assertion rewriting now preserves the source ranges of the original instructions, making it play well with tools that deal with the
AST, like executing.#12849: ANSI escape codes for colored output now handled correctly in
pytest.fail{.interpreted-text role="func"} with [pytrace=False]{.title-ref}.#9353:
pytest.approx{.interpreted-text role="func"} now uses strict equality when given booleans.Improved documentation
#10558: Fix ambiguous docstring of
pytest.Config.getoption{.interpreted-text role="func"}.#10829: Improve documentation on the current handling of the
--basetempoption and its lack of retention functionality (temporary directory location and retention{.interpreted-text role="ref"}).#12866: Improved cross-references concerning the
recwarn{.interpreted-text role="fixture"} fixture.#12966: Clarify
filterwarnings{.interpreted-text role="ref"} docs on filter precedence/order when using multiple@pytest.mark.filterwarnings <pytest.mark.filterwarnings ref>{.interpreted-text role="ref"} marks.Contributor-facing changes
python-jsonschema/referencing (referencing)
v0.36.2Compare Source
Full Changelog: python-jsonschema/referencing@v0.36.1...v0.36.2
v0.36.1Compare Source
What's Changed
New Contributors
Full Changelog: python-jsonschema/referencing@v0.36.0...v0.36.1
v0.36.0Compare Source
Full Changelog: python-jsonschema/referencing@v0.35.1...v0.36.0
getsentry/responses (responses)
v0.25.7Compare Source
v0.25.6Compare Source
v0.25.5Compare Source
crate-py/rpds (rpds-py)
v0.24.0Compare Source
What's Changed
New Contributors
Full Changelog: crate-py/rpds@v0.23.1...v0.24.0
v0.23.1Compare Source
What's Changed
New Contributors
Full Changelog: crate-py/rpds@v0.23.0...v0.23.1
v0.23.0Compare Source
Full Changelog: crate-py/rpds@v0.22.3...v0.23.0
v0.22.3Compare Source
Full Changelog: crate-py/rpds@v0.22.2...v0.22.3
v0.22.1Compare Source
What's Changed
New Contributors
Full Changelog: crate-py/rpds@v0.22.0...v0.22.1
v0.22.0Compare Source
What's Changed
New Contributors
Full Changelog: crate-py/rpds@v0.21.0...v0.22.0
tox-dev/tox (tox)
v4.25.0Compare Source
What's Changed
Full Changelog: tox-dev/tox@4.24.2...4.25.0
v4.24.2Compare Source
What's Changed
--parallel Nwith--parallel-no-spinnerby @tusharsadhwani in https://github.com/tox-dev/tox/pull/3495New Contributors
Full Changelog: tox-dev/tox@4.24.1...4.24.2
v4.24.1Compare Source
What's Changed
Full Changelog: tox-dev/tox@4.24.0...4.24.1
v4.24.0Compare Source
What's Changed
New Contributors
Full Changelog: tox-dev/tox@4.23.2...4.24.0
v4.23.2Compare Source
What's Changed
New Contributors
Full Changelog: tox-dev/tox@4.23.1...4.23.2
v4.23.1Compare Source
What's Changed
New Contributors
Full Changelog: tox-dev/tox@4.23.0...4.23.1
v4.23.0[Compare Source](https://redirect.github.com/tox-dev/tox/compare/4.22.0...4.23.
Configuration
📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, on day 1 of the month ( * 0-3 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.