Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 10, 2025

Bumps the python-packages group with 6 updates in the / directory:

Package From To
pytket 2.9.3 2.10.2
pytket-qiskit 0.71.0 0.72.0
pytest 8.4.2 9.0.0
ipykernel 6.30.1 7.1.0
ipyparallel 9.0.1 9.0.2
furo 2025.7.19 2025.9.25

Updates pytket from 2.9.3 to 2.10.2

Release notes

Sourced from pytket's releases.

v2.10.2

What's Changed

Full Changelog: CQCL/tket@v2.10.1...v2.10.2

v2.10.1

What's Changed

Full Changelog: CQCL/tket@v2.10.0...v2.10.1

v2.10.0

What's Changed

Full Changelog: CQCL/tket@v2.9.3...v2.10.0

Commits

Updates pytket-qiskit from 0.71.0 to 0.72.0

Release notes

Sourced from pytket-qiskit's releases.

v0.72.0

What's Changed

New Contributors

Full Changelog: CQCL/pytket-qiskit@v0.71.0...v0.72.0

v0.71.1

What's Changed

New Contributors

Full Changelog: CQCL/pytket-qiskit@v0.71.0...v0.71.1

Changelog

Sourced from pytket-qiskit's changelog.

0.72.0 (October 2025)

  • Update minimum pytket version to 2.9.3.
  • Update minimum qiskit version to 2.2.0.
  • Update minimum qiskit-ibm-runtime version requirement to 0.42.0.

0.71.1 (September 2025)

  • Set qiskit version to 2.1.1.
  • Set qiskit-ibm-runtime version to 0.41.1
Commits

Updates pytest from 8.4.2 to 9.0.0

Release notes

Sourced from pytest's releases.

9.0.0

pytest 9.0.0 (2025-11-05)

New features

  • #1367: Support for subtests has been added.

    subtests <subtests> are an alternative to parametrization, useful in situations where the parametrization values are not all known at collection time.

    Example:

    def contains_docstring(p: Path) -> bool:
        """Return True if the given Python file contains a top-level docstring."""
        ...
    def test_py_files_contain_docstring(subtests: pytest.Subtests) -> None:
    for path in Path.cwd().glob("*.py"):
    with subtests.test(path=str(path)):
    assert contains_docstring(path)

    Each assert failure or error is caught by the context manager and reported individually, giving a clear picture of all files that are missing a docstring.

    In addition, unittest.TestCase.subTest is now also supported.

    This feature was originally implemented as a separate plugin in pytest-subtests, but since then has been merged into the core.

    [!NOTE] This feature is experimental and will likely evolve in future releases. By that we mean that we might change how subtests are reported on failure, but the functionality and how to use it are stable.

  • #13743: Added support for native TOML configuration files.

    While pytest, since version 6, supports configuration in pyproject.toml files under [tool.pytest.ini_options], it does so in an "INI compatibility mode", where all configuration values are treated as strings or list of strings. Now, pytest supports the native TOML data model.

    In pyproject.toml, the native TOML configuration is under the [tool.pytest] table.

    # pyproject.toml
    [tool.pytest]
    minversion = "9.0"
    addopts = ["-ra", "-q"]
    testpaths = [
        "tests",
        "integration",
    ]

... (truncated)

