Skip to content

Commit

Permalink
sunset the honeywell plugin (#71)
Browse files Browse the repository at this point in the history
* sunset the honeywell plugin

* fixes
  • Loading branch information
timmysilv committed Feb 23, 2024
1 parent ef1263b commit 9c7ac28
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 13 deletions.
14 changes: 4 additions & 10 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,21 +1,15 @@
# Release 0.35.0-dev

### New features since last release

### Improvements 🛠
# Release 0.34.1

### Breaking changes 💔

### Deprecations 👋

### Documentation 📝

### Bug fixes 🐛
* Pin the PennyLane version to <0.35

### Contributors ✍️

This release contains contributions from (in alphabetical order):

Matthew Silverman

---
# Release 0.34.0

Expand Down
5 changes: 5 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,11 @@ PennyLane-Honeywell Plugin
:alt: PyPI - Python Version
:target: https://pypi.org/project/PennyLane-honeywell

\

**❗ This plugin will not be supported in newer versions of PennyLane. It is compatible with versions
of PennyLane up to and including 0.34❗**

.. header-start-inclusion-marker-do-not-remove
The PennyLane-Honeywell plugin provides the ability to use Honeywell Quantum Solutions' ion-trap
Expand Down
5 changes: 5 additions & 0 deletions doc/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ PennyLane-Honeywell Plugin

:Release: |release|

.. warning::

This plugin will not be supported in newer versions of PennyLane. It is compatible with versions
of PennyLane up to and including 0.34.

.. include:: ../README.rst
:start-after: header-start-inclusion-marker-do-not-remove
:end-before: header-end-inclusion-marker-do-not-remove
Expand Down
2 changes: 1 addition & 1 deletion pennylane_honeywell/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@
Version number (major.minor.patch[-label])
"""

__version__ = "0.35.0-dev"
__version__ = "0.34.1"
1 change: 1 addition & 0 deletions pennylane_honeywell/device.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@ class HQSDevice(QubitDevice):
to the remote server when checking for completion of circuit
execution.
"""

# pylint: disable=too-many-instance-attributes
name = "Honeywell Quantum Solutions PennyLane plugin"
pennylane_requires = ">=0.30.0"
Expand Down
2 changes: 1 addition & 1 deletion requirements-ci.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pennylane>=0.30
pennylane>=0.30,<0.35
PyJWT
requests
toml
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.30", "requests", "pyjwt", "toml"]
requirements = ["pennylane>=0.30,<0.35", "requests", "pyjwt", "toml"]

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

0 comments on commit 9c7ac28

Please sign in to comment.