Skip to content

Commit

Permalink
Merge pull request #86 from qua-platform/fix/crosstalk-dict
Browse files Browse the repository at this point in the history
Hotfix: Convert port crosstalk to dict in config
  • Loading branch information
nulinspiratie authored Nov 29, 2024
2 parents f269b0f + 119e144 commit 1d23970
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
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

0 comments on commit 1d23970

Please sign in to comment.