-
Notifications
You must be signed in to change notification settings - Fork 32
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
Deprecate decompose_gates #243
Conversation
Pull Request Test Coverage Report for Build 5256646377
💛 - Coveralls |
- skip tests that require pyscf if it is not available - add Windows workflow to Actions matrix - add Windows to README platform badge
This seems to address the root cause of #248. However, I'm not sure why this is necessary, since [the reno documentation](https://docs.openstack.org/reno/latest/user/usage.html#configuring-reno) states "If unset, all versions will be scanned."
Co-authored-by: Jim Garrison <[email protected]>
package_name="circuit-knitting-toolbox", | ||
removal_timeline="no earlier than v0.4.0", | ||
additional_msg=( | ||
"Instead, use ``circuit_knitting.cutting.cut_gates`` " |
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.
@garrison do we need back quotes here? Is this strictly a stdio printout, or is this used by sphinx?
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.
I only included double backquotes because that's what terra did in the opflow deprecation message. If it weren't for that, I probably would have used single backquotes, but nothing is required.
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.
I actually thought I wrote this out of habit, but thank you for your honesty hah :)
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.
Great - thank you.
Resolves #239
This PR deprecates
decompose_gates
in favor ofcut_gates
. This change is solely to remove ambiguity between Qiskit's notion of "decompose" and ours.