diff --git a/CHANGELOG.md b/CHANGELOG.md index f994e1d7..46d01c30 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,9 @@ * Remove support for Python 3.9. [(#597)](https://github.com/PennyLaneAI/pennylane-qiskit/pull/597) +* Upgrade minimum supported version of PennyLane to 0.38.0. + [(#599)](https://github.com/PennyLaneAI/pennylane-qiskit/pull/599) + ### Documentation 📝 * Added warning in the documentation of `qiskit_session` due to recent reports of unexpected behavior. @@ -27,6 +30,7 @@ This release contains contributions from (in alphabetical order): Astral Cai Lillian M. A. Frederiksen Austin Huang +Mudit Pandey --- diff --git a/pennylane_qiskit/qiskit_device_legacy.py b/pennylane_qiskit/qiskit_device_legacy.py index dc7c304f..11b72451 100644 --- a/pennylane_qiskit/qiskit_device_legacy.py +++ b/pennylane_qiskit/qiskit_device_legacy.py @@ -64,7 +64,7 @@ class QiskitDeviceLegacy(QubitDevice, abc.ABC): """ name = "Qiskit PennyLane plugin" - pennylane_requires = ">=0.30.0" + pennylane_requires = ">=0.38.0" version = __version__ plugin_version = __version__ author = "Xanadu"