Skip to content
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

Bump the python-packages group across 1 directory with 6 updates #379

Merged
merged 10 commits into from
Sep 18, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 11, 2024

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

Package From To
pytket 1.31.0 1.32.0
pytket-qiskit 0.53.0 0.56.0
pytket-cirq 0.36.0 0.37.0
pytket-qujax 0.19.0 0.20.0
pytest 8.3.1 8.3.3
furo 2024.7.18 2024.8.6

Updates pytket from 1.31.0 to 1.32.0

Release notes

Sourced from pytket's releases.

v1.32.0

What's Changed

Full Changelog: CQCL/tket@v1.31.1...v1.32.0

v1.32.0rc0

What's Changed

Full Changelog: CQCL/tket@v1.31.1...v1.32.0rc0

v1.31.1

What's Changed

Full Changelog: CQCL/tket@v1.31.0...v1.31.1

Commits

Updates pytket-qiskit from 0.53.0 to 0.56.0

Release notes

Sourced from pytket-qiskit's releases.

v0.56.0

What's Changed

New Contributors

Full Changelog: CQCL/pytket-qiskit@v0.55.0...v0.56.0

v0.55.0

What's Changed

New Contributors

Full Changelog: CQCL/pytket-qiskit@v0.54.0...v0.55.0

v0.54.1

What's Changed

New Contributors

Full Changelog: CQCL/pytket-qiskit@v0.54.0...v0.54.1

v0.54.0

What's Changed

... (truncated)

Changelog

Sourced from pytket-qiskit's changelog.

0.56.0 (September 2024)

  • Added :py:class:AerDensityMatrixBackend simulator. This simulator has the option to support a :py:class:NoiseModel.
  • Fix conversion of symbols into qiskit.
  • Require qiskit >= 1.2.0.
  • Add conversion of controlled unitary gates from qiskit to tket.
  • Initialize TketAutoPass with a BackendV2.
  • Update TketBackend to derive from BackendV2.
  • Fix to allow AerBackend to work with multi-controlled Z gates.

0.55.0 (July 2024)

  • Updated pytket version requirement to 1.30.

0.54.1 (June 2024)

  • Relax version requirements on dependencies by removing upper bounds.
  • Fix status reporting when running on hardware.

0.54.0 (June 2024)

  • User can pass a SamplerOptions instance (from qiskit-ibm-runtime) via a keyword argument to both an IBMQBackend constructor and an instance method IBMQBackend.process_circuits.
  • Remove dependency on deprecated qiskit-ibm-provider.
  • Remove support for deprecated "ibmq_qasm_simulator" backend.
  • Forbid circuits with incomplete classical registers in tk_to_qiskit().
  • Updated pytket version requirement to 1.29.
  • Update qiskit-ibm-runtime version requirement to 0.24.1.
  • Update qiskit version requirement to 1.1.
  • Update qiskit-aer version requirement to 0.14.2.
  • When constructing an Aer backend with a name for which more than one is available, emit a warning and pick the first in the list.
