-
Notifications
You must be signed in to change notification settings - Fork 5
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
docs: Fix API docs build #843
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #843 +/- ##
==========================================
- Coverage 93.06% 93.05% -0.02%
==========================================
Files 72 72
Lines 8579 8566 -13
==========================================
- Hits 7984 7971 -13
Misses 595 595 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
CalMacCQ
approved these changes
Mar 17, 2025
I think this should fix the sphinx build failure I was dealing with once merged. |
ss2165
approved these changes
Mar 18, 2025
github-merge-queue bot
pushed a commit
that referenced
this pull request
Mar 18, 2025
🤖 I have created a release *beep* *boop* --- ## [0.17.0](v0.16.0...v0.17.0) (2025-03-18) ### ⚠ BREAKING CHANGES * `load_pytket` takes arrays by default (pass `use_arrays=False` for qubit arguments) * `Option` is now a builtin type. * `angle.{__mul__, __rmul__, __truediv__, __rtruediv__` now take a `float` instead of an `int`. ### Features * add `get_current_shot()` to qsystem module ([#806](#806)) ([3632ec6](3632ec6)) * add `Option.unwrap_nothing()` method ([#829](#829)) ([abb1aa1](abb1aa1)), closes [#810](#810) * add barrier operation to builtins ([#849](#849)) ([cf0bcfb](cf0bcfb)) * Allow array arguments to `load_pytket` ([#858](#858)) ([37b8b80](37b8b80)) * Allow explicit application of type arguments ([#821](#821)) ([8f90c04](8f90c04)), closes [#770](#770) * Generalise scalar angle operations to float ([#824](#824)) ([d3f5c7f](d3f5c7f)) * Implement `float` to `int` and `nat` casts ([#831](#831)) ([b56d66c](b56d66c)), closes [#794](#794) * **qsystem:** add Random number generation module ([08fbf47](08fbf47)) * Switch to improved iterator protocol ([#833](#833)) ([348dfdc](348dfdc)) ### Bug Fixes * Correctly handle assignments of arrays in control-flow ([#845](#845)) ([32ded02](32ded02)), closes [#844](#844) * Define `len` of arrays using Guppy ([#863](#863)) ([6868ff6](6868ff6)), closes [#804](#804) * Fix array comprehensions with generic element type ([#865](#865)) ([50df0db](50df0db)), closes [#864](#864) * Fix compiler diagnostics when calling `check` instead of `compile` ([#854](#854)) ([9993338](9993338)) * Fix diagnostic spans for indented code ([#856](#856)) ([d9fc9fd](d9fc9fd)), closes [#852](#852) * Fix error message for conditional shadowing of global variables ([#815](#815)) ([bdaae11](bdaae11)), closes [#772](#772) * Fix linearity checking for array copies ([#841](#841)) ([d9b085f](d9b085f)), closes [#838](#838) * Fix mutation of nested arrays ([#839](#839)) ([ffb64f9](ffb64f9)) * Fix rendering of line breaks in diagnostics ([#819](#819)) ([75efd22](75efd22)), closes [#818](#818) * Prevent reordering of operations with side-effects ([#855](#855)) ([75eb441](75eb441)) ### Documentation * Fix API docs build ([#843](#843)) ([cc1e90c](cc1e90c)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). --------- Co-authored-by: Seyon Sivarajah <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Fixes #842
The docs build broke since
guppyland.std.option
now callsguppy.get_module
but this function was missing from theguppy
decorator mock