Skip to content
Snippets Groups Projects
Commit 7eef6761 authored by Stefano Di Frischia's avatar Stefano Di Frischia
Browse files

L2SS-1199: update version

parent e0e949a1
Branches
Tags 0.14.2
1 merge request!39Resolve L2SS-1199 "Station name in hdf5 header"
Pipeline #45158 passed
......@@ -105,6 +105,7 @@ tox -e debug tests.requests.test_prometheus
```
## Releasenotes
- 0.14.2 - Added `station_name` attribute to Hdf5 file header
- 0.14.1 - Added `beamlet.subband_select_RW` attribute to BSTHdf5Writer
- 0.14 - Added new attributes to statistics HDF file as well as documentation
- 0.13 - Added lazy connection behavior to `devices.LofarDeviceProxy` class
......
0.14.1
0.14.2
......@@ -11,6 +11,7 @@ import argparse
import logging
import sys
import time
from typing import Dict
from tango import DeviceProxy
......@@ -158,7 +159,7 @@ def _create_writer(
interval,
output_dir,
decimation,
devices: dict[str, DeviceProxy],
devices: Dict[str, DeviceProxy],
):
"""Create the writer"""
if mode == "XST":
......
......@@ -12,7 +12,7 @@ import os
from abc import ABC, abstractmethod
from datetime import datetime, timedelta
from itertools import chain
from typing import TypeVar, List
from typing import TypeVar, List, Dict
# python hdf5
import h5py
......@@ -135,7 +135,7 @@ class HDF5Writer(ABC):
file_location,
statistics_mode,
decimation_factor,
devices: dict[str, DeviceProxy],
devices: Dict[str, DeviceProxy],
):
# all variables that deal with the matrix that's currently being decoded
self.file: StatisticsDataFile = None
......@@ -523,7 +523,7 @@ class SstHdf5Writer(HDF5Writer):
new_file_time_interval,
file_location,
decimation_factor,
devices: dict[str, DeviceProxy],
devices: Dict[str, DeviceProxy],
):
super().__init__(
new_file_time_interval,
......@@ -565,7 +565,7 @@ class BstHdf5Writer(HDF5Writer):
new_file_time_interval,
file_location,
decimation_factor,
devices: dict[str, DeviceProxy],
devices: Dict[str, DeviceProxy],
):
super().__init__(
new_file_time_interval,
......@@ -597,7 +597,7 @@ class XstHdf5Writer(HDF5Writer):
new_file_time_interval,
file_location,
decimation_factor,
devices: dict[str, DeviceProxy],
devices: Dict[str, DeviceProxy],
subband_index,
):
super().__init__(
......@@ -655,7 +655,7 @@ class ParallelXstHdf5Writer:
new_file_time_interval,
file_location,
decimation_factor,
devices: dict[str, DeviceProxy],
devices: Dict[str, DeviceProxy],
):
# maintain a dedicated HDF5Writer per subband
self.writers = {}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment