diff --git a/qiskit/providers/honeywell/VERSION.txt b/qiskit/providers/honeywell/VERSION.txt index 0ea3a94..7dff5b8 100644 --- a/qiskit/providers/honeywell/VERSION.txt +++ b/qiskit/providers/honeywell/VERSION.txt @@ -1 +1 @@ -0.2.0 +0.2.1 \ No newline at end of file diff --git a/qiskit/providers/honeywell/__init__.py b/qiskit/providers/honeywell/__init__.py index fd1a83e..f4cdc70 100644 --- a/qiskit/providers/honeywell/__init__.py +++ b/qiskit/providers/honeywell/__init__.py @@ -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