Bump the all-deps group in /requirements with 6 updates
Type: Pull Request
State: Merged
Association: Contributor
Comments: 0
(3 months ago)
(3 months ago)
(3 months ago)
by sliverc
dependencies python
Bumps the all-deps group in /requirements with 6 updates:
| Package | From | To |
|---|---|---|
| flake8 | 7.2.0 |
7.3.0 |
| faker | 37.1.0 |
37.5.3 |
| pytest | 8.3.5 |
8.4.1 |
| pytest-cov | 6.1.1 |
6.2.1 |
| pytest-factoryboy | 2.7.0 |
2.8.1 |
| django-filter | 24.3 |
25.1 |
Updates flake8 from 7.2.0 to 7.3.0
Commits
c48217eRelease 7.3.0f9e0f33Merge pull request #1986 from PyCQA/document-f5426bcdb62document F54270a15b8Merge pull request #1985 from PyCQA/upgrade-deps4941a3eupgrade pyflakes / pycodestyle23e4005Merge pull request #1983 from PyCQA/py314019424badd support for t-strings6b6f3d5Merge pull request #1980 from PyCQA/asottile-patch-18dfa669add rtd sphinx configce34111Merge pull request #1976 from PyCQA/document-f824- Additional commits viewable in compare view
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.
v37.5.3 - 2025-07-30
- Allow
Decimaltype formin_valueandmax_valueinpydecimal. Thanks@sshishov.v37.5.2 - 2025-07-30
- Fix Turkish Republic National Number (TCKN) provider. Thanks
@fleizean.v37.5.1 - 2025-07-30
- Fix unnatural Korean company names in
ko_KRlocale. Thanks@r-4bb1t.v37.5.0 - 2025-07-30
- Add Spanish lorem provider for
es_ES,es_ARandes_MX. Thanks@Pandede.v37.4.3 - 2025-07-30
- Fix male names in
sv_SElocale. Thanks@peterk.v37.4.2 - 2025-07-15
- Fix the function for generating VIN, now the last 4 characters are digits. Thanks
@nesb1.v37.4.1 - 2025-07-15
- Fix leading 0s in building numbers for
de_DElocale. Thanks@KarelZe.v37.4.0 - 2025-06-11
- Implement
Zh_CNcredit card provider. Thanks@JohananOppongAmoateng.v37.3.0 - 2025-05-14
- Update
zh_TWPerson Provider. Thanks@0x6r1an0y.v37.2.1 - 2025-05-14
- Remove duplicate cities in
de_DEaddress provider. Thanks@KarelZe.v37.2.0 - 2025-05-14
- Add person provider for is_IS locale. Thanks
@sergey-scat.v37.1.1 - 2025-05-14
- Fix type annotations for Python 3.14. Thanks
@mgorny.
Commits
c7db7f5Bump version: 37.5.2 → 37.5.3f4fbe8f:pencil: Update CHANGELOG.md2a55697format code614e325Placate mypyf8e5d86fix(pydecimal): allowDecimaltype formin_valueandmax_valuein `pyde...4cf2671Bump version: 37.5.1 → 37.5.2fecc037:pencil: Update CHANGELOG.md3e94c67Fix Turkish Republic National Number (TCKN) provider (#2232)867b08emore samples5acc936update stubs- Additional commits viewable in compare view
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.isattyto 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
faulthandlernot 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 seesync-test-async-fixture{.interpreted-text role="ref"}.New features
#11538: Added
pytest.RaisesGroup{.interpreted-text role="class"} as an equivalent topytest.raises{.interpreted-text role="func"} for expectingExceptionGroup{.interpreted-text role="exc"}. Also addspytest.RaisesExc{.interpreted-text role="class"} which is now the logic behindpytest.raises{.interpreted-text role="func"} and used as parameter topytest.RaisesGroup{.interpreted-text role="class"}.RaisesGroupincludes the ability to specify multiple different expected exceptions, the structure of nested exception groups, and flags for emulatingexcept* <except_star>{.interpreted-text role="ref"}. Seeassert-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 acceptspytest.RaisesGroup{.interpreted-text role="class"} for theraisesparameter when you expect an exception group. You can also pass apytest.RaisesExc{.interpreted-text role="class"} if you e.g. want to make use of thecheckparameter.#12713: New [--force-short-summary]{.title-ref} option to force condensed summary output regardless of verbosity level.
... (truncated)
Commits
8d99211Prepare release version 8.4.15dc5880docs: update pytest.ini addopts example to use separate -p entries (#13529) (...d0c7ed0Reintroduce PytestReturnNotNoneWarning (#13495) (#13527)a1b3a78Fix compatibility with Twisted 25 (#13502) (#13531)4c161abpytester: avoid unraisableexception gc collects in inline runs to speed up te...a86ee09Fix typo in parametrize.rst (#13514) (#13516)1a0581bRemove outdated warning about faulthandler_timeout on Windows (#13492) (#13493)4e631a7Merge pull request #13486 from hosmir/fixtypo (#13487)b49745efix: support TerminalReporter.isatty being called (#13462) (#13483)cc5ceedRELEASING: remove pytest mailing list (#13472) (#13473)- Additional commits viewable in compare view
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
55dbe43Bump version: 6.2.0 → 6.2.1d17e9b7Update changelog.8964ab7Add a note for this warning disable.e932e41Prevent unimported warnings @ pytest-xdist workers573379bBring pytest-cov's suprocess management in line with coverage's process_start...f1884e8Fix xdist pin.512c669Added minium version requirements for pluggin (for new-style hookwrappers). P...629ba64Remove deprecated license classifier.dca5723Bump version: 6.1.1 → 6.2.0f69166aAlso 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-boyversionsChanged +++++++
Deprecated ++++++++++
Removed +++++++
Fixed +++++
Fix incompatibility when using the combination of python < 3.12 and factory-boy < 3.3.
- The error was:
TypeError: type 'Factory' is not subscriptableSecurity ++++++++
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
6635365Merge pull request #249 from pytest-dev/fix-2.8d38c410Bump version to 2.8.1643e777Fix incompatibility with python < 3.12 and factory-boy < 3.3d8bdab5Test against all supported factoryboy versions3bb755dMerge pull request #247 from pytest-dev/remove-typing-any3627e88Remove usages oftyping.Any892bb79Bump poetry9295690Merge pull request #246 from pytest-dev/move-to-src-layouta9e8c70Move package tosrc/layout and update paths accordingly272ca62Remove 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
27dd672Updated Change notes for 25.1 release.2ea3817Added Trove classifier for Django 5.2.4d2306cReplaced hardcoded pks in tests (#1703)fbf5a76Update tox after Django 5.2 alpha release. (#1700)1e76d68Use QueryDict for data default. (#1691)e709e5dAdd testing against Python 3.13.ccde000Dropped support for EOL Python 3.8.2a644e1Removed deprecated schema generation methods from DRF backend. (#1698)2494df9fix typo in filterset.txt (#1695)3656174Translated using Weblate (Czech) (#1687)- Additional commits viewable in compare view
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 rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major versionwill 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 versionwill 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
Pull Request Statistics
1
3
+6
-6
Package Dependencies
pytest-cov
pip
6.1.1 → 6.2.1
Minor
/requirements
faker
pip
37.1.0 → 37.5.3
Minor
/requirements
pytest-factoryboy
pip
2.7.0 → 2.8.1
Minor
/requirements
Technical Details
| ID: | 4490413 |
| UUID: | 2716149133 |
| Node ID: | PR_kwDOAU-ALs6h5SWN |
| Host: | GitHub |
| Repository: | django-json-api/django-rest-framework-json-api |
| Merge State: | Unknown |