Skip to content

Commit

Permalink
Pinning the qiskit dependency to version <1.3 to prevent wrong re…
Browse files Browse the repository at this point in the history
…sults. At present, `pennylane-qiskit` is incompatible with `qiskit 1.3`.
  • Loading branch information
PietropaoloFrisoni committed Dec 4, 2024
1 parent 02da9fe commit 329794c
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 4 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
# Release 0.39.1

### Other changes

* The `qiskit` dependency has been temporarily pinned to version `<1.3` to prevent wrong results.
At present, `pennylane-qiskit` is incompatible with `qiskit 1.3`.
[(#603)](https://github.com/PennyLaneAI/pennylane-qiskit/pull/603)
[(#604)](https://github.com/PennyLaneAI/pennylane-qiskit/pull/604)

### Contributors ✍️

This release contains contributions from (in alphabetical order):

Pietropaolo Frisoni

---
# Release 0.39.0

### Improvements 🛠
Expand Down
2 changes: 1 addition & 1 deletion pennylane_qiskit/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@
Version number (major.minor.patch[-label])
"""

__version__ = "0.39.0"
__version__ = "0.39.1"
2 changes: 1 addition & 1 deletion requirements-ci.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
pennylane>=0.38
qiskit
qiskit<1.3
qiskit-ibm-runtime<=0.29
numpy
sympy==1.12
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
pennylane>=0.32
qiskit
qiskit<1.3
qiskit-ibm-runtime<=0.29
numpy
sympy
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
long_description = fh.read()

requirements = [
"qiskit>=0.32",
"qiskit>=0.32,<1.3",
"qiskit-aer",
"qiskit-ibm-runtime<=0.29",
"qiskit-ibm-provider",
Expand Down

0 comments on commit 329794c

Please sign in to comment.