shepherd-data 2023.10.1__tar.gz → 2023.10.2__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-2023.10.1 → shepherd_data-2023.10.2}/PKG-INFO +3 -3
- {shepherd_data-2023.10.1 → shepherd_data-2023.10.2}/README.md +1 -1
- {shepherd_data-2023.10.1 → shepherd_data-2023.10.2}/setup.cfg +1 -1
- {shepherd_data-2023.10.1 → shepherd_data-2023.10.2}/shepherd_data/__init__.py +1 -1
- {shepherd_data-2023.10.1 → shepherd_data-2023.10.2}/shepherd_data/ivonne.py +4 -4
- {shepherd_data-2023.10.1 → shepherd_data-2023.10.2}/shepherd_data.egg-info/PKG-INFO +3 -3
- {shepherd_data-2023.10.1 → shepherd_data-2023.10.2}/shepherd_data.egg-info/requires.txt +1 -1
- {shepherd_data-2023.10.1 → shepherd_data-2023.10.2}/pyproject.toml +0 -0
- {shepherd_data-2023.10.1 → shepherd_data-2023.10.2}/shepherd_data/cli.py +0 -0
- {shepherd_data-2023.10.1 → shepherd_data-2023.10.2}/shepherd_data/debug_resampler.py +0 -0
- {shepherd_data-2023.10.1 → shepherd_data-2023.10.2}/shepherd_data/mppt.py +0 -0
- {shepherd_data-2023.10.1 → shepherd_data-2023.10.2}/shepherd_data/reader.py +0 -0
- {shepherd_data-2023.10.1 → shepherd_data-2023.10.2}/shepherd_data.egg-info/SOURCES.txt +0 -0
- {shepherd_data-2023.10.1 → shepherd_data-2023.10.2}/shepherd_data.egg-info/dependency_links.txt +0 -0
- {shepherd_data-2023.10.1 → shepherd_data-2023.10.2}/shepherd_data.egg-info/entry_points.txt +0 -0
- {shepherd_data-2023.10.1 → shepherd_data-2023.10.2}/shepherd_data.egg-info/top_level.txt +0 -0
- {shepherd_data-2023.10.1 → shepherd_data-2023.10.2}/shepherd_data.egg-info/zip-safe +0 -0
- {shepherd_data-2023.10.1 → shepherd_data-2023.10.2}/tests/__init__.py +0 -0
- {shepherd_data-2023.10.1 → shepherd_data-2023.10.2}/tests/conftest.py +0 -0
- {shepherd_data-2023.10.1 → shepherd_data-2023.10.2}/tests/test_cli.py +0 -0
- {shepherd_data-2023.10.1 → shepherd_data-2023.10.2}/tests/test_cli_downsample.py +0 -0
- {shepherd_data-2023.10.1 → shepherd_data-2023.10.2}/tests/test_cli_extract.py +0 -0
- {shepherd_data-2023.10.1 → shepherd_data-2023.10.2}/tests/test_cli_plot.py +0 -0
- {shepherd_data-2023.10.1 → shepherd_data-2023.10.2}/tests/test_cli_validate.py +0 -0
- {shepherd_data-2023.10.1 → shepherd_data-2023.10.2}/tests/test_examples.py +0 -0
- {shepherd_data-2023.10.1 → shepherd_data-2023.10.2}/tests/test_ivonne.py +0 -0
- {shepherd_data-2023.10.1 → shepherd_data-2023.10.2}/tests/test_reader.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: shepherd_data
|
|
3
|
-
Version: 2023.10.
|
|
3
|
+
Version: 2023.10.2
|
|
4
4
|
Summary: Programming- and CLI-Interface for the h5-dataformat of the Shepherd-Testbed
|
|
5
5
|
Home-page: https://pypi.org/project/shepherd-data/
|
|
6
6
|
Author: Ingmar Splitt, Kai Geissdoerfer
|
|
@@ -33,7 +33,7 @@ Description-Content-Type: text/markdown
|
|
|
33
33
|
Requires-Dist: h5py
|
|
34
34
|
Requires-Dist: numpy
|
|
35
35
|
Requires-Dist: pyYAML
|
|
36
|
-
Requires-Dist: shepherd-core[inventory]>=2023.10.
|
|
36
|
+
Requires-Dist: shepherd-core[inventory]>=2023.10.2
|
|
37
37
|
Requires-Dist: click
|
|
38
38
|
Requires-Dist: matplotlib
|
|
39
39
|
Requires-Dist: pandas
|
|
@@ -52,7 +52,7 @@ Requires-Dist: pytest-click; extra == "test"
|
|
|
52
52
|
|
|
53
53
|
[](https://pypi.org/project/shepherd_data)
|
|
54
54
|
[](https://pypi.python.org/pypi/shepherd-data)
|
|
55
|
-
[](https://github.com/orgua/shepherd-datalib/actions/workflows/py_unittest.yml)
|
|
56
56
|
[](https://github.com/psf/black)
|
|
57
57
|
|
|
58
58
|
**Documentation**: <https://orgua.github.io/shepherd/external/shepherd_data.html>
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://pypi.org/project/shepherd_data)
|
|
4
4
|
[](https://pypi.python.org/pypi/shepherd-data)
|
|
5
|
-
[](https://github.com/orgua/shepherd-datalib/actions/workflows/py_unittest.yml)
|
|
6
6
|
[](https://github.com/psf/black)
|
|
7
7
|
|
|
8
8
|
**Documentation**: <https://orgua.github.io/shepherd/external/shepherd_data.html>
|
|
@@ -6,7 +6,7 @@ import errno
|
|
|
6
6
|
import logging
|
|
7
7
|
import math
|
|
8
8
|
import os
|
|
9
|
-
import pickle
|
|
9
|
+
import pickle
|
|
10
10
|
from pathlib import Path
|
|
11
11
|
from types import TracebackType
|
|
12
12
|
from typing import Optional
|
|
@@ -83,9 +83,9 @@ class Reader:
|
|
|
83
83
|
|
|
84
84
|
def __exit__(
|
|
85
85
|
self,
|
|
86
|
-
typ: Optional[Type[BaseException]],
|
|
87
|
-
exc: Optional[BaseException],
|
|
88
|
-
tb: Optional[TracebackType],
|
|
86
|
+
typ: Optional[Type[BaseException]] = None,
|
|
87
|
+
exc: Optional[BaseException] = None,
|
|
88
|
+
tb: Optional[TracebackType] = None,
|
|
89
89
|
extra_arg: int = 0,
|
|
90
90
|
) -> None:
|
|
91
91
|
pass
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: shepherd-data
|
|
3
|
-
Version: 2023.10.
|
|
3
|
+
Version: 2023.10.2
|
|
4
4
|
Summary: Programming- and CLI-Interface for the h5-dataformat of the Shepherd-Testbed
|
|
5
5
|
Home-page: https://pypi.org/project/shepherd-data/
|
|
6
6
|
Author: Ingmar Splitt, Kai Geissdoerfer
|
|
@@ -33,7 +33,7 @@ Description-Content-Type: text/markdown
|
|
|
33
33
|
Requires-Dist: h5py
|
|
34
34
|
Requires-Dist: numpy
|
|
35
35
|
Requires-Dist: pyYAML
|
|
36
|
-
Requires-Dist: shepherd-core[inventory]>=2023.10.
|
|
36
|
+
Requires-Dist: shepherd-core[inventory]>=2023.10.2
|
|
37
37
|
Requires-Dist: click
|
|
38
38
|
Requires-Dist: matplotlib
|
|
39
39
|
Requires-Dist: pandas
|
|
@@ -52,7 +52,7 @@ Requires-Dist: pytest-click; extra == "test"
|
|
|
52
52
|
|
|
53
53
|
[](https://pypi.org/project/shepherd_data)
|
|
54
54
|
[](https://pypi.python.org/pypi/shepherd-data)
|
|
55
|
-
[](https://github.com/orgua/shepherd-datalib/actions/workflows/py_unittest.yml)
|
|
56
56
|
[](https://github.com/psf/black)
|
|
57
57
|
|
|
58
58
|
**Documentation**: <https://orgua.github.io/shepherd/external/shepherd_data.html>
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{shepherd_data-2023.10.1 → shepherd_data-2023.10.2}/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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|