-
Notifications
You must be signed in to change notification settings - Fork 118
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
deprecation: Remove OQC #1014
deprecation: Remove OQC #1014
Conversation
@@ -58,7 +58,7 @@ class _Xanadu(str, Enum): | |||
# DWave = _DWave | |||
IonQ = _IonQ | |||
IQM = _IQM | |||
OQC = _OQC | |||
# OQC = _OQC |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Intentionally commenting this instead of removing this from the Enums?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just doing the same thing we've done with D-Wave and Xanadu
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #1014 +/- ##
=========================================
Coverage 100.00% 100.00%
=========================================
Files 135 135
Lines 8951 8950 -1
Branches 2014 2014
=========================================
- Hits 8951 8950 -1 ☔ View full report in Codecov by Sentry. |
There are few more places to remove? |
@@ -77,7 +73,7 @@ def test_get_devices_others(): | |||
|
|||
def test_get_devices_all(braket_devices): | |||
result_arns = [result.arn for result in braket_devices] | |||
for arn in [RIGETTI_ARN, IONQ_ARN, SIMULATOR_ARN, OQC_ARN]: | |||
for arn in [RIGETTI_ARN, IONQ_ARN, SIMULATOR_ARN]: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why haven't we added IQM_ARN here as well?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sure, I'm fine with that
Issue #, if available:
Description of changes:
Testing done:
Merge Checklist
Put an
x
in the boxes that apply. You can also fill these out after creating the PR. If you're unsure about any of them, don't hesitate to ask. We're here to help! This is simply a reminder of what we are going to look for before merging your pull request.General
Tests
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.