Bumps the all-deps group in /requirements with 6 updates:
Updates flake8
from 7.2.0 to 7.3.0
Commits
Updates faker
from 37.1.0 to 37.5.3
Release notes
Sourced from faker's releases.
Release v37.5.3
See CHANGELOG.md.
Release v37.5.2
See CHANGELOG.md.
Release v37.5.1
See CHANGELOG.md.
Release v37.5.0
See CHANGELOG.md.
Release v37.4.3
See CHANGELOG.md.
Release v37.4.2
See CHANGELOG.md.
Release v37.4.1
See CHANGELOG.md.
Release v37.4.0
See CHANGELOG.md.
Release v37.3.0
See CHANGELOG.md.
Release v37.2.1
See CHANGELOG.md.
Release v37.2.0
See CHANGELOG.md.
Release v37.1.1
See CHANGELOG.md.
Changelog
Sourced from faker's changelog.
- Allow
Decimal
type for min_value
and max_value
in pydecimal
. Thanks @sshishov
.
- Fix Turkish Republic National Number (TCKN) provider. Thanks
@fleizean
.
- Fix unnatural Korean company names in
ko_KR
locale. Thanks @r-4bb1t
.
- Add Spanish lorem provider for
es_ES
, es_AR
and es_MX
. Thanks @Pandede
.
- Fix male names in
sv_SE
locale. Thanks @peterk
.
- Fix the function for generating VIN, now the last 4 characters are digits. Thanks
@nesb1
.
- Fix leading 0s in building numbers for
de_DE
locale. Thanks @KarelZe
.
- Remove duplicate cities in
de_DE
address provider. Thanks @KarelZe
.
- Fix type annotations for Python 3.14. Thanks
@mgorny
.
Commits
Updates pytest
from 8.3.5 to 8.4.1
Release notes
Sourced from pytest's releases.
8.4.1
pytest 8.4.1 (2025年06月17日)
Bug fixes
-
#13461: Corrected _pytest.terminal.TerminalReporter.isatty
to support
being called as a method. Before it was just a boolean which could
break correct code when using -o log_cli=true
).
-
#13477: Reintroduced pytest.PytestReturnNotNoneWarning
{.interpreted-text role="class"} which was removed by accident in pytest [8.4]{.title-ref}.
This warning is raised when a test functions returns a value other than None
, which is often a mistake made by beginners.
See return-not-none
{.interpreted-text role="ref"} for more information.
-
#13497: Fixed compatibility with Twisted 25+
.
Improved documentation
- #13492: Fixed outdated warning about
faulthandler
not working on Windows.
8.4.0
pytest 8.4.0 (2025年06月02日)
Removals and backward incompatible breaking changes
-
#11372: Async tests will now fail, instead of warning+skipping, if you don't have any suitable plugin installed.
-
#12346: Tests will now fail, instead of raising a warning, if they return any value other than None.
-
#12874: We dropped support for Python 3.8 following its end of life (2024年10月07日).
-
#12960: Test functions containing a yield now cause an explicit error. They have not been run since pytest 4.0, and were previously marked as an expected failure and deprecation warning.
See the docs <yield tests deprecated>
{.interpreted-text role="ref"} for more information.
Deprecations (removal in next major release)
- #10839: Requesting an asynchronous fixture without a [pytest_fixture_setup]{.title-ref} hook that resolves it will now give a DeprecationWarning. This most commonly happens if a sync test requests an async fixture. This should have no effect on a majority of users with async tests or fixtures using async pytest plugins, but may affect non-standard hook setups or
autouse=True
. For guidance on how to work around this warning see sync-test-async-fixture
{.interpreted-text role="ref"}.
New features
-
#11538: Added pytest.RaisesGroup
{.interpreted-text role="class"} as an equivalent to pytest.raises
{.interpreted-text role="func"} for expecting ExceptionGroup
{.interpreted-text role="exc"}. Also adds pytest.RaisesExc
{.interpreted-text role="class"} which is now the logic behind pytest.raises
{.interpreted-text role="func"} and used as parameter to pytest.RaisesGroup
{.interpreted-text role="class"}. RaisesGroup
includes the ability to specify multiple different expected exceptions, the structure of nested exception groups, and flags for emulating except* <except_star>
{.interpreted-text role="ref"}. See assert-matching-exception-groups
{.interpreted-text role="ref"} and docstrings for more information.
-
#12081: Added capteesys
{.interpreted-text role="fixture"} to capture AND pass output to next handler set by --capture=
.
-
#12504: pytest.mark.xfail
{.interpreted-text role="func"} now accepts pytest.RaisesGroup
{.interpreted-text role="class"} for the raises
parameter when you expect an exception group. You can also pass a pytest.RaisesExc
{.interpreted-text role="class"} if you e.g. want to make use of the check
parameter.
-
#12713: New [--force-short-summary]{.title-ref} option to force condensed summary output regardless of verbosity level.
... (truncated)
Commits
Updates pytest-cov
from 6.1.1 to 6.2.1
Changelog
Sourced from pytest-cov's changelog.
6.2.1 (2025年06月12日)
-
Added a version requirement for pytest's pluggy dependency (1.2.0, released 2023年06月21日) that has the required new-style hookwrapper API.
-
Removed deprecated license classifier (packaging).
-
Disabled coverage warnings in two more situations where they have no value:
- "module-not-measured" in workers
- "already-imported" in subprocesses
6.2.0 (2025年06月11日)
-
The plugin now adds 3 rules in the filter warnings configuration to prevent common coverage warnings being raised as obscure errors::
default:unclosed database in <sqlite3.Connection object at:ResourceWarning
once::PytestCovWarning
once::CoverageWarning
This fixes most of the bad interactions that are occurring on pytest 8.4 with filterwarnings=error
.
The plugin will check if there already matching rules for the 3 categories
(ResourceWarning
, PytestCovWarning
, CoverageWarning
) and message (unclosed database in <sqlite3.Connection object at
) before adding the filters.
This means you can have this in your pytest configuration for complete oblivion (not recommended, if that is not clear)::
filterwarnings = [
"error",
"ignore:unclosed database in <sqlite3.Connection object at:ResourceWarning",
"ignore::PytestCovWarning",
"ignore::CoverageWarning",
]
Commits
55dbe43
Bump version: 6.2.0 → 6.2.1
d17e9b7
Update changelog.
8964ab7
Add a note for this warning disable.
e932e41
Prevent unimported warnings @ pytest-xdist workers
573379b
Bring pytest-cov's suprocess management in line with coverage's process_start...
f1884e8
Fix xdist pin.
512c669
Added minium version requirements for pluggin (for new-style hookwrappers). P...
629ba64
Remove deprecated license classifier.
dca5723
Bump version: 6.1.1 → 6.2.0
f69166a
Also trigger the sqlite warning.
- Additional commits viewable in compare view
Updates pytest-factoryboy
from 2.7.0 to 2.8.1
Changelog
Sourced from pytest-factoryboy's changelog.
2.8.1
Added
+++++
- Test against all supported
factory-boy
versions
Changed
+++++++
Deprecated
++++++++++
Removed
+++++++
Fixed
+++++
Security
++++++++
2.8.0
Added
+++++
- Declare compatibility with python 3.13. Supported versions are now: 3.9, 3.10, 3.11, 3.12, 3.13.
- Test against pytest 8.4
- Test against python 3.14 (beta)
- Run static type checks.
Changed
+++++++
- Changelog format updated to follow
Keep a Changelog <https://keepachangelog.com/en/1.1.0/>
_.
Deprecated
++++++++++
Removed
+++++++
- Drop support for python 3.8. Supported versions are now: 3.9, 3.10, 3.11, 3.12, 3.13.
- Drop support for pytest < 7.0.0.
Fixed
+++++
- Fix compatibility with
pytest 8.4
.
... (truncated)
Commits
6635365
Merge pull request #249 from pytest-dev/fix-2.8
d38c410
Bump version to 2.8.1
643e777
Fix incompatibility with python < 3.12 and factory-boy < 3.3
d8bdab5
Test against all supported factoryboy versions
3bb755d
Merge pull request #247 from pytest-dev/remove-typing-any
3627e88
Remove usages of typing.Any
892bb79
Bump poetry
9295690
Merge pull request #246 from pytest-dev/move-to-src-layout
a9e8c70
Move package to src/
layout and update paths accordingly
272ca62
Remove weird gitignore entries
- Additional commits viewable in compare view
Updates django-filter
from 24.3 to 25.1
Changelog
Sourced from django-filter's changelog.
Version 25.1 (2025年02月14日)
-
Removed the in-built API schema generation methods, which have been
deprecated since v23.2.
You should use drf-spectacular <https://drf-spectacular.readthedocs.io/en/latest/>
_
for generating OpenAPI schemas with DRF.
-
Dropped support for EOL Python 3.8.
-
Added testing against Python 3.13.
-
Added official support for Django 5.2.
Commits
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase
.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebase
will rebase this PR
@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it
@dependabot merge
will merge this PR after your CI passes on it
@dependabot squash and merge
will squash and merge this PR after your CI passes on it
@dependabot cancel merge
will cancel a previously requested merge and block automerging
@dependabot reopen
will reopen this PR if it is closed
@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency
@dependabot ignore <dependency name> major version
will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
@dependabot ignore <dependency name> minor version
will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
@dependabot ignore <dependency name>
will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
@dependabot unignore <dependency name>
will remove all of the ignore conditions of the specified dependency
@dependabot unignore <dependency name> <ignore condition>
will remove the ignore condition of the specified dependency and ignore conditions
Bumps the all-deps group in /requirements with 6 updates:
7.2.0
7.3.0
37.1.0
37.5.3
8.3.5
8.4.1
6.1.1
6.2.1
2.7.0
2.8.1
24.3
25.1
Updates
flake8
from 7.2.0 to 7.3.0Commits
c48217e
Release 7.3.0f9e0f33
Merge pull request #1986 from PyCQA/document-f5426bcdb62
document F54270a15b8
Merge pull request #1985 from PyCQA/upgrade-deps4941a3e
upgrade pyflakes / pycodestyle23e4005
Merge pull request #1983 from PyCQA/py314019424b
add support for t-strings6b6f3d5
Merge pull request #1980 from PyCQA/asottile-patch-18dfa669
add rtd sphinx configce34111
Merge pull request #1976 from PyCQA/document-f824Updates
faker
from 37.1.0 to 37.5.3Release notes
Sourced from faker's releases.
Changelog
Sourced from faker's changelog.
Commits
c7db7f5
Bump version: 37.5.2 → 37.5.3f4fbe8f
📝 Update CHANGELOG.md2a55697
format code614e325
Placate mypyf8e5d86
fix(pydecimal): allowDecimal
type formin_value
andmax_value
in `pyde...4cf2671
Bump version: 37.5.1 → 37.5.2fecc037
📝 Update CHANGELOG.md3e94c67
Fix Turkish Republic National Number (TCKN) provider (#2232)867b08e
more samples5acc936
update stubsUpdates
pytest
from 8.3.5 to 8.4.1Release notes
Sourced from pytest's releases.
... (truncated)
Commits
8d99211
Prepare release version 8.4.15dc5880
docs: update pytest.ini addopts example to use separate -p entries (#13529) (...d0c7ed0
Reintroduce PytestReturnNotNoneWarning (#13495) (#13527)a1b3a78
Fix compatibility with Twisted 25 (#13502) (#13531)4c161ab
pytester: avoid unraisableexception gc collects in inline runs to speed up te...a86ee09
Fix typo in parametrize.rst (#13514) (#13516)1a0581b
Remove outdated warning about faulthandler_timeout on Windows (#13492) (#13493)4e631a7
Merge pull request #13486 from hosmir/fixtypo (#13487)b49745e
fix: support TerminalReporter.isatty being called (#13462) (#13483)cc5ceed
RELEASING: remove pytest mailing list (#13472) (#13473)Updates
pytest-cov
from 6.1.1 to 6.2.1Changelog
Sourced from pytest-cov's changelog.
Commits
55dbe43
Bump version: 6.2.0 → 6.2.1d17e9b7
Update changelog.8964ab7
Add a note for this warning disable.e932e41
Prevent unimported warnings @ pytest-xdist workers573379b
Bring pytest-cov's suprocess management in line with coverage's process_start...f1884e8
Fix xdist pin.512c669
Added minium version requirements for pluggin (for new-style hookwrappers). P...629ba64
Remove deprecated license classifier.dca5723
Bump version: 6.1.1 → 6.2.0f69166a
Also trigger the sqlite warning.Updates
pytest-factoryboy
from 2.7.0 to 2.8.1Changelog
Sourced from pytest-factoryboy's changelog.
... (truncated)
Commits
6635365
Merge pull request #249 from pytest-dev/fix-2.8d38c410
Bump version to 2.8.1643e777
Fix incompatibility with python < 3.12 and factory-boy < 3.3d8bdab5
Test against all supported factoryboy versions3bb755d
Merge pull request #247 from pytest-dev/remove-typing-any3627e88
Remove usages oftyping.Any
892bb79
Bump poetry9295690
Merge pull request #246 from pytest-dev/move-to-src-layouta9e8c70
Move package tosrc/
layout and update paths accordingly272ca62
Remove weird gitignore entriesUpdates
django-filter
from 24.3 to 25.1Changelog
Sourced from django-filter's changelog.
Commits
27dd672
Updated Change notes for 25.1 release.2ea3817
Added Trove classifier for Django 5.2.4d2306c
Replaced hardcoded pks in tests (#1703)fbf5a76
Update tox after Django 5.2 alpha release. (#1700)1e76d68
Use QueryDict for data default. (#1691)e709e5d
Add testing against Python 3.13.ccde000
Dropped support for EOL Python 3.8.2a644e1
Removed deprecated schema generation methods from DRF backend. (#1698)2494df9
fix typo in filterset.txt (#1695)3656174
Translated using Weblate (Czech) (#1687)Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase
.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after your CI passes on it@dependabot cancel merge
will cancel a previously requested merge and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major version
will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)@dependabot ignore <dependency name> minor version
will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)@dependabot ignore <dependency name>
will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)@dependabot unignore <dependency name>
will remove all of the ignore conditions of the specified dependency@dependabot unignore <dependency name> <ignore condition>
will remove the ignore condition of the specified dependency and ignore conditions