Deprecate legacy provider interface#6337
Merged
Merged
Conversation
In the 0.16.0 release we added a new versioned providers interface that included a V1 version of the Backend, Job, and Provider classes. Since then we've updated and unified almost all of the providers that exist to use the current interface. Having everything use the new interface means that we're now able to both evolve the interface in a controlled manner uniformly and also deprecate the legacy interface to signal to any other providers out there (especially those we don't maintain) that we'll only be supporting the versioned interface moving forward.
ajavadia
approved these changes
Jun 8, 2021
ElePT
pushed a commit
to ElePT/qiskit-ibm-provider
that referenced
this pull request
Oct 9, 2023
* Deprecate legacy provider interface In the 0.16.0 release we added a new versioned providers interface that included a V1 version of the Backend, Job, and Provider classes. Since then we've updated and unified almost all of the providers that exist to use the current interface. Having everything use the new interface means that we're now able to both evolve the interface in a controlled manner uniformly and also deprecate the legacy interface to signal to any other providers out there (especially those we don't maintain) that we'll only be supporting the versioned interface moving forward. * Fix lint * Run black * Add deprecation warning assertion on legacy backends tests Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
In the 0.16.0 release we added a new versioned providers interface that
included a V1 version of the Backend, Job, and Provider classes. Since
then we've updated and unified almost all of the providers that exist to
use the current interface. Having everything use the new interface means
that we're now able to both evolve the interface in a controlled manner
uniformly and also deprecate the legacy interface to signal to any other
providers out there (especially those we don't maintain) that we'll only
be supporting the versioned interface moving forward.
Details and comments