ddsapi 2026.6.1__tar.gz → 2026.6.3__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.
- {ddsapi-2026.6.1 → ddsapi-2026.6.3}/PKG-INFO +1 -1
- {ddsapi-2026.6.1 → ddsapi-2026.6.3}/ddsapi/api.py +7 -1
- ddsapi-2026.6.3/ddsapi/version.py +1 -0
- {ddsapi-2026.6.1 → ddsapi-2026.6.3}/ddsapi.egg-info/PKG-INFO +1 -1
- ddsapi-2026.6.1/ddsapi/version.py +0 -1
- {ddsapi-2026.6.1 → ddsapi-2026.6.3}/LICENSE +0 -0
- {ddsapi-2026.6.1 → ddsapi-2026.6.3}/README.md +0 -0
- {ddsapi-2026.6.1 → ddsapi-2026.6.3}/ddsapi/__init__.py +0 -0
- {ddsapi-2026.6.1 → ddsapi-2026.6.3}/ddsapi/cache.py +0 -0
- {ddsapi-2026.6.1 → ddsapi-2026.6.3}/ddsapi.egg-info/SOURCES.txt +0 -0
- {ddsapi-2026.6.1 → ddsapi-2026.6.3}/ddsapi.egg-info/dependency_links.txt +0 -0
- {ddsapi-2026.6.1 → ddsapi-2026.6.3}/ddsapi.egg-info/requires.txt +0 -0
- {ddsapi-2026.6.1 → ddsapi-2026.6.3}/ddsapi.egg-info/top_level.txt +0 -0
- {ddsapi-2026.6.1 → ddsapi-2026.6.3}/pyproject.toml +0 -0
- {ddsapi-2026.6.1 → ddsapi-2026.6.3}/setup.cfg +0 -0
- {ddsapi-2026.6.1 → ddsapi-2026.6.3}/tests/test_config.py +0 -0
- {ddsapi-2026.6.1 → ddsapi-2026.6.3}/tests/test_errors.py +0 -0
- {ddsapi-2026.6.1 → ddsapi-2026.6.3}/tests/test_integration.py +0 -0
- {ddsapi-2026.6.1 → ddsapi-2026.6.3}/tests/test_optional.py +0 -0
- {ddsapi-2026.6.1 → ddsapi-2026.6.3}/tests/test_version.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: ddsapi
|
|
3
|
-
Version: 2026.6.
|
|
3
|
+
Version: 2026.6.3
|
|
4
4
|
Summary: Python Client to access and download data from CMCC Data Delivery System (DDS)
|
|
5
5
|
Author-email: CMCC Data Delivery System Team <dds-support@cmcc.it>
|
|
6
6
|
License-Expression: Apache-2.0
|
|
@@ -791,7 +791,13 @@ class Client:
|
|
|
791
791
|
engine="zarr",
|
|
792
792
|
chunks={},
|
|
793
793
|
storage_options={
|
|
794
|
-
"client_kwargs": {"headers": self.auth_token}
|
|
794
|
+
"client_kwargs": {"headers": self.auth_token},
|
|
795
|
+
# Match the SSL behaviour of the netcdf/requests
|
|
796
|
+
# path (verify=self.verify). fsspec forwards this
|
|
797
|
+
# top-level "ssl" kwarg to aiohttp's per-request
|
|
798
|
+
# ssl= argument (False disables verification),
|
|
799
|
+
# which is loop-safe (no pre-built connector).
|
|
800
|
+
"ssl": self.verify,
|
|
795
801
|
},
|
|
796
802
|
**_zarr_v2_open_kwarg(xr),
|
|
797
803
|
)
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "2026.06.3"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: ddsapi
|
|
3
|
-
Version: 2026.6.
|
|
3
|
+
Version: 2026.6.3
|
|
4
4
|
Summary: Python Client to access and download data from CMCC Data Delivery System (DDS)
|
|
5
5
|
Author-email: CMCC Data Delivery System Team <dds-support@cmcc.it>
|
|
6
6
|
License-Expression: Apache-2.0
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "2026.06.1"
|
|
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
|
|
File without changes
|