digitalhub 0.6.0b6__tar.gz → 0.6.0b7__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.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: digitalhub
3
- Version: 0.6.0b6
3
+ Version: 0.6.0b7
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
@@ -24,6 +24,7 @@ from digitalhub_core import (
24
24
  list_secrets,
25
25
  list_tasks,
26
26
  list_workflows,
27
+ log_artifact,
27
28
  new_artifact,
28
29
  new_function,
29
30
  new_run,
@@ -51,6 +52,7 @@ if not _PROJECT_IMPORTED:
51
52
  get_dataitem,
52
53
  import_dataitem,
53
54
  list_dataitems,
55
+ log_dataitem,
54
56
  new_dataitem,
55
57
  update_dataitem,
56
58
  )
@@ -63,6 +65,7 @@ if not _PROJECT_IMPORTED:
63
65
  import_project,
64
66
  list_models,
65
67
  load_project,
68
+ log_model,
66
69
  new_model,
67
70
  new_project,
68
71
  update_model,
@@ -83,6 +86,7 @@ if not _PROJECT_IMPORTED:
83
86
  import_project,
84
87
  list_dataitems,
85
88
  load_project,
89
+ log_dataitem,
86
90
  new_dataitem,
87
91
  new_project,
88
92
  update_dataitem,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: digitalhub
3
- Version: 0.6.0b6
3
+ Version: 0.6.0b7
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
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "digitalhub"
7
- version = "0.6.0b6"
7
+ version = "0.6.0b7"
8
8
  description = "Python SDK for DigitalHub"
9
9
  readme = "README.md"
10
10
  authors = [
@@ -50,7 +50,7 @@ line-length = 120
50
50
  convention = "numpy"
51
51
 
52
52
  [tool.bumpver]
53
- current_version = "0.6.0b6"
53
+ current_version = "0.6.0b7"
54
54
  version_pattern = "MAJOR.MINOR.PATCH[PYTAGNUM]"
55
55
  commit_message = "Bump version {old_version} -> {new_version}"
56
56
  commit = false
@@ -1,7 +1,7 @@
1
1
  import os
2
2
  import time
3
3
 
4
- import digitalhub as dhcore
4
+ import digitalhub as dh
5
5
 
6
6
 
7
7
  def _is_finished(state: str):
@@ -13,7 +13,7 @@ os.environ["DIGITALHUB_CORE_WORKFLOW_IMAGE"] = "localhost:5000/dhcoreworkflow9:l
13
13
  os.environ["KFP_ENDPOINT"] = "http://localhost:8888/"
14
14
 
15
15
  # Get or create project
16
- project = dhcore.get_or_create_project("project-kfp2")
16
+ project = dh.get_or_create_project("project-kfp2")
17
17
 
18
18
  url = "https://gist.githubusercontent.com/kevin336/acbb2271e66c10a5b73aacf82ca82784/raw/e38afe62e088394d61ed30884dd50a6826eee0a8/employees.csv"
19
19
 
File without changes
File without changes
File without changes