From 8a3ba739a0d98efdc12b9cdc6255b6e730306cb7 Mon Sep 17 00:00:00 2001 From: Matteo Pompili <6500688+matpompili@users.noreply.github.com> Date: Mon, 6 May 2024 14:22:29 -0700 Subject: [PATCH 1/3] Remove call to logger, as it is not exported by qm.qua anymore. --- qualang_tools/control_panel/manual_output_control.py | 1 - 1 file changed, 1 deletion(-) diff --git a/qualang_tools/control_panel/manual_output_control.py b/qualang_tools/control_panel/manual_output_control.py index 2d408605..29d158a8 100644 --- a/qualang_tools/control_panel/manual_output_control.py +++ b/qualang_tools/control_panel/manual_output_control.py @@ -42,7 +42,6 @@ def __init__( :param array-like elements_to_control: A list of elements to be controlled. If empty, all elements in the config are included. """ - logger.setLevel("WARNING") self.qmm = QuantumMachinesManager(host=host, port=port) if close_previous: self.qmm.close_all_quantum_machines() From e91942c8baf3a07ccd9f8ecd0b5ee2f286483f4f Mon Sep 17 00:00:00 2001 From: Matteo Pompili <6500688+matpompili@users.noreply.github.com> Date: Mon, 6 May 2024 14:28:57 -0700 Subject: [PATCH 2/3] Update CHANGELOG --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 61dc448b..e3855d6a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) ## [Unreleased] - +- Fix init of ManualOutputControl (remove old logger call). ## [0.17.3] - 2024-05-06 ### Fixed - digital_filters - added `multi_exponential_decay` to `__init__` file. From 3a05acaa8a98b330ee79e2404a5ffed119ad39ed Mon Sep 17 00:00:00 2001 From: Dean Poulos Date: Tue, 7 May 2024 13:59:50 +1000 Subject: [PATCH 3/3] Update CHANGELOG.md --- CHANGELOG.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e3855d6a..8f97e92a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,9 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) ## [Unreleased] -- Fix init of ManualOutputControl (remove old logger call). +### Fixed +- control_panel - Fix init of ManualOutputControl (remove old logger call). + ## [0.17.3] - 2024-05-06 ### Fixed - digital_filters - added `multi_exponential_decay` to `__init__` file.