cloudnet-api-client 0.12.8__tar.gz → 0.12.9__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.8 → cloudnet_api_client-0.12.9}/.github/workflows/publish.yml +3 -3
- {cloudnet_api_client-0.12.8 → cloudnet_api_client-0.12.9}/.github/workflows/test.yml +6 -6
- {cloudnet_api_client-0.12.8 → cloudnet_api_client-0.12.9}/CHANGELOG.md +4 -0
- {cloudnet_api_client-0.12.8 → cloudnet_api_client-0.12.9}/PKG-INFO +1 -1
- {cloudnet_api_client-0.12.8 → cloudnet_api_client-0.12.9}/cloudnet_api_client/containers.py +1 -0
- cloudnet_api_client-0.12.9/cloudnet_api_client/version.py +1 -0
- {cloudnet_api_client-0.12.8 → cloudnet_api_client-0.12.9}/tests/test_client.py +1 -0
- cloudnet_api_client-0.12.8/cloudnet_api_client/version.py +0 -1
- {cloudnet_api_client-0.12.8 → cloudnet_api_client-0.12.9}/.github/dataportal.env +0 -0
- {cloudnet_api_client-0.12.8 → cloudnet_api_client-0.12.9}/.github/db.env +0 -0
- {cloudnet_api_client-0.12.8 → cloudnet_api_client-0.12.9}/.github/docker-compose.yml +0 -0
- {cloudnet_api_client-0.12.8 → cloudnet_api_client-0.12.9}/.github/initdb.d/init-dbs.sh +0 -0
- {cloudnet_api_client-0.12.8 → cloudnet_api_client-0.12.9}/.github/ss.env +0 -0
- {cloudnet_api_client-0.12.8 → cloudnet_api_client-0.12.9}/.gitignore +0 -0
- {cloudnet_api_client-0.12.8 → cloudnet_api_client-0.12.9}/.pre-commit-config.yaml +0 -0
- {cloudnet_api_client-0.12.8 → cloudnet_api_client-0.12.9}/LICENSE +0 -0
- {cloudnet_api_client-0.12.8 → cloudnet_api_client-0.12.9}/README.md +0 -0
- {cloudnet_api_client-0.12.8 → cloudnet_api_client-0.12.9}/cloudnet_api_client/__init__.py +0 -0
- {cloudnet_api_client-0.12.8 → cloudnet_api_client-0.12.9}/cloudnet_api_client/client.py +0 -0
- {cloudnet_api_client-0.12.8 → cloudnet_api_client-0.12.9}/cloudnet_api_client/dl.py +0 -0
- {cloudnet_api_client-0.12.8 → cloudnet_api_client-0.12.9}/cloudnet_api_client/py.typed +0 -0
- {cloudnet_api_client-0.12.8 → cloudnet_api_client-0.12.9}/cloudnet_api_client/utils.py +0 -0
- {cloudnet_api_client-0.12.8 → cloudnet_api_client-0.12.9}/pyproject.toml +0 -0
- {cloudnet_api_client-0.12.8 → cloudnet_api_client-0.12.9}/tests/data/20140205_hyytiala_classification.nc +0 -0
- {cloudnet_api_client-0.12.8 → cloudnet_api_client-0.12.9}/tests/data/20250801_Magurele_CHM170137_000.nc +0 -0
- {cloudnet_api_client-0.12.8 → cloudnet_api_client-0.12.9}/tests/data/20250803_JOYCE_WST_01m.dat +0 -0
- {cloudnet_api_client-0.12.8 → cloudnet_api_client-0.12.9}/tests/data/20250808_Granada_CHM170119_0045_000.nc +0 -0
- {cloudnet_api_client-0.12.8 → cloudnet_api_client-0.12.9}/tests/data/20250808_hyytiala_iwc-Z-T-method.nc +0 -0
- {cloudnet_api_client-0.12.8 → cloudnet_api_client-0.12.9}/tests/data/20250814_bucharest_classification.nc +0 -0
- {cloudnet_api_client-0.12.8 → cloudnet_api_client-0.12.9}/tests/data/20250821_limassol_parsivel_41582c49.nc +0 -0
- {cloudnet_api_client-0.12.8 → cloudnet_api_client-0.12.9}/tests/data/20250822_leipzig-lim_ecmwf-open.nc +0 -0
|
@@ -12,9 +12,9 @@ jobs:
|
|
|
12
12
|
contents: write
|
|
13
13
|
id-token: write
|
|
14
14
|
steps:
|
|
15
|
-
- uses: actions/checkout@
|
|
15
|
+
- uses: actions/checkout@v6
|
|
16
16
|
- name: Set up Python
|
|
17
|
-
uses: actions/setup-python@
|
|
17
|
+
uses: actions/setup-python@v6
|
|
18
18
|
with:
|
|
19
19
|
python-version: "3.10"
|
|
20
20
|
- name: Install dependencies
|
|
@@ -30,7 +30,7 @@ jobs:
|
|
|
30
30
|
echo "name=cloudnet-api-client $version" >> $GITHUB_OUTPUT
|
|
31
31
|
id: changelog
|
|
32
32
|
- name: Create release
|
|
33
|
-
uses: softprops/action-gh-release@
|
|
33
|
+
uses: softprops/action-gh-release@v2
|
|
34
34
|
with:
|
|
35
35
|
name: ${{ steps.changelog.outputs.name }}
|
|
36
36
|
body_path: ${{ github.workspace }}-CHANGELOG.txt
|
|
@@ -11,15 +11,15 @@ jobs:
|
|
|
11
11
|
runs-on: ubuntu-latest
|
|
12
12
|
steps:
|
|
13
13
|
- name: Set up Python
|
|
14
|
-
uses: actions/setup-python@
|
|
14
|
+
uses: actions/setup-python@v6
|
|
15
15
|
with:
|
|
16
16
|
python-version: ${{ matrix.python-version }}
|
|
17
17
|
|
|
18
18
|
- name: Checkout code
|
|
19
|
-
uses: actions/checkout@
|
|
19
|
+
uses: actions/checkout@v6
|
|
20
20
|
|
|
21
21
|
- name: Cache Python dependencies
|
|
22
|
-
uses: actions/cache@
|
|
22
|
+
uses: actions/cache@v5
|
|
23
23
|
with:
|
|
24
24
|
path: ~/.cache/pip
|
|
25
25
|
key: ${{ runner.os }}-pip-${{ matrix.python-version }}-${{ hashFiles('**/pyproject.toml') }}
|
|
@@ -28,7 +28,7 @@ jobs:
|
|
|
28
28
|
${{ runner.os }}-pip-
|
|
29
29
|
|
|
30
30
|
- name: Checkout fixtures
|
|
31
|
-
uses: actions/checkout@
|
|
31
|
+
uses: actions/checkout@v6
|
|
32
32
|
with:
|
|
33
33
|
repository: actris-cloudnet/dataportal
|
|
34
34
|
sparse-checkout: backend/fixtures/
|
|
@@ -36,13 +36,13 @@ jobs:
|
|
|
36
36
|
path: backend-fixtures
|
|
37
37
|
|
|
38
38
|
- name: Checkout production fixtures
|
|
39
|
-
uses: actions/checkout@
|
|
39
|
+
uses: actions/checkout@v6
|
|
40
40
|
with:
|
|
41
41
|
repository: actris-cloudnet/dataportal-fixtures
|
|
42
42
|
path: dataportal-fixtures
|
|
43
43
|
|
|
44
44
|
- name: Set up Docker Buildx
|
|
45
|
-
uses: docker/setup-buildx-action@
|
|
45
|
+
uses: docker/setup-buildx-action@v4
|
|
46
46
|
|
|
47
47
|
- name: Start dataportal
|
|
48
48
|
run: docker compose -f .github/docker-compose.yml up -d --wait
|
|
@@ -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.9 – 2026-04-14
|
|
9
|
+
|
|
10
|
+
- Add s3key to file metadata
|
|
11
|
+
|
|
8
12
|
## 0.12.8 – 2026-03-24
|
|
9
13
|
|
|
10
14
|
- Support downloading of single metadata objects
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.12.9"
|
|
@@ -536,6 +536,7 @@ def _submit_product_file(backend_url: str, data_path: Path, meta: File):
|
|
|
536
536
|
"uuid": str(UUID(nc.file_uuid)),
|
|
537
537
|
"pid": nc.pid,
|
|
538
538
|
"instrumentPid": getattr(nc, "instrument_pid", None),
|
|
539
|
+
"s3key": None,
|
|
539
540
|
**file_info,
|
|
540
541
|
}
|
|
541
542
|
payload["model"] = product if payload["product"] == "model" else None
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.12.8"
|
|
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.8 → cloudnet_api_client-0.12.9}/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
|