From b4548aa52b4120b071faf407a35d4706b75b3e5a Mon Sep 17 00:00:00 2001 From: cqc-melf <70640934+cqc-melf@users.noreply.github.com> Date: Fri, 4 Oct 2024 09:19:58 +0100 Subject: [PATCH] Release 0.57.0 (#396) * update changelog * update version * update pytket version --- _metadata.py | 2 +- docs/changelog.rst | 8 +++++--- setup.py | 2 +- 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/_metadata.py b/_metadata.py index 84191e26..dac53c21 100644 --- a/_metadata.py +++ b/_metadata.py @@ -1,2 +1,2 @@ -__extension_version__ = "0.56.0" +__extension_version__ = "0.57.0" __extension_name__ = "pytket-qiskit" diff --git a/docs/changelog.rst b/docs/changelog.rst index 8dc683ab..2fcbfdcf 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,10 +1,12 @@ +.. currentmodule:: pytket.extensions.qiskit + Changelog ~~~~~~~~~ -.. currentmodule:: pytket.extensions.qiskit +0.57.0 (October 2024) +--------------------- -Unreleased ----------- +* Updated pytket version requirement to 1.33. * Added handling of generalised controlled gates to :py:func:`qiskit_to_tk` and :py:func:`tk_to_qiskit`. The `control_state` is handled directly instead of using additional `X` gates. * A controlled :py:class:`UnitaryGate` will now be converted to a pytket controlled unitary box by :py:func:`qiskit_to_tk` instead of a controlled :py:class:`~pytket.circuit.CircBox` with a unitary box inside. diff --git a/setup.py b/setup.py index ab431aeb..a89daaf2 100644 --- a/setup.py +++ b/setup.py @@ -44,7 +44,7 @@ packages=find_namespace_packages(include=["pytket.*"]), include_package_data=True, install_requires=[ - "pytket >= 1.30.0", + "pytket >= 1.33.0", "qiskit >= 1.2.0", "qiskit-ibm-runtime >= 0.24.1", "qiskit-aer >= 0.14.2",