From ec4f73e2ad9f981ebc9569b2dfbd0f7003b711ce Mon Sep 17 00:00:00 2001 From: cqc-melf <70640934+cqc-melf@users.noreply.github.com> Date: Fri, 4 Oct 2024 09:13:59 +0100 Subject: [PATCH] Release 0.9.0 (#161) # Description Please summarise the changes. # Related issues Please mention any github issues addressed by this PR. # Checklist - [ ] I have run the tests on a device with GPUs. - [ ] I have performed a self-review of my code. - [ ] I have commented hard-to-understand parts of my code. - [ ] I have made corresponding changes to the public API documentation. - [ ] I have added tests that prove my fix is effective or that my feature works. - [ ] I have updated the changelog with any user-facing changes. --- _metadata.py | 2 +- docs/changelog.rst | 7 +++++++ setup.py | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/_metadata.py b/_metadata.py index f793cf1c..6a49d386 100644 --- a/_metadata.py +++ b/_metadata.py @@ -1,2 +1,2 @@ -__extension_version__ = "0.8.0" +__extension_version__ = "0.9.0" __extension_name__ = "pytket-cutensornet" diff --git a/docs/changelog.rst b/docs/changelog.rst index 390be13a..a1fc3c73 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,6 +1,13 @@ +.. currentmodule:: pytket.extensions.cutensornet + Changelog ~~~~~~~~~ +0.9.0 (October 2024) +--------------------- + +* Updated pytket version requirement to 1.33. + 0.8.0 (September 2024) ---------------------- diff --git a/setup.py b/setup.py index 81641a5b..23e033b2 100644 --- a/setup.py +++ b/setup.py @@ -42,7 +42,7 @@ license="Apache 2", packages=find_namespace_packages(include=["pytket.*"]), include_package_data=True, - install_requires=["pytket >= 1.30.0", "networkx >= 2.8.8"], + install_requires=["pytket >= 1.33.0", "networkx >= 2.8.8"], classifiers=[ "Environment :: Console", "Programming Language :: Python :: 3.10",