Skip to content

Commit

Permalink
bump the required pl version
Browse files Browse the repository at this point in the history
  • Loading branch information
albi3ro committed Feb 28, 2023
1 parent e37d263 commit 2ae8c39
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,8 @@ Christina Lee
plugin's custom support because PennyLane supports them.
[(#115)](https://github.com/PennyLaneAI/pennylane-cirq/pull/115)

* Require PennyLane of at least v0.29.

### Improvements

* Pass all the qubits as `qubit_order` parameter to force
Expand All @@ -62,7 +64,7 @@ Christina Lee

This release contains contributions from (in alphabetical order):

Oumarou Oumarou, Matthew Silverman
Christina Lee, Oumarou Oumarou, Matthew Silverman

---
# Release 0.24.0
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 @@ -68,7 +68,7 @@ class CirqDevice(QubitDevice, abc.ABC):
"""

name = "Cirq Abstract PennyLane plugin base class"
pennylane_requires = ">=0.17.0"
pennylane_requires = ">=0.29.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 @ git+https://github.com/PennyLaneAI/pennylane.git", "cirq-core>=0.10", "cirq-pasqal>=0.10"]
requirements = ["pennylane>=0.29.0", "cirq-core>=0.10", "cirq-pasqal>=0.10"]

info = {
"name": "PennyLane-Cirq",
Expand Down

0 comments on commit 2ae8c39

Please sign in to comment.