digitalhub 0.3.0__tar.gz → 0.3.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.

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.3.0
3
+ Version: 0.3.1
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
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: digitalhub
3
- Version: 0.3.0
3
+ Version: 0.3.1
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.3.0"
7
+ version = "0.3.1"
8
8
  description = "Python SDK for DigitalHub"
9
9
  readme = "README.md"
10
10
  authors = [
@@ -52,7 +52,7 @@ line-length = 120
52
52
  convention = "numpy"
53
53
 
54
54
  [tool.bumpver]
55
- current_version = "0.3.0"
55
+ current_version = "0.3.1"
56
56
  version_pattern = "MAJOR.MINOR.PATCH[PYTAGNUM]"
57
57
  commit_message = "Bump version {old_version} -> {new_version}"
58
58
  commit = false
@@ -1,13 +1,12 @@
1
- import dotenv
2
-
3
- dotenv.load_dotenv()
4
-
5
1
  from copy import deepcopy
6
2
 
3
+ import dotenv
7
4
  from digitalhub_core.entities.functions.entity import Function
8
5
 
9
6
  import digitalhub
10
7
 
8
+ dotenv.load_dotenv()
9
+
11
10
 
12
11
  def add_param(kwargs) -> dict:
13
12
  if kwargs["kind"] == "dbt":
@@ -1,12 +1,10 @@
1
1
  import dotenv
2
-
3
- dotenv.load_dotenv()
4
-
5
-
6
2
  from digitalhub_core.entities.runs.entity import Run
7
3
 
8
4
  import digitalhub
9
5
 
6
+ dotenv.load_dotenv()
7
+
10
8
 
11
9
  def add_param(kwargs) -> dict:
12
10
  if kwargs["kind"] == "mlrun+run":
@@ -1,12 +1,10 @@
1
1
  import dotenv
2
-
3
- dotenv.load_dotenv()
4
-
5
-
6
2
  from digitalhub_core.entities.tasks.entity import Task
7
3
 
8
4
  import digitalhub
9
5
 
6
+ dotenv.load_dotenv()
7
+
10
8
 
11
9
  def add_param(kwargs) -> dict:
12
10
  if kwargs["kind"] == "mlrun+job":
File without changes
File without changes
File without changes
@@ -1,13 +1,13 @@
1
- import dotenv
2
-
3
- dotenv.load_dotenv()
4
-
5
1
  from copy import deepcopy
6
2
 
3
+ import dotenv
7
4
  from digitalhub_core.entities.artifacts.entity import Artifact
8
5
 
9
6
  import digitalhub
10
7
 
8
+ dotenv.load_dotenv()
9
+
10
+
11
11
  names = ["test1", "test2", "test3", "test4"]
12
12
  uuids = [
13
13
  "12a01efa-o44f-4991-b153-9a3c358b7bb0",
@@ -1,12 +1,12 @@
1
- import dotenv
2
-
3
- dotenv.load_dotenv()
4
1
  from copy import deepcopy
5
2
 
3
+ import dotenv
6
4
  from digitalhub_data.entities.dataitems.entity._base import Dataitem
7
5
 
8
6
  import digitalhub
9
7
 
8
+ dotenv.load_dotenv()
9
+
10
10
  names = ["test1", "test2", "test3", "test4"]
11
11
  uuids = [
12
12
  "12a01efa-o44f-4991-b153-9a3c358b7bb0",
File without changes