shepherd-data 2025.8.1__tar.gz → 2025.10.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {shepherd_data-2025.8.1 → shepherd_data-2025.10.1}/PKG-INFO +3 -2
- {shepherd_data-2025.8.1 → shepherd_data-2025.10.1}/pyproject.toml +2 -1
- {shepherd_data-2025.8.1 → shepherd_data-2025.10.1}/shepherd_data/__init__.py +1 -1
- {shepherd_data-2025.8.1 → shepherd_data-2025.10.1}/shepherd_data/cli.py +4 -4
- {shepherd_data-2025.8.1 → shepherd_data-2025.10.1}/shepherd_data/ivonne.py +1 -2
- {shepherd_data-2025.8.1 → shepherd_data-2025.10.1}/shepherd_data.egg-info/PKG-INFO +3 -2
- {shepherd_data-2025.8.1 → shepherd_data-2025.10.1}/shepherd_data.egg-info/requires.txt +1 -1
- {shepherd_data-2025.8.1 → shepherd_data-2025.10.1}/tests/test_cli.py +0 -1
- {shepherd_data-2025.8.1 → shepherd_data-2025.10.1}/tests/test_cli_downsample.py +0 -1
- {shepherd_data-2025.8.1 → shepherd_data-2025.10.1}/tests/test_cli_extract.py +0 -1
- {shepherd_data-2025.8.1 → shepherd_data-2025.10.1}/tests/test_cli_extract_gpio.py +0 -1
- {shepherd_data-2025.8.1 → shepherd_data-2025.10.1}/tests/test_cli_extract_meta.py +0 -1
- {shepherd_data-2025.8.1 → shepherd_data-2025.10.1}/tests/test_cli_extract_uart.py +0 -1
- {shepherd_data-2025.8.1 → shepherd_data-2025.10.1}/tests/test_cli_plot.py +0 -1
- {shepherd_data-2025.8.1 → shepherd_data-2025.10.1}/tests/test_cli_validate.py +0 -1
- {shepherd_data-2025.8.1 → shepherd_data-2025.10.1}/tests/test_cli_version.py +0 -1
- {shepherd_data-2025.8.1 → shepherd_data-2025.10.1}/README.md +0 -0
- {shepherd_data-2025.8.1 → shepherd_data-2025.10.1}/setup.cfg +0 -0
- {shepherd_data-2025.8.1 → shepherd_data-2025.10.1}/shepherd_data/mppt.py +0 -0
- {shepherd_data-2025.8.1 → shepherd_data-2025.10.1}/shepherd_data/reader.py +3 -3
- {shepherd_data-2025.8.1 → shepherd_data-2025.10.1}/shepherd_data.egg-info/SOURCES.txt +0 -0
- {shepherd_data-2025.8.1 → shepherd_data-2025.10.1}/shepherd_data.egg-info/dependency_links.txt +0 -0
- {shepherd_data-2025.8.1 → shepherd_data-2025.10.1}/shepherd_data.egg-info/entry_points.txt +0 -0
- {shepherd_data-2025.8.1 → shepherd_data-2025.10.1}/shepherd_data.egg-info/top_level.txt +0 -0
- {shepherd_data-2025.8.1 → shepherd_data-2025.10.1}/shepherd_data.egg-info/zip-safe +0 -0
- {shepherd_data-2025.8.1 → shepherd_data-2025.10.1}/tests/test_examples.py +0 -0
- {shepherd_data-2025.8.1 → shepherd_data-2025.10.1}/tests/test_ivonne.py +0 -0
- {shepherd_data-2025.8.1 → shepherd_data-2025.10.1}/tests/test_reader.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: shepherd_data
|
|
3
|
-
Version: 2025.
|
|
3
|
+
Version: 2025.10.1
|
|
4
4
|
Summary: Programming- and CLI-Interface for the h5-dataformat of the Shepherd-Testbed
|
|
5
5
|
Author-email: Ingmar Splitt <ingmar.splitt@tu-dresden.de>
|
|
6
6
|
Maintainer-email: Ingmar Splitt <ingmar.splitt@tu-dresden.de>
|
|
@@ -22,6 +22,7 @@ Classifier: Programming Language :: Python :: 3.10
|
|
|
22
22
|
Classifier: Programming Language :: Python :: 3.11
|
|
23
23
|
Classifier: Programming Language :: Python :: 3.12
|
|
24
24
|
Classifier: Programming Language :: Python :: 3.13
|
|
25
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
25
26
|
Classifier: License :: OSI Approved :: MIT License
|
|
26
27
|
Classifier: Operating System :: OS Independent
|
|
27
28
|
Classifier: Natural Language :: English
|
|
@@ -34,7 +35,7 @@ Requires-Dist: numpy
|
|
|
34
35
|
Requires-Dist: pandas>=2.0.0
|
|
35
36
|
Requires-Dist: pyYAML
|
|
36
37
|
Requires-Dist: scipy
|
|
37
|
-
Requires-Dist: shepherd-core[inventory]>=2025.
|
|
38
|
+
Requires-Dist: shepherd-core[inventory]>=2025.09.1
|
|
38
39
|
Requires-Dist: tqdm
|
|
39
40
|
Provides-Extra: elf
|
|
40
41
|
Requires-Dist: shepherd-core[elf]; extra == "elf"
|
|
@@ -22,6 +22,7 @@ classifiers = [
|
|
|
22
22
|
"Programming Language :: Python :: 3.11",
|
|
23
23
|
"Programming Language :: Python :: 3.12",
|
|
24
24
|
"Programming Language :: Python :: 3.13",
|
|
25
|
+
"Programming Language :: Python :: 3.14",
|
|
25
26
|
"License :: OSI Approved :: MIT License",
|
|
26
27
|
"Operating System :: OS Independent",
|
|
27
28
|
"Natural Language :: English",
|
|
@@ -36,7 +37,7 @@ dependencies = [
|
|
|
36
37
|
"pandas>=2.0.0", # full-version, v2 is OK
|
|
37
38
|
"pyYAML",
|
|
38
39
|
"scipy", # full-version
|
|
39
|
-
"shepherd-core[inventory]>=2025.
|
|
40
|
+
"shepherd-core[inventory]>=2025.09.1", # libs are strongly coupled
|
|
40
41
|
"tqdm", # full-version
|
|
41
42
|
]
|
|
42
43
|
|
|
@@ -7,10 +7,10 @@ from datetime import datetime
|
|
|
7
7
|
from pathlib import Path
|
|
8
8
|
|
|
9
9
|
import click
|
|
10
|
+
from shepherd_core.logger import set_log_verbose_level
|
|
10
11
|
|
|
11
12
|
from shepherd_core import get_verbose_level
|
|
12
13
|
from shepherd_core import local_tz
|
|
13
|
-
from shepherd_core.logger import set_log_verbose_level
|
|
14
14
|
|
|
15
15
|
from .reader import Reader
|
|
16
16
|
|
|
@@ -108,7 +108,7 @@ def validate(in_data: Path, *, recurse: bool = False) -> None:
|
|
|
108
108
|
"-e",
|
|
109
109
|
default=None,
|
|
110
110
|
type=click.FLOAT,
|
|
111
|
-
help="End-point in seconds, will be
|
|
111
|
+
help="End-point in seconds, will be maximum if omitted",
|
|
112
112
|
)
|
|
113
113
|
@click.option(
|
|
114
114
|
"--ds-factor",
|
|
@@ -345,7 +345,7 @@ def extract_gpio(in_data: Path, separator: str, *, recurse: bool = False) -> Non
|
|
|
345
345
|
"-e",
|
|
346
346
|
default=None,
|
|
347
347
|
type=click.FLOAT,
|
|
348
|
-
help="End-point in seconds, will be
|
|
348
|
+
help="End-point in seconds, will be maximum if omitted",
|
|
349
349
|
)
|
|
350
350
|
@click.option(
|
|
351
351
|
"--recurse",
|
|
@@ -397,7 +397,7 @@ def downsample(
|
|
|
397
397
|
"-e",
|
|
398
398
|
default=None,
|
|
399
399
|
type=click.FLOAT,
|
|
400
|
-
help="End-point in seconds, will be
|
|
400
|
+
help="End-point in seconds, will be maximum if omitted",
|
|
401
401
|
)
|
|
402
402
|
@click.option(
|
|
403
403
|
"--width",
|
|
@@ -19,11 +19,10 @@ from types import TracebackType
|
|
|
19
19
|
|
|
20
20
|
import numpy as np
|
|
21
21
|
import pandas as pd
|
|
22
|
+
from shepherd_core.writer import Writer as CoreWriter
|
|
22
23
|
from tqdm import trange
|
|
23
24
|
from typing_extensions import Self
|
|
24
25
|
|
|
25
|
-
from shepherd_core.writer import Writer as CoreWriter
|
|
26
|
-
|
|
27
26
|
from .mppt import MPPTracker
|
|
28
27
|
from .mppt import OptimalTracker
|
|
29
28
|
from .mppt import iv_model
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: shepherd_data
|
|
3
|
-
Version: 2025.
|
|
3
|
+
Version: 2025.10.1
|
|
4
4
|
Summary: Programming- and CLI-Interface for the h5-dataformat of the Shepherd-Testbed
|
|
5
5
|
Author-email: Ingmar Splitt <ingmar.splitt@tu-dresden.de>
|
|
6
6
|
Maintainer-email: Ingmar Splitt <ingmar.splitt@tu-dresden.de>
|
|
@@ -22,6 +22,7 @@ Classifier: Programming Language :: Python :: 3.10
|
|
|
22
22
|
Classifier: Programming Language :: Python :: 3.11
|
|
23
23
|
Classifier: Programming Language :: Python :: 3.12
|
|
24
24
|
Classifier: Programming Language :: Python :: 3.13
|
|
25
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
25
26
|
Classifier: License :: OSI Approved :: MIT License
|
|
26
27
|
Classifier: Operating System :: OS Independent
|
|
27
28
|
Classifier: Natural Language :: English
|
|
@@ -34,7 +35,7 @@ Requires-Dist: numpy
|
|
|
34
35
|
Requires-Dist: pandas>=2.0.0
|
|
35
36
|
Requires-Dist: pyYAML
|
|
36
37
|
Requires-Dist: scipy
|
|
37
|
-
Requires-Dist: shepherd-core[inventory]>=2025.
|
|
38
|
+
Requires-Dist: shepherd-core[inventory]>=2025.09.1
|
|
38
39
|
Requires-Dist: tqdm
|
|
39
40
|
Provides-Extra: elf
|
|
40
41
|
Requires-Dist: shepherd-core[elf]; extra == "elf"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -9,14 +9,14 @@ from pathlib import Path
|
|
|
9
9
|
import h5py
|
|
10
10
|
import numpy as np
|
|
11
11
|
from matplotlib import pyplot as plt
|
|
12
|
+
from shepherd_core.data_models import EnergyDType
|
|
13
|
+
from shepherd_core.logger import get_verbose_level
|
|
14
|
+
from shepherd_core.logger import log
|
|
12
15
|
from tqdm import trange
|
|
13
16
|
|
|
14
17
|
from shepherd_core import Reader as CoreReader
|
|
15
18
|
from shepherd_core import Writer as CoreWriter
|
|
16
19
|
from shepherd_core import local_tz
|
|
17
|
-
from shepherd_core.data_models import EnergyDType
|
|
18
|
-
from shepherd_core.logger import get_verbose_level
|
|
19
|
-
from shepherd_core.logger import log
|
|
20
20
|
|
|
21
21
|
# import samplerate # noqa: ERA001, TODO: just a test-fn for now
|
|
22
22
|
|
|
File without changes
|
{shepherd_data-2025.8.1 → shepherd_data-2025.10.1}/shepherd_data.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|