-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: include RNG extension in tket2-py, bump tket2-exts constraint (#781
) I forgot to edit `tket2-py/tket2/extensions/__init__.py` in #779 Need to bump version constraint for tket2-exts to be able to use it in guppy at CQCL/guppylang#806
- Loading branch information
Showing
2 changed files
with
19 additions
and
3 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,20 @@ | ||
from tket2_exts import rotation, futures, qsystem, qsystem_utils, quantum, result | ||
from tket2_exts import ( | ||
rotation, | ||
futures, | ||
qsystem, | ||
qsystem_random, | ||
qsystem_utils, | ||
quantum, | ||
result, | ||
) | ||
|
||
|
||
__all__ = ["rotation", "futures", "qsystem", "qsystem_utils", "quantum", "result"] | ||
__all__ = [ | ||
"rotation", | ||
"futures", | ||
"qsystem", | ||
"qsystem_random", | ||
"qsystem_utils", | ||
"quantum", | ||
"result", | ||
] |