Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hotfix: Convert port crosstalk to dict in config #86

Merged
merged 3 commits into from
Nov 29, 2024
Merged
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 CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

### Fixed
- Change location of port feedforward and feedback filters in config
- Convert port crosstalk to dict in config, fixing deepcopy issues


## [0.3.7]
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "quam"
version = "0.3.7"
version = "0.3.8"
#dynamic = ["version"]
description = "Quantum Abstract Machine (QuAM) facilitates development of abstraction layers in experiments."
authors = [
Expand Down
2 changes: 1 addition & 1 deletion quam/components/ports/analog_outputs.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def get_port_properties(self):
"shareable": self.shareable,
}
if self.crosstalk is not None:
port_properties["crosstalk"] = self.crosstalk
port_properties["crosstalk"] = dict(self.crosstalk)
if self.feedforward_filter is not None:
port_properties.setdefault("filter", {})["feedforward"] = list(
self.feedforward_filter
Expand Down