cloudnet-api-client 0.12.0__tar.gz → 0.12.1__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.
- {cloudnet_api_client-0.12.0 → cloudnet_api_client-0.12.1}/CHANGELOG.md +4 -0
- {cloudnet_api_client-0.12.0 → cloudnet_api_client-0.12.1}/PKG-INFO +1 -1
- {cloudnet_api_client-0.12.0 → cloudnet_api_client-0.12.1}/cloudnet_api_client/client.py +1 -4
- {cloudnet_api_client-0.12.0 → cloudnet_api_client-0.12.1}/cloudnet_api_client/containers.py +1 -1
- cloudnet_api_client-0.12.1/cloudnet_api_client/version.py +1 -0
- cloudnet_api_client-0.12.0/cloudnet_api_client/version.py +0 -1
- {cloudnet_api_client-0.12.0 → cloudnet_api_client-0.12.1}/.github/dataportal.env +0 -0
- {cloudnet_api_client-0.12.0 → cloudnet_api_client-0.12.1}/.github/db.env +0 -0
- {cloudnet_api_client-0.12.0 → cloudnet_api_client-0.12.1}/.github/docker-compose.yml +0 -0
- {cloudnet_api_client-0.12.0 → cloudnet_api_client-0.12.1}/.github/initdb.d/init-dbs.sh +0 -0
- {cloudnet_api_client-0.12.0 → cloudnet_api_client-0.12.1}/.github/ss.env +0 -0
- {cloudnet_api_client-0.12.0 → cloudnet_api_client-0.12.1}/.github/workflows/publish.yml +0 -0
- {cloudnet_api_client-0.12.0 → cloudnet_api_client-0.12.1}/.github/workflows/test.yml +0 -0
- {cloudnet_api_client-0.12.0 → cloudnet_api_client-0.12.1}/.gitignore +0 -0
- {cloudnet_api_client-0.12.0 → cloudnet_api_client-0.12.1}/.pre-commit-config.yaml +0 -0
- {cloudnet_api_client-0.12.0 → cloudnet_api_client-0.12.1}/LICENSE +0 -0
- {cloudnet_api_client-0.12.0 → cloudnet_api_client-0.12.1}/README.md +0 -0
- {cloudnet_api_client-0.12.0 → cloudnet_api_client-0.12.1}/cloudnet_api_client/__init__.py +0 -0
- {cloudnet_api_client-0.12.0 → cloudnet_api_client-0.12.1}/cloudnet_api_client/dl.py +0 -0
- {cloudnet_api_client-0.12.0 → cloudnet_api_client-0.12.1}/cloudnet_api_client/py.typed +0 -0
- {cloudnet_api_client-0.12.0 → cloudnet_api_client-0.12.1}/cloudnet_api_client/utils.py +0 -0
- {cloudnet_api_client-0.12.0 → cloudnet_api_client-0.12.1}/pyproject.toml +0 -0
- {cloudnet_api_client-0.12.0 → cloudnet_api_client-0.12.1}/tests/data/20140205_hyytiala_classification.nc +0 -0
- {cloudnet_api_client-0.12.0 → cloudnet_api_client-0.12.1}/tests/data/20250801_Magurele_CHM170137_000.nc +0 -0
- {cloudnet_api_client-0.12.0 → cloudnet_api_client-0.12.1}/tests/data/20250803_JOYCE_WST_01m.dat +0 -0
- {cloudnet_api_client-0.12.0 → cloudnet_api_client-0.12.1}/tests/data/20250808_Granada_CHM170119_0045_000.nc +0 -0
- {cloudnet_api_client-0.12.0 → cloudnet_api_client-0.12.1}/tests/data/20250808_hyytiala_iwc-Z-T-method.nc +0 -0
- {cloudnet_api_client-0.12.0 → cloudnet_api_client-0.12.1}/tests/data/20250814_bucharest_classification.nc +0 -0
- {cloudnet_api_client-0.12.0 → cloudnet_api_client-0.12.1}/tests/data/20250821_limassol_parsivel_41582c49.nc +0 -0
- {cloudnet_api_client-0.12.0 → cloudnet_api_client-0.12.1}/tests/data/20250822_leipzig-lim_ecmwf-open.nc +0 -0
- {cloudnet_api_client-0.12.0 → cloudnet_api_client-0.12.1}/tests/test_client.py +0 -0
|
@@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## 0.12.1 – 2025-08-25
|
|
9
|
+
|
|
10
|
+
- Fix tag subset filters
|
|
11
|
+
|
|
8
12
|
## 0.12.0 – 2025-08-25
|
|
9
13
|
|
|
10
14
|
- Adjust routes and responses
|
|
@@ -373,16 +373,13 @@ class APIClient:
|
|
|
373
373
|
metadata = [
|
|
374
374
|
m
|
|
375
375
|
for m in metadata
|
|
376
|
-
if isinstance(m, RawMetadata)
|
|
377
|
-
and m.tags
|
|
378
|
-
and include_tag_subset.issubset(m.tags)
|
|
376
|
+
if isinstance(m, RawMetadata) and include_tag_subset.issubset(m.tags)
|
|
379
377
|
]
|
|
380
378
|
if exclude_tag_subset:
|
|
381
379
|
metadata = [
|
|
382
380
|
m
|
|
383
381
|
for m in metadata
|
|
384
382
|
if isinstance(m, RawMetadata)
|
|
385
|
-
and m.tags
|
|
386
383
|
and not exclude_tag_subset.issubset(m.tags)
|
|
387
384
|
]
|
|
388
385
|
return metadata
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.12.1"
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.12.0"
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{cloudnet_api_client-0.12.0 → cloudnet_api_client-0.12.1}/tests/data/20250803_JOYCE_WST_01m.dat
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|