-
Notifications
You must be signed in to change notification settings - Fork 347
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
feat: Update quil to >=0.13.2 #1809
Conversation
Bencher Report
Click to view all benchmark results
|
☂️ Python Coverage
Overall Coverage
New FilesNo new covered files... Modified Files
|
|
||
@property # type: ignore[override] | ||
def parameters(self) -> Sequence[ParameterDesignator]: | ||
"""The parameters of the calibration.""" | ||
return _convert_to_py_expressions(super().parameters) | ||
return _convert_to_py_expressions(super().identifier.parameters) |
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.
For some reason I can't get the type stubs to agree, looks like rigetti/quil-rs#420 is resolved because the types are correct in https://github.com/rigetti/quil-rs/blob/main/quil-py/quil/instructions/__init__.pyi#L888-L897 but not when I install quil-rs==0.13.2
... but, this should be the same thing and gets the test passing.
Description
closes #1808