Skip to content

Commit

Permalink
Added warning for future package name change (#21)
Browse files Browse the repository at this point in the history
* Added warning for future package name change

* Removing trailing \ in multiline string
  • Loading branch information
chris-theroux authored Oct 13, 2022
1 parent 0b2e529 commit 90e0e4e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion qiskit/providers/honeywell/VERSION.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.2.0
0.2.1
7 changes: 7 additions & 0 deletions qiskit/providers/honeywell/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,18 @@

"""Backends provided by Honeywell."""

import warnings

from .version import __version__

from .honeywellprovider import HoneywellProvider
from .honeywellbackend import HoneywellBackend
from .honeywelljob import HoneywellJob

# Setting future warning for package name change
warnings.warn("This is the final release of qiskit-honeywell-provider. "
"It will be replaced by the qiskit-quantinuum-provider package in the future.",
FutureWarning)

# Global instance to be used as the entry point for convenience.
Honeywell = HoneywellProvider() # pylint: disable=invalid-name

0 comments on commit 90e0e4e

Please sign in to comment.