Skip to content

Commit

Permalink
Increase PL lower bound
Browse files Browse the repository at this point in the history
  • Loading branch information
mudit2812 committed Nov 5, 2024
1 parent 5d6a752 commit d8dd2b5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 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.
[(#)]()

### Improvements 🛠

* Enable multi-circuit submission.
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 d8dd2b5

Please sign in to comment.