-
Notifications
You must be signed in to change notification settings - Fork 615
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
Expand documentation for qml.from_qiskit()
(abandoned)
#5259
Conversation
Hello. You may have forgotten to update the changelog!
|
[sc-57149] |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## v0.35.0-rc0 #5259 +/- ##
==============================================
Coverage ? 99.65%
==============================================
Files ? 399
Lines ? 36601
Branches ? 0
==============================================
Hits ? 36473
Misses ? 128
Partials ? 0 ☔ View full report in Codecov by Sentry. |
**Must not be merged before the creation of the release candidate branch for 0.35.0** Updates PennyLane as we're entering a new development version (release of v0.35.0 coming up): - Create changelog-dev.md - Add changelog-dev.md to release-notes.md - Increments the version number to v0.36.0-dev ``` rc master | | | - (**THIS PR**)add changelog-dev.md, add changelog-dev reference to release_notes.md, bump version to 0.36.0-dev | / | / | / | / |/ - rename changelog-dev.md to changelog-0.35.0.md, change changelog-dev reference to changelog-0.35 reference in release_notes.md, move "current release" label from changelog-0.34 to changelog-0.35, change version from 0.35.0-dev to 0.25.0 | | ``` --------- Co-authored-by: Matthew Silverman <[email protected]>
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.
Thanks @lillian542 for starting this!
#5246) fix for #5245 [sc-57300] --------- Co-authored-by: Matthew Silverman <[email protected]>
**Context:** PRs on forks fail the docs CI when trying to upload freeze changes, so I'd like to just skip that part if the PR is from a fork. **Description of the Change:** Skip those steps if on a fork, as described [here](https://github.com/orgs/community/discussions/25217). **Benefits:** External contributor PRs won't fail unexpectedly **Possible Drawbacks:** N/A - it will run often enough by us internally that the docs freeze file will be kept up-to-date regardless **Related GitHub Issues:** - Example failure: https://github.com/PennyLaneAI/pennylane/actions/runs/8039250831/job/21956066233?pr=5256 - Confirmed it skips on forks: https://github.com/PennyLaneAI/pennylane/actions/runs/8071064111/job/22049837508?pr=5272
Automatic sync from the release candidate to master during a feature freeze. --------- Co-authored-by: Josh Izaac <[email protected]> Co-authored-by: Nathan Killoran <[email protected]> Co-authored-by: Matthew Silverman <[email protected]> Co-authored-by: Astral Cai <[email protected]> Co-authored-by: Mikhail Andrenkov <[email protected]> Co-authored-by: GitHub Actions Bot <> Co-authored-by: lillian542 <[email protected]>
Co-authored-by: Thomas R. Bromley <[email protected]>
qml.from_qiskit()
Thanks for the review, @trbromley! I've replied to your suggestions and made some additional changes. |
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.
Thanks @Mandrenkov! Approved once we resolve the remaining comments.
Any worries about 7d05c63? We could always create a new PR since the changes here are pretty localized, if we're worried about a polluted branch. |
Co-authored-by: Thomas R. Bromley <[email protected]>
Thanks for taking another look, @trbromley!
Yeah, it may be cleaner to just make a new branch and apply the changes by hand. I'll open up a new PR and link it here. |
qml.from_qiskit()
qml.from_qiskit()
(abandoned)
Closed in favour of #5279. |
**Context:** The documentation for `qml.from_qiskit()` is lacking in both breadth, depth, and examples. Note that this PR forks #5259 due to 7d05c63. **Description of the Change:** * Expanded the `qml.from_qiskit()` docstring. * Applied analagous style changes to the `qml.from_qiskit_op()` docstring. * Added a reference target `mid_circuit_measurements`. **Benefits:** * Users can use the `qml.from_qiskit()` function with more ease and confidence. **Possible Drawbacks:** None. **Related GitHub Issues:** None.
Add additional documentation and examples to the
qml.from_qiskit()
function.