From f5bf20172a72eebfb74580c6f0e5a39fd146f6d0 Mon Sep 17 00:00:00 2001 From: Simon Humpohl Date: Thu, 14 Mar 2024 15:51:24 +0100 Subject: [PATCH] Use local seqc and bump version --- .gitignore | 1 + qupulse_hdawg_legacy/__about__.py | 4 ++-- qupulse_hdawg_legacy/__init__.py | 2 +- qupulse_hdawg_legacy/zihdawg.py | 4 ++-- 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index bee8a64..ab64ff1 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ __pycache__ +/dist/** diff --git a/qupulse_hdawg_legacy/__about__.py b/qupulse_hdawg_legacy/__about__.py index e16ef9b..d58212b 100644 --- a/qupulse_hdawg_legacy/__about__.py +++ b/qupulse_hdawg_legacy/__about__.py @@ -1,4 +1,4 @@ # SPDX-FileCopyrightText: 2024-present Simon Humpohl # -# SPDX-License-Identifier: MIT -__version__ = "0.0.1" +# SPDX-License-Identifier: GPL-3.0 +__version__ = "0.1" diff --git a/qupulse_hdawg_legacy/__init__.py b/qupulse_hdawg_legacy/__init__.py index b259af2..9a8fa94 100644 --- a/qupulse_hdawg_legacy/__init__.py +++ b/qupulse_hdawg_legacy/__init__.py @@ -1,3 +1,3 @@ # SPDX-FileCopyrightText: 2024-present Simon Humpohl # -# SPDX-License-Identifier: MIT +# SPDX-License-Identifier: GPL-3.0 diff --git a/qupulse_hdawg_legacy/zihdawg.py b/qupulse_hdawg_legacy/zihdawg.py index 02bbf23..8e3b7e8 100644 --- a/qupulse_hdawg_legacy/zihdawg.py +++ b/qupulse_hdawg_legacy/zihdawg.py @@ -1,5 +1,4 @@ import numbers -from pathlib import Path import functools from typing import Tuple, Set, Callable, Optional, Mapping, Generator, Union, Sequence, Dict from enum import Enum @@ -28,9 +27,10 @@ import time +from qupulse_hdawg_legacy.seqc import HDAWGProgramManager, UserRegister, WaveformFileSystem + from qupulse.utils.types import ChannelID, TimeType, time_from_float from qupulse.program.loop import Loop, make_compatible -from qupulse._program.seqc import HDAWGProgramManager, UserRegister, WaveformFileSystem from qupulse.hardware.awgs.base import AWG, ChannelNotFoundException, AWGAmplitudeOffsetHandling from qupulse.hardware.util import traced