Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ dependencies = [
"qm-qua >=1.1.0",
"qualang-tools >= 0.15.0",
"typeguard >= 4.1.0",
"pydantic >= 2.10.5"
]

[project.urls]
Expand Down
2 changes: 1 addition & 1 deletion quam/core/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
# This will no longer be necessary once we drop support for Python 3.9
# We also do this at the end of quam_classes.py, but PyCharm also requires it here
_quam_dataclass = quam_dataclass
from dataclasses import dataclass as quam_dataclass
from pydantic.dataclasses import dataclass as quam_dataclass

exec("quam_dataclass = _quam_dataclass")