From 395fe128e30d0241f1d603a09e1571abab834d68 Mon Sep 17 00:00:00 2001 From: Alec Edgington <54802828+cqc-alec@users.noreply.github.com> Date: Mon, 12 Jun 2023 13:04:36 +0100 Subject: [PATCH 1/2] Correct Python versions in docs. (#32) --- docs/intro.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/intro.txt b/docs/intro.txt index 7029d4a..6c95a86 100644 --- a/docs/intro.txt +++ b/docs/intro.txt @@ -4,7 +4,7 @@ pytket-aqt ``pytket-aqt`` is an extension to ``pytket`` that allows ``pytket`` circuits to be executed on AQT's quantum devices and simulators. -``pytket-aqt`` is available for Python 3.8, 3.9 and 3.10, on Linux, MacOS and +``pytket-aqt`` is available for Python 3.10 and 3.11, on Linux, MacOS and Windows. To install, run: :: From 11b1fbcbd9fdb170b67d814f39b134edecab4687 Mon Sep 17 00:00:00 2001 From: Melf Date: Tue, 20 Jun 2023 16:40:47 +0100 Subject: [PATCH 2/2] update version, changelog and pytket version --- _metadata.py | 2 +- docs/changelog.rst | 5 +++++ setup.py | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/_metadata.py b/_metadata.py index 1d358fd..047863f 100644 --- a/_metadata.py +++ b/_metadata.py @@ -1,2 +1,2 @@ -__extension_version__ = "0.27.0" +__extension_version__ = "0.28.0" __extension_name__ = "pytket-aqt" diff --git a/docs/changelog.rst b/docs/changelog.rst index 0d11945..ce9202b 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,6 +1,11 @@ Changelog ~~~~~~~~~ +0.28.0 (June 2023) +------------------ + +* Updated pytket version requirement to 1.16. + 0.27.0 (May 2023) ----------------- diff --git a/setup.py b/setup.py index 815bff1..75cdeb4 100644 --- a/setup.py +++ b/setup.py @@ -42,7 +42,7 @@ packages=find_namespace_packages(include=["pytket.*"]), include_package_data=True, install_requires=[ - "pytket ~= 1.15", + "pytket ~= 1.16", "requests ~= 2.22", "types-requests", "pydantic ~= 1.10",