From 8499fa788c777bad767182ef090be0cf7e54fad5 Mon Sep 17 00:00:00 2001 From: Alec Edgington <54802828+cqc-alec@users.noreply.github.com> Date: Tue, 28 Jan 2025 15:47:26 +0000 Subject: [PATCH] Allow versions of qiskit >= 1.3.1 but < 2. (#456) --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index b11fe07a..d02696d6 100644 --- a/setup.py +++ b/setup.py @@ -47,7 +47,7 @@ include_package_data=True, install_requires=[ "pytket >= 1.39.0", - "qiskit ~= 1.3.1", + "qiskit >= 1.3.1, < 2", "qiskit-ibm-runtime >= 0.30.0", "qiskit-aer >= 0.15.1", "numpy >= 1.26.4",