-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/main' into feat/gate-operations
- Loading branch information
Showing
10 changed files
with
124 additions
and
11 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,7 +26,7 @@ name = "my-quam" | |
version = "0.1.0" | ||
description = "User QuAM repository" | ||
authors = [{ name = "Jane Doe", email = "[email protected]" }] | ||
requires-python = ">=3.8" | ||
requires-python = ">=3.9" | ||
|
||
[build-system] | ||
requires = ["setuptools", "setuptools-scm"] | ||
|
@@ -102,7 +102,7 @@ child = Child(required_attr=12) # Note that we now need to explicitly pass keyw | |
``` | ||
|
||
The keyword `kw_only` was only introduced in Python 3.10, and so the example above would raise an error in Python <3.10. | ||
However, to ensure QuAM is compatible with Python 3.8 and above, we introduced `@quam_dataclass` which fixes this problem: | ||
However, to ensure QuAM is compatible with Python 3.9 and above, we introduced `@quam_dataclass` which fixes this problem: | ||
|
||
```python | ||
@quam_dataclass | ||
|
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 |
---|---|---|
|
@@ -11,7 +11,7 @@ authors = [ | |
{ name = "Serwan Asaad", email = "[email protected]" }, | ||
] | ||
license = { text = "BSD-3-Clause" } | ||
requires-python = ">=3.8" | ||
requires-python = ">=3.9" | ||
readme = "README.md" | ||
|
||
classifiers = [ | ||
|
@@ -40,7 +40,7 @@ dependencies = [ | |
] | ||
|
||
[project.urls] | ||
Homepage = "https://github.com/entropy-lab/quam" | ||
Homepage = "https://github.com/qua-platform/quam" | ||
|
||
[project.optional-dependencies] | ||
dev = [ | ||
|
@@ -56,7 +56,7 @@ docs = ["mkdocstrings[python]>=0.18", "mkdocs-gen-files", "mkdocs-jupyter"] | |
build = ["setuptools >= 71", "setuptools-scm >= 8.1.0", "build >= 1.2.1"] | ||
|
||
[tool.black] | ||
target-version = ["py38"] | ||
target-version = ["py39"] | ||
line-length = 88 | ||
preview = true | ||
|
||
|
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