From c69e9f2cd35639c5199f00d64240581228441aa3 Mon Sep 17 00:00:00 2001 From: Jim Garrison Date: Mon, 2 Dec 2024 19:27:51 -0800 Subject: [PATCH] Disallow Qiskit 1.3.0 (#715) * Disallow Qiskit 1.3.0 See discussion in #714. * Add release note (cherry picked from commit b41813dc8caa0e8ee9b8915c8013bed31c0a8e73) --- pyproject.toml | 2 +- releasenotes/notes/no-qiskit-1.3.0-8acc5be0edb2f43a.yaml | 8 ++++++++ 2 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 releasenotes/notes/no-qiskit-1.3.0-8acc5be0edb2f43a.yaml diff --git a/pyproject.toml b/pyproject.toml index afbb3187..4f972b1a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -32,7 +32,7 @@ dependencies = [ "scipy>=1.5.2", "rustworkx>=0.14.0", "qiskit-aer>=0.14.0.1", - "qiskit>=1.1.0, <2.0", + "qiskit>=1.1.0, !=1.3.0, <2.0", "qiskit-ibm-runtime>=0.24.0", ] diff --git a/releasenotes/notes/no-qiskit-1.3.0-8acc5be0edb2f43a.yaml b/releasenotes/notes/no-qiskit-1.3.0-8acc5be0edb2f43a.yaml new file mode 100644 index 00000000..685daf77 --- /dev/null +++ b/releasenotes/notes/no-qiskit-1.3.0-8acc5be0edb2f43a.yaml @@ -0,0 +1,8 @@ +--- +other: + - | + This addon is now marked as being incompatible with Qiskit 1.3.0, as the + second cutting tutorial fails to execute due to a bug in Qiskit 1.3.0. + See discussion in + `issue #714 `__ + for more information.