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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ddsapi
3
- Version: 2026.6.1
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.1
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