From 8b85dfa00a6791501930c7b267375e1e48d43183 Mon Sep 17 00:00:00 2001 From: Mudit Pandey Date: Wed, 6 Nov 2024 09:32:13 -0500 Subject: [PATCH] Increase PL lower bound (#201) * Increase PL lower bound * Update changelog * Update changelog * Trigger CI --------- Co-authored-by: Alex Preciado --- CHANGELOG.md | 4 ++++ pennylane_cirq/cirq_device.py | 2 +- setup.py | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 332210f..b230568 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,11 +14,15 @@ * Removed support for Python 3.9 [(#200)](https://github.com/PennyLaneAI/pennylane-cirq/pull/200) +* Upgrade minimum supported version of PennyLane to 0.38.0. + [(#201)](https://github.com/PennyLaneAI/pennylane-cirq/pull/201) + ### Contributors ✍️ This release contains contributions from (in alphabetical order): Astral Cai, +Mudit Pandey, Alex Preciado --- diff --git a/pennylane_cirq/cirq_device.py b/pennylane_cirq/cirq_device.py index f70fa0d..64d32c0 100644 --- a/pennylane_cirq/cirq_device.py +++ b/pennylane_cirq/cirq_device.py @@ -69,7 +69,7 @@ class CirqDevice(QubitDevice, abc.ABC): """ name = "Cirq Abstract PennyLane plugin base class" - pennylane_requires = ">=0.29.0" + pennylane_requires = ">=0.38.0" version = __version__ author = "Xanadu Inc" _capabilities = { diff --git a/setup.py b/setup.py index 272a7ea..ec729d1 100644 --- a/setup.py +++ b/setup.py @@ -25,7 +25,7 @@ # Avoid pinning, and use minimum version numbers # only where required. -requirements = ["pennylane>=0.29.0", "cirq-core>=0.10", "cirq-pasqal>=0.10"] +requirements = ["pennylane>=0.38.0", "cirq-core>=0.10", "cirq-pasqal>=0.10"] info = { "name": "PennyLane-Cirq",