-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Use toml * bump python version * Add optional dependencies * Remove editable install * Correct toml formatting * Remove optinoal * Revet changes * Allow editable builds * Correct build system * Add authors * Add optional dependencies * Correct toml formatting * True -> true * Make optional deps optional * Use os matrix * Add runs-on * Correct MockQuantinuumBackend type annotaion --------- Co-authored-by: Daniel Mills <[email protected]>
- Loading branch information
1 parent
67044e5
commit 40d4946
Showing
14 changed files
with
2,523 additions
and
119 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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: pip | ||
directory: "/" # Location of package manifests | ||
schedule: | ||
interval: "daily" | ||
target-branch: "develop" |
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 was deleted.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,32 @@ | ||
[build-system] | ||
requires = ["poetry", "poetry-core>=1.0.8"] | ||
build-backend = "poetry.core.masonry.api" | ||
|
||
[tool.poetry] | ||
name = "qermit" | ||
version = "0.5.0" | ||
description = "Python package for quantum error mitigation." | ||
authors = [ | ||
"Daniel Mills <[email protected]>", | ||
"Silas Dilkes <[email protected]>", | ||
"Cristina Circsoiu <[email protected]>" | ||
] | ||
readme = "README.md" | ||
|
||
[tool.poetry.dependencies] | ||
python = ">=3.10, <3.13" | ||
pytket-qiskit = "^0.50.0" | ||
matplotlib = "^3.8.3" | ||
|
||
pytest = {version="^8.1.1", optional=true} | ||
mypy = {version="^1.9.0", optional=true} | ||
flake8 = {version="^7.0.0", optional=true} | ||
sphinx = {version="^7.2.6", optional=true} | ||
pytest-cov = {version="^4.1.0", optional=true} | ||
sphinx-book-theme = {version="^1.1.2", optional=true} | ||
qiskit-ibm-provider = {version="^0.10.0", optional=true} | ||
pytket-quantinuum = {version="^0.30.0", optional=true} | ||
|
||
[tool.poetry.extras] | ||
tests = ["pytest", "mypy", "flake8", "pytest-cov", "qiskit-ibm-provider", "pytket-quantinuum"] | ||
docs = ["sphinx", "sphinx-book-theme"] |
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 was deleted.
Oops, something went wrong.
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 was deleted.
Oops, something went wrong.
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