seabirdfilehandler 0.7.5__tar.gz → 0.7.6__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.
Potentially problematic release.
This version of seabirdfilehandler might be problematic. Click here for more details.
- {seabirdfilehandler-0.7.5 → seabirdfilehandler-0.7.6}/PKG-INFO +1 -1
- {seabirdfilehandler-0.7.5 → seabirdfilehandler-0.7.6}/pyproject.toml +1 -1
- {seabirdfilehandler-0.7.5 → seabirdfilehandler-0.7.6}/src/seabirdfilehandler/file_collection.py +7 -4
- {seabirdfilehandler-0.7.5 → seabirdfilehandler-0.7.6}/LICENSE +0 -0
- {seabirdfilehandler-0.7.5 → seabirdfilehandler-0.7.6}/README.md +0 -0
- {seabirdfilehandler-0.7.5 → seabirdfilehandler-0.7.6}/src/seabirdfilehandler/__init__.py +0 -0
- {seabirdfilehandler-0.7.5 → seabirdfilehandler-0.7.6}/src/seabirdfilehandler/bottlefile.py +0 -0
- {seabirdfilehandler-0.7.5 → seabirdfilehandler-0.7.6}/src/seabirdfilehandler/bottlelogfile.py +0 -0
- {seabirdfilehandler-0.7.5 → seabirdfilehandler-0.7.6}/src/seabirdfilehandler/cnvfile.py +0 -0
- {seabirdfilehandler-0.7.5 → seabirdfilehandler-0.7.6}/src/seabirdfilehandler/datafiles.py +0 -0
- {seabirdfilehandler-0.7.5 → seabirdfilehandler-0.7.6}/src/seabirdfilehandler/geomar_ctd_file_parser.py +0 -0
- {seabirdfilehandler-0.7.5 → seabirdfilehandler-0.7.6}/src/seabirdfilehandler/hexfile.py +0 -0
- {seabirdfilehandler-0.7.5 → seabirdfilehandler-0.7.6}/src/seabirdfilehandler/parameter.py +0 -0
- {seabirdfilehandler-0.7.5 → seabirdfilehandler-0.7.6}/src/seabirdfilehandler/processing_steps.py +0 -0
- {seabirdfilehandler-0.7.5 → seabirdfilehandler-0.7.6}/src/seabirdfilehandler/utils.py +0 -0
- {seabirdfilehandler-0.7.5 → seabirdfilehandler-0.7.6}/src/seabirdfilehandler/xmlfiles.py +0 -0
|
@@ -20,7 +20,7 @@ urls.homepage = "https://ctd-software.pages.io-warnemuende.de/seabirdfilehandler
|
|
|
20
20
|
urls.repository = "https://git.io-warnemuende.de/CTD-Software/SeabirdFileHandler"
|
|
21
21
|
urls.documentation = "https://ctd-software.pages.io-warnemuende.de/seabirdfilehandler"
|
|
22
22
|
dynamic = []
|
|
23
|
-
version = "0.7.
|
|
23
|
+
version = "0.7.6"
|
|
24
24
|
|
|
25
25
|
[tool.poetry]
|
|
26
26
|
|
{seabirdfilehandler-0.7.5 → seabirdfilehandler-0.7.6}/src/seabirdfilehandler/file_collection.py
RENAMED
|
@@ -157,10 +157,13 @@ class FileCollection(UserList):
|
|
|
157
157
|
-------
|
|
158
158
|
A list of all paths found.
|
|
159
159
|
"""
|
|
160
|
-
|
|
161
|
-
self.path_to_files
|
|
162
|
-
|
|
163
|
-
|
|
160
|
+
if self.path_to_files.is_file():
|
|
161
|
+
return [self.path_to_files]
|
|
162
|
+
else:
|
|
163
|
+
return sorted(
|
|
164
|
+
self.path_to_files.rglob(f"*{pattern}*{self.file_suffix}"),
|
|
165
|
+
key=sorting_key,
|
|
166
|
+
)
|
|
164
167
|
|
|
165
168
|
def load_files(self, only_metadata: bool = False) -> list[DataFile]:
|
|
166
169
|
"""
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{seabirdfilehandler-0.7.5 → seabirdfilehandler-0.7.6}/src/seabirdfilehandler/bottlelogfile.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{seabirdfilehandler-0.7.5 → seabirdfilehandler-0.7.6}/src/seabirdfilehandler/processing_steps.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|