Skip to content

Bump the requirements group across 1 directory with 3 updates #3124

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jun 9, 2025

Bumps the requirements group with 3 updates in the / directory: pytest, redis and h5py.

Updates pytest from 8.3.5 to 8.4.0

Release notes

Sourced from pytest's releases.

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.

    This lets users still see condensed summary output of failures for quick reference in log files from job outputs, being especially useful if non-condensed output is very verbose.

  • #12749: pytest traditionally collects classes/functions in the test module namespace even if they are imported from another file.

    For example:

    # contents of src/domain.py
    class Testament: ...
    contents of tests/test_testament.py
    from domain import Testament
    def test_testament(): ...

    In this scenario with the default options, pytest will collect the class [Testament]{.title-ref} from [tests/test_testament.py]{.title-ref} because it starts with [Test]{.title-ref}, even though in this case it is a production class being imported in the test module namespace.

    This behavior can now be prevented by setting the new collect_imported_tests{.interpreted-text role="confval"} configuration option to false, which will make pytest collect classes/functions from test files only if they are defined in that file.

... (truncated)

Commits
  • 315b3ae Prepare release version 8.4.0
  • 1498ba3 Merge pull request #13467 from pytest-dev/towncrier-create
  • e4389ac Remove resultlog from the docs (#13465)
  • 64b2301 scripts/release: add missing build to towncrier call
  • 4c205cf testing/plugins_integration: update Django (#13463)
  • 4dcbcc9 Merge pull request #13458 from pytest-dev/dup-param-error
  • 5293016 Merge pull request #13459 from pytest-dev/pyright-minor-fixes
  • 7a48181 Add pyright configuration
  • 9fc6db9 pytester: avoid confusing x self parameter
  • 9aa198b mark/expression: fix self -> cls
  • Additional commits viewable in compare view

Updates redis from 6.1.0 to 6.2.0

Release notes

Sourced from redis's releases.

6.2.0

Changes

🚀 New Features

  • Add dynamic_startup_nodes parameter to async RedisCluster (#3646)
  • Support RESP3 with hiredis-py parser (#3648)
  • [Async] Support for transactions in async RedisCluster client (#3649)

🐛 Bug Fixes

  • Revert wrongly changed default value for check_hostname when instantiating RedisSSLContext (#3655)
  • Fixed potential deadlock from unexpected __del__ call (#3654)

🧰 Maintenance

  • Update search_json_examples.ipynb: Fix the old import indexDefinition -> index_definition (#3652)
  • Remove mandatory update of the CHANGES file for new PRs. Changes file will be kept for history for versions < 4.0.0 (#3645)
  • Dropping Python 3.8 support as it has reached end of life (#3657)
  • fix(doc): update Python print output in json doctests (#3658)
  • Update redis-entraid dependency (#3661)

We'd like to thank all the contributors who worked on this release! @​JCornat @​ShubhamKaudewar @​uglide @​petyaslavova @​vladvildanov

v6.1.1

Changes

🐛 Bug Fixes

  • Revert wrongly changed default value for check_hostname when instantiating RedisSSLContext (#3655)
  • Fixed potential deadlock from unexpected __del__ call (#3654)

We'd like to thank all the contributors who worked on this release! @​vladvildanov @​petyaslavova

Commits
  • 1a59471 Adding small change in code to trigger pipeline for the branch.
  • 83cf781 Adding small change in README to trigger pipeline for the branch.
  • f5cd264 maintenance: Preparation for release 6.2.0 - updating lib version. (#3662)
  • 793cdc6 maintenance: Update redis-entraid dependency (#3661)
  • 34c40ff fix(doc) : update Python print output in json doctests (#3658)
  • e5756da Dropping Python 3.8 support as it has reached end of life (#3657)
  • bc7de60 [Async] Support for transactions in async RedisCluster client (#3649)
  • e226ad2 Removing connection_pool field from the CommandProtocol definition (#3656)
  • 14a6fc3 fix: Fixed potential deadlock from unexpected del call (#3654)
  • 3ebfd5b fix: Revert wrongly changed default value for check_hostname when instantiati...
  • Additional commits viewable in compare view

Updates h5py from 3.13.0 to 3.14.0

Changelog

Sourced from h5py's changelog.

.. _release_guide:

Release Guide

Steps to make an h5py release:

  1. Have a look for any open issues or PRs which we might want to solve/merge before the release.

  2. Prepare a new branch, e.g. git switch -c prepare-3.14

  3. Prepare the release notes. The goal is to describe changes visible to users & repackagers of h5py in a form that doesn't assume 'internal' development knowledge. If something breaks, or behaviour changes unexpectedly, the release notes should let someone make a good guess which change is involved.

    • Check for recent merged PRs with no milestone <https://github.com/h5py/h5py/pulls?q=is%3Amerged+is%3Apr+no%3Amilestone>_, and assign them to the current release milestone. We can ignore PRs which only touch CI with no consequences for users.
    • Go to the milestone page. If there are open issues/PRs there, decide whether to include or defer them.
    • Assemble the release notes in docs/whatsnew based on the list of merged PRs. Commit the changes.
  4. Update the version number & commit the changes. The files that need changing are:

    • setup.py
    • h5py/version.py
    • docs/conf.py
  5. Push the branch, open a PR, wait for the CI. Check the RTD build for the newly added release notes (formatting & cross-links). Optionally, wait for other maintainers to check it as well.

  6. When everything looks good, merge the PR.

  7. Checkout the master branch, pull, make and push the tag, which will cause CI to build wheels & make a GitHub release::

    git switch master git pull git tag 3.14.0 # <-- change this git push --tags

  8. Prepare the sdist::

    git clean -xfdi python -m build --sdist

  9. Download the wheels: gh release download 3.14.0 -D dist/

  10. Upload to PyPI: twine upload dist/h5py-3.14.0* - this requires a token from PyPI, which must be supplied to twine <https://twine.readthedocs.io/en/stable/#configuration>_.

... (truncated)

Commits
  • 07a5511 Merge pull request #2591 from takluyver/prepare-3.14
  • a70e013 Add versionadded box for numpy strings support
  • 6186edf Version number -> 3.14.0
  • a9e2d46 Add release notes for 3.14
  • ab19424 Merge pull request #2585 from ArvidJB/fork_thread_phil
  • 60c5cd9 Merge pull request #2590 from neutrinoceros/tst/bump-windows-image
  • e3cc528 MNT: bump windows image on azure (2019 -> 2022)
  • a51de9f Time out tests on deadlock instead of hanging and leaving zombie processes be...
  • 7c14cd9 Merge pull request #2586 from takluyver/h5d-write-chunk
  • a92ab7c Address review comments
  • 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 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 requirements group with 3 updates in the / directory: [pytest](https://github.com/pytest-dev/pytest), [redis](https://github.com/redis/redis-py) and [h5py](https://github.com/h5py/h5py).


Updates `pytest` from 8.3.5 to 8.4.0
- [Release notes](https://github.com/pytest-dev/pytest/releases)
- [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst)
- [Commits](pytest-dev/pytest@8.3.5...8.4.0)

Updates `redis` from 6.1.0 to 6.2.0
- [Release notes](https://github.com/redis/redis-py/releases)
- [Changelog](https://github.com/redis/redis-py/blob/master/CHANGES)
- [Commits](redis/redis-py@v6.1.0...v6.2.0)

Updates `h5py` from 3.13.0 to 3.14.0
- [Release notes](https://github.com/h5py/h5py/releases)
- [Changelog](https://github.com/h5py/h5py/blob/master/docs/release_guide.rst)
- [Commits](h5py/h5py@3.13.0...3.14.0)

---
updated-dependencies:
- dependency-name: pytest
  dependency-version: 8.4.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: requirements
- dependency-name: redis
  dependency-version: 6.2.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: requirements
- dependency-name: h5py
  dependency-version: 3.14.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: requirements
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Jun 9, 2025
@dstansby dstansby merged commit dbf217e into support/v2 Jun 9, 2025
19 checks passed
@dependabot dependabot bot deleted the dependabot/pip/support/v2/requirements-e363a3714f branch June 9, 2025 09:38
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file python Pull requests that update Python code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant