diff --git a/.github/workflows/test_development_versions.yml b/.github/workflows/test_development_versions.yml index 41aa68e2..18c83110 100644 --- a/.github/workflows/test_development_versions.yml +++ b/.github/workflows/test_development_versions.yml @@ -45,4 +45,4 @@ jobs: run: | toxpyversion=$(echo ${{ matrix.python-version }} | sed -E 's/^([0-9]+)\.([0-9]+).*$/\1\2/') tox -epy${toxpyversion} -- --run-slow - tox -epy${toxpyversion}-notebook + tox -epy${toxpyversion}-notebook -- --ignore=docs/tutorials/02_gate_cutting_to_reduce_circuit_depth.ipynb diff --git a/pyproject.toml b/pyproject.toml index 11e006e2..b7db376a 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", ] @@ -55,7 +55,7 @@ nbtest = [ style = [ "autoflake==2.3.1", "black[jupyter]~=24.1", - "ruff==0.7.2", + "ruff==0.8.1", "nbqa>=1.6.0", ] lint = [ 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.