shepherd-data 2024.8.2__tar.gz → 2024.9.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-2024.8.2 → shepherd_data-2024.9.1}/PKG-INFO +3 -2
- {shepherd_data-2024.8.2 → shepherd_data-2024.9.1}/pyproject.toml +2 -1
- {shepherd_data-2024.8.2 → shepherd_data-2024.9.1}/shepherd_data/__init__.py +1 -1
- {shepherd_data-2024.8.2 → shepherd_data-2024.9.1}/shepherd_data.egg-info/PKG-INFO +3 -2
- {shepherd_data-2024.8.2 → shepherd_data-2024.9.1}/shepherd_data.egg-info/requires.txt +1 -1
- {shepherd_data-2024.8.2 → shepherd_data-2024.9.1}/tests/test_examples.py +1 -1
- {shepherd_data-2024.8.2 → shepherd_data-2024.9.1}/tests/test_ivonne.py +1 -1
- {shepherd_data-2024.8.2 → shepherd_data-2024.9.1}/README.md +0 -0
- {shepherd_data-2024.8.2 → shepherd_data-2024.9.1}/setup.cfg +0 -0
- {shepherd_data-2024.8.2 → shepherd_data-2024.9.1}/shepherd_data/cli.py +0 -0
- {shepherd_data-2024.8.2 → shepherd_data-2024.9.1}/shepherd_data/ivonne.py +0 -0
- {shepherd_data-2024.8.2 → shepherd_data-2024.9.1}/shepherd_data/mppt.py +0 -0
- {shepherd_data-2024.8.2 → shepherd_data-2024.9.1}/shepherd_data/reader.py +0 -0
- {shepherd_data-2024.8.2 → shepherd_data-2024.9.1}/shepherd_data.egg-info/SOURCES.txt +0 -0
- {shepherd_data-2024.8.2 → shepherd_data-2024.9.1}/shepherd_data.egg-info/dependency_links.txt +0 -0
- {shepherd_data-2024.8.2 → shepherd_data-2024.9.1}/shepherd_data.egg-info/entry_points.txt +0 -0
- {shepherd_data-2024.8.2 → shepherd_data-2024.9.1}/shepherd_data.egg-info/top_level.txt +0 -0
- {shepherd_data-2024.8.2 → shepherd_data-2024.9.1}/shepherd_data.egg-info/zip-safe +0 -0
- {shepherd_data-2024.8.2 → shepherd_data-2024.9.1}/tests/test_cli.py +0 -0
- {shepherd_data-2024.8.2 → shepherd_data-2024.9.1}/tests/test_cli_downsample.py +0 -0
- {shepherd_data-2024.8.2 → shepherd_data-2024.9.1}/tests/test_cli_extract.py +0 -0
- {shepherd_data-2024.8.2 → shepherd_data-2024.9.1}/tests/test_cli_plot.py +0 -0
- {shepherd_data-2024.8.2 → shepherd_data-2024.9.1}/tests/test_cli_validate.py +0 -0
- {shepherd_data-2024.8.2 → shepherd_data-2024.9.1}/tests/test_reader.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: shepherd_data
|
|
3
|
-
Version: 2024.
|
|
3
|
+
Version: 2024.9.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>
|
|
@@ -23,6 +23,7 @@ Classifier: Programming Language :: Python :: 3.9
|
|
|
23
23
|
Classifier: Programming Language :: Python :: 3.10
|
|
24
24
|
Classifier: Programming Language :: Python :: 3.11
|
|
25
25
|
Classifier: Programming Language :: Python :: 3.12
|
|
26
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
26
27
|
Classifier: License :: OSI Approved :: MIT License
|
|
27
28
|
Classifier: Operating System :: OS Independent
|
|
28
29
|
Classifier: Natural Language :: English
|
|
@@ -35,7 +36,7 @@ Requires-Dist: numpy
|
|
|
35
36
|
Requires-Dist: pandas>=2.0.0
|
|
36
37
|
Requires-Dist: pyYAML
|
|
37
38
|
Requires-Dist: scipy
|
|
38
|
-
Requires-Dist: shepherd-core[inventory]>=2024.
|
|
39
|
+
Requires-Dist: shepherd-core[inventory]>=2024.9.1
|
|
39
40
|
Requires-Dist: tqdm
|
|
40
41
|
Provides-Extra: elf
|
|
41
42
|
Requires-Dist: shepherd-core[elf]; extra == "elf"
|
|
@@ -23,6 +23,7 @@ classifiers = [
|
|
|
23
23
|
"Programming Language :: Python :: 3.10",
|
|
24
24
|
"Programming Language :: Python :: 3.11",
|
|
25
25
|
"Programming Language :: Python :: 3.12",
|
|
26
|
+
"Programming Language :: Python :: 3.13",
|
|
26
27
|
"License :: OSI Approved :: MIT License",
|
|
27
28
|
"Operating System :: OS Independent",
|
|
28
29
|
"Natural Language :: English",
|
|
@@ -37,7 +38,7 @@ dependencies = [
|
|
|
37
38
|
"pandas>=2.0.0", # full-version, v2 is OK
|
|
38
39
|
"pyYAML",
|
|
39
40
|
"scipy", # full-version
|
|
40
|
-
"shepherd-core[inventory]>=2024.
|
|
41
|
+
"shepherd-core[inventory]>=2024.9.1", # libs are strongly coupled
|
|
41
42
|
"tqdm", # full-version
|
|
42
43
|
]
|
|
43
44
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: shepherd_data
|
|
3
|
-
Version: 2024.
|
|
3
|
+
Version: 2024.9.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>
|
|
@@ -23,6 +23,7 @@ Classifier: Programming Language :: Python :: 3.9
|
|
|
23
23
|
Classifier: Programming Language :: Python :: 3.10
|
|
24
24
|
Classifier: Programming Language :: Python :: 3.11
|
|
25
25
|
Classifier: Programming Language :: Python :: 3.12
|
|
26
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
26
27
|
Classifier: License :: OSI Approved :: MIT License
|
|
27
28
|
Classifier: Operating System :: OS Independent
|
|
28
29
|
Classifier: Natural Language :: English
|
|
@@ -35,7 +36,7 @@ Requires-Dist: numpy
|
|
|
35
36
|
Requires-Dist: pandas>=2.0.0
|
|
36
37
|
Requires-Dist: pyYAML
|
|
37
38
|
Requires-Dist: scipy
|
|
38
|
-
Requires-Dist: shepherd-core[inventory]>=2024.
|
|
39
|
+
Requires-Dist: shepherd-core[inventory]>=2024.9.1
|
|
39
40
|
Requires-Dist: tqdm
|
|
40
41
|
Provides-Extra: elf
|
|
41
42
|
Requires-Dist: shepherd-core[elf]; extra == "elf"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{shepherd_data-2024.8.2 → shepherd_data-2024.9.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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|