From 48475f520e7a13d75b67adcbdb766a9135e98b69 Mon Sep 17 00:00:00 2001 From: Alec Edgington <54802828+cqc-alec@users.noreply.github.com> Date: Tue, 28 Jan 2025 13:18:21 +0000 Subject: [PATCH] Constrain to pytket 1.x. (#187) When we release pytket 2.0 the `ClassicalExpBox` and `add_classicalexpbox_{bit,register}` will disappear. After that it should be a simple matter to update the requirement to ">= 2.0.0" and remove the handling of, and tests involving, `ClassicalExpBox` in this repo. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 79ed337..f3b8ef1 100644 --- a/setup.py +++ b/setup.py @@ -43,7 +43,7 @@ packages=find_namespace_packages(include=["pytket.*"]), include_package_data=True, install_requires=[ - "pytket >= 1.39.0", + "pytket >= 1.39.0, < 2", "networkx >= 2.8.8", ], classifiers=[