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 #80

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 @@ -10,12 +10,16 @@
* Remove support for Python 3.9.
[(#78)](https://github.com/PennyLaneAI/pennylane-qulacs/pull/78)

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

### Contributors ✍️

This release contains contributions from (in alphabetical order):

Astral Cai
Yushao Chen
Mudit Pandey

---
# Release 0.36.0
Expand Down
2 changes: 1 addition & 1 deletion pennylane_qulacs/qulacs_device.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ class QulacsDevice(QubitDevice):

name = "Qulacs device"
short_name = "qulacs.simulator"
pennylane_requires = ">=0.11.0"
pennylane_requires = ">=0.38.0"
version = __version__
author = "Steven Oud and Xanadu"
gpu_supported = GPU_SUPPORTED
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@


requirements = [
"pennylane>=0.15",
"pennylane>=0.38",
"numpy",
"scipy",
]
Expand Down
Loading