Skip to content

Commit

Permalink
Update minimum supported PennyLane version to v0.38 (#75)
Browse files Browse the repository at this point in the history
* update min pl version

* tweaks

* Update CHANGELOG.md

Co-authored-by: Mudit Pandey <mudit.pandey@xanadu.ai>

* Update pennylane_aqt/device.py

Co-authored-by: Mudit Pandey <mudit.pandey@xanadu.ai>

* Update setup.py

Co-authored-by: Mudit Pandey <mudit.pandey@xanadu.ai>

* Trigger CI

* Sort changelog entries under breaking changes

* Minor: remove empty line

---------

Co-authored-by: Mudit Pandey <mudit.pandey@xanadu.ai>
Co-authored-by: Alex Preciado <alex.preciado@xanadu.ai>
  • Loading branch information
3 people authored Nov 6, 2024
1 parent 374fc7b commit 2106fe4
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
7 changes: 5 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,12 @@

### Breaking changes 💔

* Drops Python 3.9 support.
* Dropped support for Python 3.9.
[(#70)](https://github.com/PennyLaneAI/pennylane-aqt/pull/70)

* Upgraded minimum supported version of PennyLane to 0.38.0.
[(#75)](https://github.com/PennyLaneAI/pennylane-aqt/pull/75)

### Bug fixes 🐛

* Fix deprecated import path for `QubitDevice`.
Expand All @@ -14,8 +17,8 @@

This release contains contributions from (in alphabetical order):

Andrija Paurevic
Astral Cai
Andrija Paurevic

---
# Release 0.32.0
Expand Down
2 changes: 1 addition & 1 deletion pennylane_aqt/device.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ class AQTDevice(QubitDevice):

# pylint: disable=too-many-instance-attributes
name = "Alpine Quantum Technologies PennyLane plugin"
pennylane_requires = ">=0.15.0"
pennylane_requires = ">=0.38.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 @@ -24,7 +24,7 @@
# Requirements should be as minimal as possible.
# Avoid pinning, and use minimum version numbers
# only where required.
requirements = ["pennylane>=0.15", "requests"]
requirements = ["pennylane>=0.38", "requests"]

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

0 comments on commit 2106fe4

Please sign in to comment.