digitalhub 0.4.0__tar.gz → 0.4.0b0__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.
Potentially problematic release.
This version of digitalhub might be problematic. Click here for more details.
- {digitalhub-0.4.0 → digitalhub-0.4.0b0}/PKG-INFO +9 -12
- digitalhub-0.4.0b0/README.md +3 -0
- {digitalhub-0.4.0 → digitalhub-0.4.0b0}/digitalhub/__init__.py +1 -1
- {digitalhub-0.4.0 → digitalhub-0.4.0b0}/digitalhub.egg-info/PKG-INFO +9 -12
- digitalhub-0.4.0b0/digitalhub.egg-info/requires.txt +15 -0
- {digitalhub-0.4.0 → digitalhub-0.4.0b0}/pyproject.toml +9 -9
- digitalhub-0.4.0/README.md +0 -6
- digitalhub-0.4.0/digitalhub.egg-info/requires.txt +0 -15
- {digitalhub-0.4.0 → digitalhub-0.4.0b0}/LICENSE.txt +0 -0
- {digitalhub-0.4.0 → digitalhub-0.4.0b0}/digitalhub.egg-info/SOURCES.txt +0 -0
- {digitalhub-0.4.0 → digitalhub-0.4.0b0}/digitalhub.egg-info/dependency_links.txt +0 -0
- {digitalhub-0.4.0 → digitalhub-0.4.0b0}/digitalhub.egg-info/top_level.txt +0 -0
- {digitalhub-0.4.0 → digitalhub-0.4.0b0}/setup.cfg +0 -0
- {digitalhub-0.4.0 → digitalhub-0.4.0b0}/test/test_crud_artifacts.py +0 -0
- {digitalhub-0.4.0 → digitalhub-0.4.0b0}/test/test_crud_dataitems.py +0 -0
- {digitalhub-0.4.0 → digitalhub-0.4.0b0}/test/test_crud_functions.py +0 -0
- {digitalhub-0.4.0 → digitalhub-0.4.0b0}/test/test_crud_runs.py +0 -0
- {digitalhub-0.4.0 → digitalhub-0.4.0b0}/test/test_crud_tasks.py +0 -0
- {digitalhub-0.4.0 → digitalhub-0.4.0b0}/test/test_imports.py +0 -0
- {digitalhub-0.4.0 → digitalhub-0.4.0b0}/test/testkfp.py +0 -0
- {digitalhub-0.4.0 → digitalhub-0.4.0b0}/test/testkfp_pipeline.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: digitalhub
|
|
3
|
-
Version: 0.4.
|
|
3
|
+
Version: 0.4.0b0
|
|
4
4
|
Summary: Python SDK for DigitalHub
|
|
5
5
|
Author-email: Fondazione Bruno Kessler <dslab@fbk.eu>, Matteo Martini <mmartini@fbk.eu>
|
|
6
6
|
License: Apache License
|
|
@@ -228,21 +228,18 @@ Classifier: Programming Language :: Python :: 3.10
|
|
|
228
228
|
Requires-Python: >=3.9
|
|
229
229
|
Description-Content-Type: text/markdown
|
|
230
230
|
License-File: LICENSE.txt
|
|
231
|
-
Requires-Dist: digitalhub-core~=0.
|
|
231
|
+
Requires-Dist: digitalhub-core~=0.3
|
|
232
232
|
Provides-Extra: all
|
|
233
|
-
Requires-Dist: digitalhub-data~=0.
|
|
234
|
-
Requires-Dist: digitalhub-ml~=0.
|
|
235
|
-
Requires-Dist: digitalhub-ai~=0.
|
|
233
|
+
Requires-Dist: digitalhub-data~=0.3; extra == "all"
|
|
234
|
+
Requires-Dist: digitalhub-ml~=0.3; extra == "all"
|
|
235
|
+
Requires-Dist: digitalhub-ai~=0.3; extra == "all"
|
|
236
236
|
Provides-Extra: ml
|
|
237
|
-
Requires-Dist: digitalhub-ml~=0.
|
|
237
|
+
Requires-Dist: digitalhub-ml~=0.3; extra == "ml"
|
|
238
238
|
Provides-Extra: ai
|
|
239
|
-
Requires-Dist: digitalhub-ai~=0.
|
|
239
|
+
Requires-Dist: digitalhub-ai~=0.3; extra == "ai"
|
|
240
240
|
Provides-Extra: data
|
|
241
|
-
Requires-Dist: digitalhub-data~=0.
|
|
241
|
+
Requires-Dist: digitalhub-data~=0.3; extra == "data"
|
|
242
242
|
|
|
243
243
|
# Digitalhub Library
|
|
244
244
|
|
|
245
|
-
|
|
246
|
-
It comes with a suite of tools to help you manage your projects and executions. It exposes CRUD methods to create, read, update and delete entities, and objects methods to excute functions or workflows, collect or store execution results and data.
|
|
247
|
-
|
|
248
|
-
A more detailed description of the library can be found in the [official documentation](https://scc-digitalhub.github.io/docs/) of Digitalhub.
|
|
245
|
+
Digitalhub sdk library.
|
|
@@ -40,7 +40,7 @@ from digitalhub_core import (
|
|
|
40
40
|
update_task,
|
|
41
41
|
update_workflow,
|
|
42
42
|
)
|
|
43
|
-
from digitalhub_core.registry.
|
|
43
|
+
from digitalhub_core.registry.import_utils import register_layer_entities, register_runtimes_entities
|
|
44
44
|
|
|
45
45
|
_PROJECT_IMPORTED = False
|
|
46
46
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: digitalhub
|
|
3
|
-
Version: 0.4.
|
|
3
|
+
Version: 0.4.0b0
|
|
4
4
|
Summary: Python SDK for DigitalHub
|
|
5
5
|
Author-email: Fondazione Bruno Kessler <dslab@fbk.eu>, Matteo Martini <mmartini@fbk.eu>
|
|
6
6
|
License: Apache License
|
|
@@ -228,21 +228,18 @@ Classifier: Programming Language :: Python :: 3.10
|
|
|
228
228
|
Requires-Python: >=3.9
|
|
229
229
|
Description-Content-Type: text/markdown
|
|
230
230
|
License-File: LICENSE.txt
|
|
231
|
-
Requires-Dist: digitalhub-core~=0.
|
|
231
|
+
Requires-Dist: digitalhub-core~=0.3
|
|
232
232
|
Provides-Extra: all
|
|
233
|
-
Requires-Dist: digitalhub-data~=0.
|
|
234
|
-
Requires-Dist: digitalhub-ml~=0.
|
|
235
|
-
Requires-Dist: digitalhub-ai~=0.
|
|
233
|
+
Requires-Dist: digitalhub-data~=0.3; extra == "all"
|
|
234
|
+
Requires-Dist: digitalhub-ml~=0.3; extra == "all"
|
|
235
|
+
Requires-Dist: digitalhub-ai~=0.3; extra == "all"
|
|
236
236
|
Provides-Extra: ml
|
|
237
|
-
Requires-Dist: digitalhub-ml~=0.
|
|
237
|
+
Requires-Dist: digitalhub-ml~=0.3; extra == "ml"
|
|
238
238
|
Provides-Extra: ai
|
|
239
|
-
Requires-Dist: digitalhub-ai~=0.
|
|
239
|
+
Requires-Dist: digitalhub-ai~=0.3; extra == "ai"
|
|
240
240
|
Provides-Extra: data
|
|
241
|
-
Requires-Dist: digitalhub-data~=0.
|
|
241
|
+
Requires-Dist: digitalhub-data~=0.3; extra == "data"
|
|
242
242
|
|
|
243
243
|
# Digitalhub Library
|
|
244
244
|
|
|
245
|
-
|
|
246
|
-
It comes with a suite of tools to help you manage your projects and executions. It exposes CRUD methods to create, read, update and delete entities, and objects methods to excute functions or workflows, collect or store execution results and data.
|
|
247
|
-
|
|
248
|
-
A more detailed description of the library can be found in the [official documentation](https://scc-digitalhub.github.io/docs/) of Digitalhub.
|
|
245
|
+
Digitalhub sdk library.
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "digitalhub"
|
|
7
|
-
version = "0.4.
|
|
7
|
+
version = "0.4.0b0"
|
|
8
8
|
description = "Python SDK for DigitalHub"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
authors = [
|
|
@@ -20,18 +20,18 @@ classifiers = [
|
|
|
20
20
|
keywords = ["data", "dataops", "kubernetes"]
|
|
21
21
|
requires-python = ">=3.9"
|
|
22
22
|
dependencies = [
|
|
23
|
-
"digitalhub-core~=0.
|
|
23
|
+
"digitalhub-core~=0.3",
|
|
24
24
|
]
|
|
25
25
|
|
|
26
26
|
[project.optional-dependencies]
|
|
27
27
|
all = [
|
|
28
|
-
"digitalhub-data~=0.
|
|
29
|
-
"digitalhub-ml~=0.
|
|
30
|
-
"digitalhub-ai~=0.
|
|
28
|
+
"digitalhub-data~=0.3",
|
|
29
|
+
"digitalhub-ml~=0.3",
|
|
30
|
+
"digitalhub-ai~=0.3",
|
|
31
31
|
]
|
|
32
|
-
ml = ["digitalhub-ml~=0.
|
|
33
|
-
ai = ["digitalhub-ai~=0.
|
|
34
|
-
data = ["digitalhub-data~=0.
|
|
32
|
+
ml = ["digitalhub-ml~=0.3"]
|
|
33
|
+
ai = ["digitalhub-ai~=0.3"]
|
|
34
|
+
data = ["digitalhub-data~=0.3"]
|
|
35
35
|
|
|
36
36
|
[project.urls]
|
|
37
37
|
Homepage = "https://github.com/scc-digitalhub/digitalhub-sdk"
|
|
@@ -52,7 +52,7 @@ line-length = 120
|
|
|
52
52
|
convention = "numpy"
|
|
53
53
|
|
|
54
54
|
[tool.bumpver]
|
|
55
|
-
current_version = "0.4.
|
|
55
|
+
current_version = "0.4.0b0"
|
|
56
56
|
version_pattern = "MAJOR.MINOR.PATCH[PYTAGNUM]"
|
|
57
57
|
commit_message = "Bump version {old_version} -> {new_version}"
|
|
58
58
|
commit = false
|
digitalhub-0.4.0/README.md
DELETED
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
# Digitalhub Library
|
|
2
|
-
|
|
3
|
-
The Digitalhub SDK library is used to manage entities and executions in Digitalhub from Python.
|
|
4
|
-
It comes with a suite of tools to help you manage your projects and executions. It exposes CRUD methods to create, read, update and delete entities, and objects methods to excute functions or workflows, collect or store execution results and data.
|
|
5
|
-
|
|
6
|
-
A more detailed description of the library can be found in the [official documentation](https://scc-digitalhub.github.io/docs/) of Digitalhub.
|
|
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
|