dsw-storage 4.25.1__tar.gz → 4.26.0__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.
- {dsw_storage-4.25.1/dsw_storage.egg-info → dsw_storage-4.26.0}/PKG-INFO +2 -2
- {dsw_storage-4.25.1 → dsw_storage-4.26.0}/dsw/storage/build_info.py +4 -4
- {dsw_storage-4.25.1 → dsw_storage-4.26.0}/dsw/storage/s3storage.py +3 -3
- {dsw_storage-4.25.1 → dsw_storage-4.26.0/dsw_storage.egg-info}/PKG-INFO +2 -2
- dsw_storage-4.26.0/dsw_storage.egg-info/requires.txt +3 -0
- {dsw_storage-4.25.1 → dsw_storage-4.26.0}/pyproject.toml +2 -2
- dsw_storage-4.25.1/dsw_storage.egg-info/requires.txt +0 -3
- {dsw_storage-4.25.1 → dsw_storage-4.26.0}/LICENSE +0 -0
- {dsw_storage-4.25.1 → dsw_storage-4.26.0}/README.md +0 -0
- {dsw_storage-4.25.1 → dsw_storage-4.26.0}/dsw/storage/__init__.py +0 -0
- {dsw_storage-4.25.1 → dsw_storage-4.26.0}/dsw_storage.egg-info/SOURCES.txt +0 -0
- {dsw_storage-4.25.1 → dsw_storage-4.26.0}/dsw_storage.egg-info/dependency_links.txt +0 -0
- {dsw_storage-4.25.1 → dsw_storage-4.26.0}/dsw_storage.egg-info/not-zip-safe +0 -0
- {dsw_storage-4.25.1 → dsw_storage-4.26.0}/dsw_storage.egg-info/top_level.txt +0 -0
- {dsw_storage-4.25.1 → dsw_storage-4.26.0}/setup.cfg +0 -0
- {dsw_storage-4.25.1 → dsw_storage-4.26.0}/setup.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: dsw-storage
|
|
3
|
-
Version: 4.
|
|
3
|
+
Version: 4.26.0
|
|
4
4
|
Summary: Library for managing DSW S3 storage
|
|
5
5
|
Author-email: Marek Suchánek <marek.suchanek@ds-wizard.org>
|
|
6
6
|
License: Apache License 2.0
|
|
@@ -20,7 +20,7 @@ Description-Content-Type: text/markdown
|
|
|
20
20
|
License-File: LICENSE
|
|
21
21
|
Requires-Dist: minio
|
|
22
22
|
Requires-Dist: tenacity
|
|
23
|
-
Requires-Dist: dsw-config==4.
|
|
23
|
+
Requires-Dist: dsw-config==4.26.0
|
|
24
24
|
Dynamic: license-file
|
|
25
25
|
|
|
26
26
|
# Data Stewardship Wizard: Storage
|
|
@@ -9,9 +9,9 @@ BuildInfo = namedtuple(
|
|
|
9
9
|
)
|
|
10
10
|
|
|
11
11
|
BUILD_INFO = BuildInfo(
|
|
12
|
-
version='v4.
|
|
13
|
-
built_at='
|
|
14
|
-
sha='
|
|
12
|
+
version='v4.26.0~6fb9cb8',
|
|
13
|
+
built_at='2026-01-06 12:19:29Z',
|
|
14
|
+
sha='6fb9cb8a23068c7f699e72b0d22ff975db2ead69',
|
|
15
15
|
branch='HEAD',
|
|
16
|
-
tag='v4.
|
|
16
|
+
tag='v4.26.0',
|
|
17
17
|
)
|
|
@@ -91,11 +91,11 @@ class S3Storage:
|
|
|
91
91
|
before=tenacity.before_log(LOG, logging.DEBUG),
|
|
92
92
|
after=tenacity.after_log(LOG, logging.DEBUG),
|
|
93
93
|
)
|
|
94
|
-
def
|
|
95
|
-
|
|
94
|
+
def download_project_file(self, *, tenant_uuid: str, project_uuid: str,
|
|
95
|
+
file_uuid: str, target_path: pathlib.Path) -> bool:
|
|
96
96
|
return self._download_file(
|
|
97
97
|
tenant_uuid=tenant_uuid,
|
|
98
|
-
file_name=f'
|
|
98
|
+
file_name=f'project-files/{project_uuid}/{file_uuid}',
|
|
99
99
|
target_path=target_path,
|
|
100
100
|
)
|
|
101
101
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: dsw-storage
|
|
3
|
-
Version: 4.
|
|
3
|
+
Version: 4.26.0
|
|
4
4
|
Summary: Library for managing DSW S3 storage
|
|
5
5
|
Author-email: Marek Suchánek <marek.suchanek@ds-wizard.org>
|
|
6
6
|
License: Apache License 2.0
|
|
@@ -20,7 +20,7 @@ Description-Content-Type: text/markdown
|
|
|
20
20
|
License-File: LICENSE
|
|
21
21
|
Requires-Dist: minio
|
|
22
22
|
Requires-Dist: tenacity
|
|
23
|
-
Requires-Dist: dsw-config==4.
|
|
23
|
+
Requires-Dist: dsw-config==4.26.0
|
|
24
24
|
Dynamic: license-file
|
|
25
25
|
|
|
26
26
|
# Data Stewardship Wizard: Storage
|
|
@@ -4,7 +4,7 @@ build-backend = 'setuptools.build_meta'
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = 'dsw-storage'
|
|
7
|
-
version = "4.
|
|
7
|
+
version = "4.26.0"
|
|
8
8
|
description = 'Library for managing DSW S3 storage'
|
|
9
9
|
readme = 'README.md'
|
|
10
10
|
keywords = ['dsw', 's3', 'bucket', 'storage']
|
|
@@ -26,7 +26,7 @@ dependencies = [
|
|
|
26
26
|
'minio',
|
|
27
27
|
'tenacity',
|
|
28
28
|
# DSW
|
|
29
|
-
"dsw-config==4.
|
|
29
|
+
"dsw-config==4.26.0",
|
|
30
30
|
]
|
|
31
31
|
|
|
32
32
|
[project.urls]
|
|
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
|