Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 1, 2025

Bumps the pip-dependencies group with 6 updates in the / directory:

Package From To
pytest-randomly 3.16.0 4.0.1
pytest-rerunfailures 15.1 16.0.1
docutils 0.21.2 0.22.3
ipykernel 6.29.5 6.31.0
jupyter-book 1.0.4.post1 2.0.2
nbsphinx 0.9.7 0.9.8

Updates pytest-randomly from 3.16.0 to 4.0.1

Changelog

Sourced from pytest-randomly's changelog.

4.0.1 (2025-09-12)

  • Remove the random state caching, which would grow without bound, leaking memory in long test runs. The caching was added to slightly speed up re-using the same (final) seed, but since the final seed is now different for each test, it has no effect.

    PR [#690](https://github.com/pytest-dev/pytest-randomly/issues/690) <https://github.com/pytest-dev/pytest-randomly/issues/687>__.

  • Modify Numpy seed restriction, replacing hashing with a modulo operation. The extra work to hash is unnecessary now that we generate a final seed per test with CRC32. This change saves ~500ns per test when Numpy is installed.

    PR [#691](https://github.com/pytest-dev/pytest-randomly/issues/691) <https://github.com/pytest-dev/pytest-randomly/issues/691>__.

4.0.0 (2025-09-10)

  • Support Python 3.14.

  • Use a different random seed per test, based on the test ID.

    This change should mean that tests exercise more random data values in a given run, and that any randomly-generated identifiers have a lower chance of collision when stored in a shared resource like a database.

    PR [#687](https://github.com/pytest-dev/pytest-randomly/issues/687) <https://github.com/pytest-dev/pytest-randomly/issues/687>. Thanks to Bryce Drennan for the suggestion in Issue [#600](https://github.com/pytest-dev/pytest-randomly/issues/600) <https://github.com/pytest-dev/pytest-randomly/issues/600> and initial implementation in PR [#617](https://github.com/pytest-dev/pytest-randomly/issues/617) <https://github.com/pytest-dev/pytest-randomly/pull/617>__.

  • Move from MD5 to CRC32 for hashing test IDs, as it’s 5x faster and we don’t need cryptographic security.

    Issue [#686](https://github.com/pytest-dev/pytest-randomly/issues/686) <https://github.com/pytest-dev/pytest-randomly/issues/686>__.

Commits

Updates pytest-rerunfailures from 15.1 to 16.0.1

Changelog

Sourced from pytest-rerunfailures's changelog.

16.0.1 (2025-09-02)

  • Reverted the ability to access error attributes because of an incompatibility with pytest-xdist <https://github.com/pytest-dev/pytest-xdist/issues/843>. Fixes [#302](https://github.com/pytest-dev/pytest-rerunfailures/issues/302) <https://github.com/pytest-dev/pytest-rerunfailures/issues/302>, [#303](https://github.com/pytest-dev/pytest-rerunfailures/issues/303) <https://github.com/pytest-dev/pytest-rerunfailures/issues/303>_.

16.0 (2025-08-29)

Breaking changes ++++++++++++++++

  • Drop support for pytest < 8.

Features ++++++++

  • Add support for pytest 8.4.x.

  • Add support for upcoming Python 3.14.

  • Allow @pytest.mark.flaky(condition) to accept a callable or a string to be evaluated. The evaluated string has access to the exception instance via the error object. ([#230](https://github.com/pytest-dev/pytest-rerunfailures/issues/230) <https://github.com/pytest-dev/pytest-rerunfailures/issues/230>_)

Commits

Updates docutils from 0.21.2 to 0.22.3

Commits

Updates ipykernel from 6.29.5 to 6.31.0

Release notes

Sourced from ipykernel's releases.

v6.31.0

6.31.0

IPykernel 6.31.0 fixes an issue where display outputs such as Matplotlib plots were not included when using %notebook magic to save sessions as .ipynb files. This is enabled using the traitlet ZMQDisplayPublisher.store_display_history which defaults to the previous behaviour of False. This is a minor release rather than a patch release due to the addition of the new traitlet.

(Full Changelog)

Enhancements made

Maintenance and upkeep improvements

Contributors to this release

(GitHub contributors page for this release)

@​bollwyvl | @​cclauss | @​Darshan808 | @​ianthomas23 | @​krassowski | @​lumberbot-app | @​meeseeksmachine | @​mgorny | @​minrk

v6.30.1

6.30.1

This is a bugfix release to fix a significant bug introduced in 6.30.0 that allowed control messages to be handled concurrently rather than sequentially which broke debugging in JupyterLab and VSCode.

(Full Changelog)

Bugs fixed

Maintenance and upkeep improvements

  • Backport: Remove links in changelog to github milestones that no longer exist #1417 (@​ianthomas23)

Contributors to this release

(GitHub contributors page for this release)

@​ianthomas23

v6.30.0

... (truncated)

Changelog

Sourced from ipykernel's changelog.

6.31.0

IPykernel 6.31.0 fixes an issue where display outputs such as Matplotlib plots were not included when using %notebook magic to save sessions as .ipynb files. This is enabled using the traitlet ZMQDisplayPublisher.store_display_history which defaults to the previous behaviour of False. This is a minor release rather than a patch release due to the addition of the new traitlet.

(Full Changelog)

Enhancements made

Maintenance and upkeep improvements

Contributors to this release

(GitHub contributors page for this release)

@​bollwyvl | @​cclauss | @​Darshan808 | @​ianthomas23 | @​krassowski | @​lumberbot-app | @​meeseeksmachine | @​mgorny | @​minrk

6.30.1

This is a bugfix release to fix a significant bug introduced in 6.30.0 that allowed control messages to be handled concurrently rather than sequentially which broke debugging in JupyterLab and VSCode.

(Full Changelog)

Bugs fixed

Maintenance and upkeep improvements

  • Backport: Remove links in changelog to github milestones that no longer exist #1417 (@​ianthomas23)

Contributors to this release

(GitHub contributors page for this release)

@​ianthomas23

6.30.0

This release fixes three bugs but is primarily a maintenance release bringing support for Python 3.13 and updating dependencies. It does not include subshells which will be in the upcoming 7.0.0 release. Users and downstream libraries that wish to avoid subshells should pin to ipykernel < 7.

(Full Changelog)

... (truncated)

Commits
  • 51272ac Publish 6.31.0
  • 01c1e8f Backport PR #1435: Store display outputs in history for %notebook magic (#1...
  • e792ab9 Backport PR #1453: update tests for 3.14 (#1460)
  • ddd77b7 Backport PR #1444 on branch 6.x (ci: Test on PyPy 3.11 instead of 3.10) (#1459)
  • 675abf4 6.x: Update PEP-639 license values in pyproject.toml (#1446)
  • d208be4 Backport PR 1411 to 6.x (#1421)
  • 81587cc Publish 6.30.1
  • 357c908 Correct use of asyncio.Lock to process a single control message at a time (#1...
  • f96df51 Backport: Remove links in changelog to github milestones that no longer exist...
  • 7f78f02 Publish 6.30.0
  • Additional commits viewable in compare view

Updates jupyter-book from 1.0.4.post1 to 2.0.2

Updates nbsphinx from 0.9.7 to 0.9.8

Release notes

Sourced from nbsphinx's releases.

nbsphinx 0.9.8

https://pypi.org/project/nbsphinx/0.9.8/

  • Re-enable Sphinx 8.2+
  • Support text/x-rst MIME type in raw cells
  • Support for mathjax4_config
Changelog

Sourced from nbsphinx's changelog.

Version 0.9.8 -- 2025-11-28 -- PyPI__ -- diff__

  • Re-enable Sphinx 8.2+
  • Support text/x-rst MIME type in raw cells
  • Support for mathjax4_config

__ https://pypi.org/project/nbsphinx/0.9.8/ __ spatialaudio/nbsphinx@0.9.7...0.9.8

Version 0.9.7 -- 2025-03-03 -- PyPI__ -- diff__

  • Disable Sphinx 8.2+ (for now)

__ https://pypi.org/project/nbsphinx/0.9.7/ __ spatialaudio/nbsphinx@0.9.6...0.9.7

Version 0.9.6 -- 2024-12-24 -- PyPI__ -- diff__

  • Markdown: allow lists without leading blank line

__ https://pypi.org/project/nbsphinx/0.9.6/ __ spatialaudio/nbsphinx@0.9.5...0.9.6

Version 0.9.5 -- 2024-08-13 -- PyPI__ -- diff__

  • Miscellaneous fixes

__ https://pypi.org/project/nbsphinx/0.9.5/ __ spatialaudio/nbsphinx@0.9.4...0.9.5

Version 0.9.4 -- 2024-05-06 -- PyPI__ -- diff__

  • Require docutils >= 0.18.1
  • Minor fixes, documentation and CI updates

__ https://pypi.org/project/nbsphinx/0.9.4/ __ spatialaudio/nbsphinx@0.9.3...0.9.4

Version 0.9.3 -- 2023-08-27 -- PyPI__ -- diff__

  • Fix gallery regression in Sphinx 7.2

__ https://pypi.org/project/nbsphinx/0.9.3/ __ spatialaudio/nbsphinx@0.9.2...0.9.3

Version 0.9.2 -- 2023-05-24 -- PyPI__ -- diff__

  • Improve support for sphinx_immaterial theme
  • Improve support for links starting with #
  • Add support for in-text citations
  • LaTeX: Add support for admonition titles

__ https://pypi.org/project/nbsphinx/0.9.2/ __ spatialaudio/nbsphinx@0.9.1...0.9.2

Version 0.9.1 -- 2023-03-14 -- PyPI__ -- diff__

  • pandoc: disable "smart" option only for version 2.0+

... (truncated)

Commits
  • 4f07420 Release 0.9.8
  • 75d6770 Avoid a logging error
  • dd96f11 DOC: Update URL for the <img> element
  • d97c011 Add support for mathjax4_config (#854)
  • 4882668 Fix nbsphinx_assume_equations to work with newer versions of Sphinx
  • 95372a7 CI: use "uv" for "publish" workflow
  • 9ce8c26 setup.py -> pyproject.toml
  • 394b9ee DOC: use anonymous hyperlinks for embedded URLs
  • ab85921 Bump actions/upload-artifact from 4 to 5
  • 76122c2 Bump actions/download-artifact from 4 to 6
  • 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

@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update python code labels Dec 1, 2025
@coderabbitai
Copy link
Contributor

coderabbitai bot commented Dec 1, 2025

Important

Review skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.


Comment @coderabbitai help to get the list of available commands and usage tips.

@dependabot dependabot bot force-pushed the dependabot/pip/pip-dependencies-f2a3d63ea4 branch from 7de6ea2 to 32e4ec7 Compare December 15, 2025 11:04
…ith 6 updates

Bumps the pip-dependencies group with 6 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [pytest-randomly](https://github.com/pytest-dev/pytest-randomly) | `3.16.0` | `4.0.1` |
| [pytest-rerunfailures](https://github.com/pytest-dev/pytest-rerunfailures) | `15.1` | `16.0.1` |
| [docutils](https://github.com/rtfd/recommonmark) | `0.21.2` | `0.22.3` |
| [ipykernel](https://github.com/ipython/ipykernel) | `6.29.5` | `6.31.0` |
| jupyter-book | `1.0.4.post1` | `2.0.2` |
| [nbsphinx](https://github.com/spatialaudio/nbsphinx) | `0.9.7` | `0.9.8` |



Updates `pytest-randomly` from 3.16.0 to 4.0.1
- [Changelog](https://github.com/pytest-dev/pytest-randomly/blob/main/CHANGELOG.rst)
- [Commits](pytest-dev/pytest-randomly@3.16.0...4.0.1)

Updates `pytest-rerunfailures` from 15.1 to 16.0.1
- [Changelog](https://github.com/pytest-dev/pytest-rerunfailures/blob/master/CHANGES.rst)
- [Commits](pytest-dev/pytest-rerunfailures@15.1...16.0.1)

Updates `docutils` from 0.21.2 to 0.22.3
- [Changelog](https://github.com/readthedocs/recommonmark/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rtfd/recommonmark/commits)

Updates `ipykernel` from 6.29.5 to 6.31.0
- [Release notes](https://github.com/ipython/ipykernel/releases)
- [Changelog](https://github.com/ipython/ipykernel/blob/v6.31.0/CHANGELOG.md)
- [Commits](ipython/ipykernel@v6.29.5...v6.31.0)

Updates `jupyter-book` from 1.0.4.post1 to 2.0.2

Updates `nbsphinx` from 0.9.7 to 0.9.8
- [Release notes](https://github.com/spatialaudio/nbsphinx/releases)
- [Changelog](https://github.com/spatialaudio/nbsphinx/blob/master/NEWS.rst)
- [Commits](spatialaudio/nbsphinx@0.9.7...0.9.8)

---
updated-dependencies:
- dependency-name: pytest-randomly
  dependency-version: 4.0.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: pip-dependencies
- dependency-name: pytest-rerunfailures
  dependency-version: 16.0.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: pip-dependencies
- dependency-name: docutils
  dependency-version: 0.22.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: pip-dependencies
- dependency-name: ipykernel
  dependency-version: 6.31.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: pip-dependencies
- dependency-name: jupyter-book
  dependency-version: 2.0.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: pip-dependencies
- dependency-name: nbsphinx
  dependency-version: 0.9.8
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: pip-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/pip/pip-dependencies-f2a3d63ea4 branch from 32e4ec7 to 03c8e13 Compare December 22, 2025 11:04
@sonarqubecloud
Copy link

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.

0 participants