Skip to content

Commit

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

* Update changelog

* Trigger CI

---------

Co-authored-by: Alex Preciado <[email protected]>
  • Loading branch information
mudit2812 and Alex-Preciado authored Nov 6, 2024
1 parent 5d6a752 commit 5e050bd
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 @@ -5,6 +5,9 @@
* Support for Python 3.9 has been removed, and support for 3.12 has been added.
[(#127)](https://github.com/PennyLaneAI/PennyLane-IonQ/pull/127)

* Upgrade minimum supported version of PennyLane to 0.38.0.
[(#128)]https://github.com/PennyLaneAI/PennyLane-IonQ/pull/128)

### Improvements 🛠

* Enable multi-circuit submission.
Expand All @@ -22,6 +25,7 @@ This release contains contributions from (in alphabetical order):
Astral Cai
Pietropaolo Frisoni
Radu Marginean
Mudit Pandey

---
# Release 0.36.0
Expand Down
2 changes: 1 addition & 1 deletion pennylane_ionq/device.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ class IonQDevice(QubitDevice):
# pylint: disable=too-many-instance-attributes
name = "IonQ PennyLane plugin"
short_name = "ionq"
pennylane_requires = ">=0.15.0"
pennylane_requires = ">=0.38.0"
version = __version__
author = "Xanadu Inc."

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
# Requirements should be as minimal as possible.
# Avoid pinning, and use minimum version numbers
# only where required.
requirements = ["pennylane>=0.15", "numpy", "python-dateutil", "requests"]
requirements = ["pennylane>=0.38", "numpy", "python-dateutil", "requests"]

info = {
# 'name' is the name that will be used by pip for installation
Expand Down

0 comments on commit 5e050bd

Please sign in to comment.