-
Notifications
You must be signed in to change notification settings - Fork 48
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
Fix typo in name of CliffordPushThroughMeasures pass #1532
Fix typo in name of CliffordPushThroughMeasures pass #1532
Conversation
This pull request has been automatically marked as stale. |
f9957f4
to
7229b96
Compare
Hi @isobelhooper , when you make any change to the tket source you have to bump the tket patch version number in |
Noticed this typo while testing some code that used sequences of compiler passes.
7229b96
to
97d5f62
Compare
Thank you for this - have now made those changes in the commit as well! |
Ah, looks like homebrew have removed clang-format 18 so the formatting check is failing. I'll fix this in a separate PR... |
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.
Version needs bumping again.
Description
This PR fixes a typo in the JSON
name
field for the CliffordPushThroughMeasures pass. The pass is correctly named in the Python bindings, but the typo shows up in the output of.to_dict()
for the generated compiler pass.This pass name isn't used in any tests (or output in the API docs, I think), so no test or docs changes are needed.
Checklist