Commits
  • f4b0fd2 Prepare release version 9.0.0
  • 52d8e68 Merge pull request #13889 from bluetech/regendoc-restore
  • d6d3e4a doc: fixes for regendoc
  • 7cb3974 doc: restore missing "# content of pytest.toml" regendoc commands
  • 5ae9e47 build(deps): Bump django in /testing/plugins_integration (#13881)
  • adb3658 Merge pull request #13864 from bluetech/config-cleanups-2
  • a28c08e Merge pull request #13875 from bluetech/ci-tweaks
  • a250954 ci: split publish-to-pypi and push-tag jobs
  • ebc152f ci: update setup python's from 3.11 or 3.* to 3.13
  • dfd796f ci: move running update-plugin-list script to tox
  • Additional commits viewable in compare view

Updates ipykernel from 6.30.1 to 7.1.0

Release notes

Sourced from ipykernel's releases.

v7.1.0

7.1.0

IPykernel 7.1.0 fixes an issue where display outputs such as Matplotlib plots were not included when using %notebook magic to save sessions as .ipynb files (#1435). 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.

Output from threads is restored to the pre-6.29 behavior by default (route to latest cell, unless get_ipython().set_parent() is called explicitly from the thread. If it is called, output from that thread will continue to be routed to the same cell). This behavior is now opt-in, instead of unconditional (#1451).

This release also fixes bugs that were introduced into the 7.x branch relating to Matplotlib plots in separate windows not being displayed correctly (#1458), kernels launched in new threads failing asserts (#1455), and ContextVars persisting between cells (#1462). There is also a fix for keyboard interrupts on Windows (#1434).

(Full Changelog)

Enhancements made

Bugs fixed

Maintenance and upkeep improvements

Contributors to this release

(GitHub contributors page for this release)

@​Carreau | @​Darshan808 | @​dfalbel | @​ianthomas23 | @​krassowski | @​lumberbot-app | @​minrk | @​ptosco

v7.0.1

7.0.1

IPykernel 7.0.1 is a bug fix release to support CPython 3.14.

(Full Changelog)

Bugs fixed

... (truncated)

Changelog

Sourced from ipykernel's changelog.

7.1.0

IPykernel 7.1.0 fixes an issue where display outputs such as Matplotlib plots were not included when using %notebook magic to save sessions as .ipynb files (#1435). 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.

Output from threads is restored to the pre-6.29 behavior by default (route to latest cell, unless get_ipython().set_parent() is called explicitly from the thread. If it is called, output from that thread will continue to be routed to the same cell). This behavior is now opt-in, instead of unconditional (#1451).

This release also fixes bugs that were introduced into the 7.x branch relating to Matplotlib plots in separate windows not being displayed correctly (#1458), kernels launched in new threads failing asserts (#1455), and ContextVars persisting between cells (#1462). There is also a fix for keyboard interrupts on Windows (#1434).

(Full Changelog)

Enhancements made

Bugs fixed

Maintenance and upkeep improvements

Contributors to this release

(GitHub contributors page for this release)

@​Carreau | @​Darshan808 | @​dfalbel | @​ianthomas23 | @​krassowski | @​lumberbot-app | @​minrk | @​ptosco

7.0.1

IPykernel 7.0.1 is a bug fix release to support CPython 3.14.

(Full Changelog)

Bugs fixed

Maintenance and upkeep improvements

... (truncated)

Commits
  • 39eaf96 Publish 7.1.0
  • 6f61a68 test that matplotlib event loop integration is responsive (#1463)
  • 8446e02 Fix KeyboardInterrupt on Windows by manually resetting interrupt event (#1434)
  • dd1e094 update pre-commit and related (#1465)
  • 95f2451 fix ContextVar persistence across cells (#1462)
  • c56a7aa Fix matplotlib eventloops (#1458)
  • c7af34c Refer to kernel laucnhing thread instead of assuming the main thread (#1455)
  • 7193d14 Fix routing of background thread output when no parent is set explicitly (#1451)
  • b8f5dfc Store display outputs in history for %notebook magic (#1435)
  • 93f11db update tests for 3.14 (#1453)
  • Additional commits viewable in compare view

Updates ipyparallel from 9.0.1 to 9.0.2

Updates furo from 2025.7.19 to 2025.9.25

Changelog

Sourced from furo's changelog.

Changelog

2025.09.25 -- Gleaming Green

  • Change the dark mode code back to native.

2025.07.19 -- Frozen Flame

  • ✨ Switch to accessible-pygments themes
  • ✨ Prefetch the sidebar logos
  • ✨ Fix flickering header drop shadow on Safari
  • Add rel=edit attribute to "Edit this page" link/icon
  • Bump NodeJS and npm dependency versions
  • Bump Saas & Webpack major versions
  • Improve current page detection to be resilient to sticky elements above header
  • Modernise Sass and use @use + @forward
  • Remove top of code border-radius with captions
  • Remove "debug printf" for headerTop value
  • Use distinct images for light and dark mode in the documentation
  • Use the modern Saas Modules

2024.08.06 -- Energetic Eminence

  • ✨ Add support for Sphinx 8
  • ✨ Add smoother transitions between breakpoints
  • Increase specificity of table-wrapper selector
  • Avoid page breaks inside paragraphs

2024.07.18 -- Dull Denim

  • Improve how icons are handled and aligned.
  • Improve scroll event handler.
  • Hide the copybutton by default.
  • Fix source_view_link configuration handling.
  • Fix close tag on pencil icon.

2024.05.06 -- Cheerful Cerulean

  • ✨ Add new custom icons for auto mode, reflecting the currently active theme.

... (truncated)

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

… updates

Bumps the python-packages group with 6 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [pytket](https://github.com/CQCL/tket) | `2.9.3` | `2.10.2` |
| [pytket-qiskit](https://github.com/CQCL/pytket-qiskit) | `0.71.0` | `0.72.0` |
| [pytest](https://github.com/pytest-dev/pytest) | `8.4.2` | `9.0.0` |
| [ipykernel](https://github.com/ipython/ipykernel) | `6.30.1` | `7.1.0` |
| [ipyparallel](https://ipython.org) | `9.0.1` | `9.0.2` |
| [furo](https://github.com/pradyunsg/furo) | `2025.7.19` | `2025.9.25` |



Updates `pytket` from 2.9.3 to 2.10.2
- [Release notes](https://github.com/CQCL/tket/releases)
- [Commits](CQCL/tket@v2.9.3...v2.10.2)

Updates `pytket-qiskit` from 0.71.0 to 0.72.0
- [Release notes](https://github.com/CQCL/pytket-qiskit/releases)
- [Changelog](https://github.com/CQCL/pytket-qiskit/blob/main/docs/changelog.md)
- [Commits](CQCL/pytket-qiskit@v0.71.0...v0.72.0)

Updates `pytest` from 8.4.2 to 9.0.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.4.2...9.0.0)

Updates `ipykernel` from 6.30.1 to 7.1.0
- [Release notes](https://github.com/ipython/ipykernel/releases)
- [Changelog](https://github.com/ipython/ipykernel/blob/main/CHANGELOG.md)
- [Commits](ipython/ipykernel@v6.30.1...v7.1.0)

Updates `ipyparallel` from 9.0.1 to 9.0.2

Updates `furo` from 2025.7.19 to 2025.9.25
- [Release notes](https://github.com/pradyunsg/furo/releases)
- [Changelog](https://github.com/pradyunsg/furo/blob/main/docs/changelog.md)
- [Commits](pradyunsg/furo@2025.07.19...2025.09.25)

---
updated-dependencies:
- dependency-name: pytket
  dependency-version: 2.10.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-packages
- dependency-name: pytket-qiskit
  dependency-version: 0.72.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-packages
- dependency-name: pytest
  dependency-version: 9.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: python-packages
- dependency-name: ipykernel
  dependency-version: 7.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: python-packages
- dependency-name: ipyparallel
  dependency-version: 9.0.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-packages
- dependency-name: furo
  dependency-version: 2025.9.25
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-packages
...

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 Nov 10, 2025
@dependabot dependabot bot requested a review from CalMacCQ as a code owner November 10, 2025 04:18
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Nov 10, 2025
@CalMacCQ CalMacCQ merged commit 1ecd8ca into main Nov 10, 2025
2 checks passed
@CalMacCQ CalMacCQ deleted the dependabot/pip/python-packages-96bf7ffe61 branch November 10, 2025 10:04
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.

2 participants