Skip to content

Commit

Permalink
Increase PL lower bound (#201)
Browse files Browse the repository at this point in the history
* Increase PL lower bound

* Update changelog

* Update changelog

* Trigger CI

---------

Co-authored-by: Alex Preciado <alex.preciado@xanadu.ai>
  • Loading branch information
mudit2812 and Alex-Preciado authored Nov 6, 2024
1 parent 715f0c9 commit 8b85dfa
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

---
Expand Down
2 changes: 1 addition & 1 deletion pennylane_cirq/cirq_device.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 8b85dfa

Please sign in to comment.