-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into parallel_sim
- Loading branch information
Showing
12 changed files
with
2,520 additions
and
118 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 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