Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Increase PL lower bound #128

Merged
merged 3 commits into from
Nov 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading