From 8a5d6621f254ed12328216b303fc5bba126cceca Mon Sep 17 00:00:00 2001 From: Melf Date: Thu, 3 Oct 2024 17:53:38 +0100 Subject: [PATCH 1/4] update changelog --- docs/changelog.rst | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/changelog.rst b/docs/changelog.rst index 3fe8909..72ad594 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,6 +1,11 @@ Changelog ~~~~~~~~~ +0.38.0 (October 2024) +--------------------- + +* Updated pytket version requirement to 1.33. + 0.37.0 (August 2024) -------------------- From 297fd5142f9895739f3e05612e495f270662e2c5 Mon Sep 17 00:00:00 2001 From: Melf Date: Thu, 3 Oct 2024 18:00:39 +0100 Subject: [PATCH 2/4] add .. currentmodule:: pytket.extensions. to changelog --- docs/changelog.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/changelog.rst b/docs/changelog.rst index 72ad594..79f3b06 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,3 +1,5 @@ +.. currentmodule:: pytket.extensions.pyquil + Changelog ~~~~~~~~~ From 8167f326a0dc48933746a4343134ff20be2f12c3 Mon Sep 17 00:00:00 2001 From: Melf Date: Thu, 3 Oct 2024 18:06:20 +0100 Subject: [PATCH 3/4] update version --- _metadata.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_metadata.py b/_metadata.py index f7f4772..81ca154 100644 --- a/_metadata.py +++ b/_metadata.py @@ -1,2 +1,2 @@ -__extension_version__ = "0.37.0" +__extension_version__ = "0.38.0" __extension_name__ = "pytket-pyquil" From ff62f52ab0883474d35b41ad11af4f3a3ef7b597 Mon Sep 17 00:00:00 2001 From: Melf Date: Thu, 3 Oct 2024 18:09:47 +0100 Subject: [PATCH 4/4] update pytket version --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index e4cef21..ba2615d 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.31.0", + "pytket >= 1.33.0", "pyquil >= 4.13.0", "typing-extensions >= 4.12.2", ],