Commits
  • 47520d8 Update version and changelog. (#390)
  • 59d733d fix: Allow circuits containing CnZ gates to run on AerBackend (#369)
  • 30855b1 Update TketBackend to derive from BackendV2 (#389)
  • dc2357d refactor: Simplify some internals of qiskit_to_tk conversion (#382)
  • 28450d3 Initialize TketAutoPass with a BackendV2 (#388)
  • 631b16d Use AutoRebase in tk_to_qiskit rather than RebaseCustom (#387)
  • 6742322 Remove some deprecation warnings (#385)
  • 368df3e feat: add density matrix simulation via qiskit Aer (#380)
  • 7038761 chore: use python 3.10+ types, cleanup docs (#383)
  • 6983597 Get rid of some deprecation warnings (#379)
  • Additional commits viewable in compare view

Updates pytket-cirq from 0.36.0 to 0.37.0

Release notes

Sourced from pytket-cirq's releases.

v0.37.0

What's Changed

Full Changelog: CQCL/pytket-cirq@v0.36.0...v0.37.0

Changelog

Sourced from pytket-cirq's changelog.

0.37.0 (July 2024)

  • Updated pytket version requirement to 1.30.
Commits

Updates pytket-qujax from 0.19.0 to 0.20.0

Release notes

Sourced from pytket-qujax's releases.

v0.20.0

What's Changed

Full Changelog: CQCL/pytket-qujax@v0.19.0...v0.20.0

Changelog

Sourced from pytket-qujax's changelog.

0.20.0 (July 2024)

  • Updated pytket version requirement to 1.30.
Commits

Updates pytest from 8.3.1 to 8.3.3

Release notes

Sourced from pytest's releases.

8.3.3

pytest 8.3.3 (2024-09-09)

Bug fixes

  • #12446: Avoid calling @property (and other instance descriptors) during fixture discovery -- by asottile{.interpreted-text role="user"}

  • #12659: Fixed the issue of not displaying assertion failure differences when using the parameter --import-mode=importlib in pytest>=8.1.

  • #12667: Fixed a regression where type change in [ExceptionInfo.errisinstance]{.title-ref} caused [mypy]{.title-ref} to fail.

  • #12744: Fixed typing compatibility with Python 3.9 or less -- replaced [typing.Self]{.title-ref} with [typing_extensions.Self]{.title-ref} -- by Avasam{.interpreted-text role="user"}

  • #12745: Fixed an issue with backslashes being incorrectly converted in nodeid paths on Windows, ensuring consistent path handling across environments.

  • #6682: Fixed bug where the verbosity levels where not being respected when printing the "msg" part of failed assertion (as in assert condition, msg).

  • #9422: Fix bug where disabling the terminal plugin via -p no:terminal would cause crashes related to missing the verbose option.

    -- by GTowers1{.interpreted-text role="user"}

Improved documentation

  • #12663: Clarify that the [pytest_deselected]{.title-ref} hook should be called from [pytest_collection_modifyitems]{.title-ref} hook implementations when items are deselected.
  • #12678: Remove erroneous quotes from [tmp_path_retention_policy]{.title-ref} example in docs.

Miscellaneous internal changes

  • #12769: Fix typos discovered by codespell and add codespell to pre-commit hooks.

8.3.2

pytest 8.3.2 (2024-07-24)

Bug fixes

  • #12652: Resolve regression [conda]{.title-ref} environments where no longer being automatically detected.

    -- by RonnyPfannschmidt{.interpreted-text role="user"}

Commits

Updates furo from 2024.7.18 to 2024.8.6

Changelog

Sourced from furo's changelog.

Changelog

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.
  • ✨ Add a view this page button.
  • ✨ Add colours and highlighting to "version modified" API helpers.
  • ✨ Add release information to various customisation knobs.
  • Make all icons bigger and use a thinner stroke with them.

2024.04.27 -- Bold Burgundy

  • Add a skip to content link.
  • Add --font-stack--headings.
  • Add :visited colour and enforce uniform contrast between light/dark.
  • Add an offset of :target to reduce back-to-top overlap.
  • Improve dark mode colours.
  • Fix outstanding colour contrast warnings on Firefox.
  • Fix bad indent in footnotes.
  • Tweak handling of default configuration options in a more resilient manner.
  • Tweak length and sizing of API source links.
  • Stop search engine indexing on search page.

2024.01.29 -- Amazing Amethyst

... (truncated)

Commits
  • 1bbf4ee Prepare release: 2024.08.06
  • bcb22c3 Update changelog
  • e633f02 Improve the selector for sidebar
  • d2fa2e0 [pre-commit.ci] pre-commit autoupdate (#821)
  • 05a2d63 Add smoother transitions between breakpoints
  • d261d3b [pre-commit.ci] pre-commit autoupdate (#810)
  • 2d3b6ba Add support for Sphinx 8
  • bf98041 Increase specificity of table-wrapper selector
  • fc6337c Fix the figures
  • fd3f422 Avoid page breaks inside paragraphs
  • 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 Sep 11, 2024
Bumps the python-packages group with 6 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [pytket](https://github.com/CQCL/tket) | `1.31.0` | `1.32.0` |
| [pytket-qiskit](https://github.com/CQCL/pytket-qiskit) | `0.53.0` | `0.56.0` |
| [pytket-cirq](https://github.com/CQCL/pytket-cirq) | `0.36.0` | `0.37.0` |
| [pytket-qujax](https://github.com/CQCL/pytket-qujax) | `0.19.0` | `0.20.0` |
| [pytest](https://github.com/pytest-dev/pytest) | `8.3.1` | `8.3.3` |
| [furo](https://github.com/pradyunsg/furo) | `2024.7.18` | `2024.8.6` |



Updates `pytket` from 1.31.0 to 1.32.0
- [Release notes](https://github.com/CQCL/tket/releases)
- [Commits](CQCL/tket@v1.31.0...v1.32.0)

Updates `pytket-qiskit` from 0.53.0 to 0.56.0
- [Release notes](https://github.com/CQCL/pytket-qiskit/releases)
- [Changelog](https://github.com/CQCL/pytket-qiskit/blob/main/docs/changelog.rst)
- [Commits](CQCL/pytket-qiskit@v0.53.0...v0.56.0)

Updates `pytket-cirq` from 0.36.0 to 0.37.0
- [Release notes](https://github.com/CQCL/pytket-cirq/releases)
- [Changelog](https://github.com/CQCL/pytket-cirq/blob/main/docs/changelog.rst)
- [Commits](CQCL/pytket-cirq@v0.36.0...v0.37.0)

Updates `pytket-qujax` from 0.19.0 to 0.20.0
- [Release notes](https://github.com/CQCL/pytket-qujax/releases)
- [Changelog](https://github.com/CQCL/pytket-qujax/blob/main/docs/changelog.rst)
- [Commits](CQCL/pytket-qujax@v0.19.0...v0.20.0)

Updates `pytest` from 8.3.1 to 8.3.3
- [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.1...8.3.3)

Updates `furo` from 2024.7.18 to 2024.8.6
- [Release notes](https://github.com/pradyunsg/furo/releases)
- [Changelog](https://github.com/pradyunsg/furo/blob/main/docs/changelog.md)
- [Commits](pradyunsg/furo@2024.07.18...2024.08.06)

---
updated-dependencies:
- dependency-name: pytket
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-packages
- dependency-name: pytket-qiskit
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-packages
- dependency-name: pytket-cirq
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-packages
- dependency-name: pytket-qujax
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-packages
- dependency-name: pytest
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-packages
- dependency-name: furo
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-packages
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/pip/python-packages-89d17e12d7 branch from 2ae70e8 to bafbd19 Compare September 13, 2024 06:35
@cqc-melf
Copy link
Collaborator

@dependabot recreate

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

| Package | From | To |
| --- | --- | --- |
| [pytket](https://github.com/CQCL/tket) | `1.31.0` | `1.32.0` |
| [pytket-qiskit](https://github.com/CQCL/pytket-qiskit) | `0.53.0` | `0.56.0` |
| [pytket-cirq](https://github.com/CQCL/pytket-cirq) | `0.36.0` | `0.37.0` |
| [pytket-qujax](https://github.com/CQCL/pytket-qujax) | `0.19.0` | `0.20.0` |
| [pytest](https://github.com/pytest-dev/pytest) | `8.3.1` | `8.3.3` |
| [furo](https://github.com/pradyunsg/furo) | `2024.7.18` | `2024.8.6` |



Updates `pytket` from 1.31.0 to 1.32.0
- [Release notes](https://github.com/CQCL/tket/releases)
- [Commits](CQCL/tket@v1.31.0...v1.32.0)

Updates `pytket-qiskit` from 0.53.0 to 0.56.0
- [Release notes](https://github.com/CQCL/pytket-qiskit/releases)
- [Changelog](https://github.com/CQCL/pytket-qiskit/blob/main/docs/changelog.rst)
- [Commits](CQCL/pytket-qiskit@v0.53.0...v0.56.0)

Updates `pytket-cirq` from 0.36.0 to 0.37.0
- [Release notes](https://github.com/CQCL/pytket-cirq/releases)
- [Changelog](https://github.com/CQCL/pytket-cirq/blob/main/docs/changelog.rst)
- [Commits](CQCL/pytket-cirq@v0.36.0...v0.37.0)

Updates `pytket-qujax` from 0.19.0 to 0.20.0
- [Release notes](https://github.com/CQCL/pytket-qujax/releases)
- [Changelog](https://github.com/CQCL/pytket-qujax/blob/main/docs/changelog.rst)
- [Commits](CQCL/pytket-qujax@v0.19.0...v0.20.0)

Updates `pytest` from 8.3.1 to 8.3.3
- [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.1...8.3.3)

Updates `furo` from 2024.7.18 to 2024.8.6
- [Release notes](https://github.com/pradyunsg/furo/releases)
- [Changelog](https://github.com/pradyunsg/furo/blob/main/docs/changelog.md)
- [Commits](pradyunsg/furo@2024.07.18...2024.08.06)

---
updated-dependencies:
- dependency-name: pytket
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-packages
- dependency-name: pytket-qiskit
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-packages
- dependency-name: pytket-cirq
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-packages
- dependency-name: pytket-qujax
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-packages
- dependency-name: pytest
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-packages
- dependency-name: furo
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-packages
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/pip/python-packages-89d17e12d7 branch from bafbd19 to e10ee1e Compare September 17, 2024 10:50
@cqc-melf
Copy link
Collaborator

I have added an issue for the not working sampler backend. See #383

@@ -588,6 +588,9 @@ Below we show how the {py:class}`~pytket.extensions.cirq.CirqStateSampleBackend`


```{code-cell} ipython3
---
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This cell currently gives a warning because of #383, it should be enabled again after the issues is solved.

@cqc-melf cqc-melf requested a review from CalMacCQ September 18, 2024 10:25
@cqc-melf cqc-melf merged commit 9337b0f into main Sep 18, 2024
1 check passed
@cqc-melf cqc-melf deleted the dependabot/pip/python-packages-89d17e12d7 branch September 18, 2024 10:32
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