generated from CQCL/pytemplate
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Emit nested binary expressions for classical ops (#224)
* test: add test for issue 215 * docs: provide maintainer email ID Closes: #142 * chore: update deps * fix: generate nested multi-bit conditions for pecos support * test: remove dependency on pecos and more granular test * refactor: raise TypeError on passing less than min_args * refactor: use `min_args` in the error message Co-authored-by: Alec Edgington <[email protected]> --------- Co-authored-by: Alec Edgington <[email protected]>
- Loading branch information
Showing
4 changed files
with
56 additions
and
17 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,8 +8,11 @@ name = "pytket-phir" | |
description = "A circuit analyzer and translator from pytket to PHIR" | ||
readme = "README.md" | ||
requires-python = ">=3.10, <3.13" | ||
license = {file = "LICENSE"} | ||
authors = [{name = "Quantinuum"}] | ||
license = { file = "LICENSE" } | ||
authors = [{ name = "Quantinuum" }] | ||
maintainers = [ | ||
{ name = "Kartik Singhal", email = "[email protected]" }, | ||
] | ||
|
||
classifiers = [ | ||
"Environment :: Console", | ||
|
@@ -50,9 +53,7 @@ where = ["."] | |
|
||
[tool.pytest.ini_options] | ||
addopts = "-s -vv" | ||
pythonpath = [ | ||
"." | ||
] | ||
pythonpath = ["."] | ||
log_cli = true | ||
log_cli_level = "INFO" | ||
log_level = "DEBUG" | ||
|
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
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