Skip to content

Commit 60c55d2

Browse files
authored
Merge pull request #15 from tuneinsight/release-v1.1.3
v1.1.3 release
2 parents 69978a7 + 3ad0ee1 commit 60c55d2

File tree

9 files changed

+12
-9
lines changed

9 files changed

+12
-9
lines changed

PKG-INFO

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Metadata-Version: 2.1
22
Name: tuneinsight
3-
Version: 1.1.2
3+
Version: 1.1.3
44
Summary: Official Python SDK for the Tune Insight API. The current version is compatible with the same version of the API.
55
License: Apache-2.0
66
Author: Tune Insight SA

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "tuneinsight"
3-
version = "1.1.2" # Ignored.
3+
version = "1.1.3" # Ignored.
44
description = "Official Python SDK for the Tune Insight API. The current version is compatible with the same version of the API."
55
authors = ["Tune Insight SA"]
66
license = "Apache-2.0"

src/tuneinsight/api/api-checksum

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
b023866fb4734796dcf385bd51e14abd8711a989ad73876a1fee8b49e2f3c775
1+
e36e6c50fbaa6cc741561a596e346284fb9a161b523f0bdfacc4013a389e0d62

src/tuneinsight/api/sdk/models/build_catalog_action.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ class BuildCatalogAction(str, Enum):
66
STOP = "stop"
77
PAUSE = "pause"
88
RESUME = "resume"
9+
RESET = "reset"
910

1011
def __str__(self) -> str:
1112
return str(self.value)

src/tuneinsight/api/sdk/models/ontology_search_result.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ class OntologySearchResult:
1818
description (Union[Unset, str]):
1919
level (Union[Unset, float]):
2020
name (Union[Unset, str]):
21-
occurrence (Union[Unset, float]):
22-
occurrence_network (Union[Unset, float]):
21+
occurrence (Union[Unset, None, float]):
22+
occurrence_network (Union[Unset, None, float]):
2323
ontology (Union[Unset, str]):
2424
parents (Union[Unset, str]):
2525
uri (Union[Unset, str]):
@@ -32,8 +32,8 @@ class OntologySearchResult:
3232
description: Union[Unset, str] = UNSET
3333
level: Union[Unset, float] = UNSET
3434
name: Union[Unset, str] = UNSET
35-
occurrence: Union[Unset, float] = UNSET
36-
occurrence_network: Union[Unset, float] = UNSET
35+
occurrence: Union[Unset, None, float] = UNSET
36+
occurrence_network: Union[Unset, None, float] = UNSET
3737
ontology: Union[Unset, str] = UNSET
3838
parents: Union[Unset, str] = UNSET
3939
uri: Union[Unset, str] = UNSET

src/tuneinsight/computations/base.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -671,9 +671,9 @@ def __init__(
671671
elif is_unset(self.model.dp_epsilon):
672672
warnings.warn(
673673
warn_message
674-
% "the parameter dp_epsilon was not set. Using default value 0.1."
674+
% "the parameter dp_epsilon was not set. Using default value 1."
675675
)
676-
self.model.dp_epsilon = 0.1
676+
self.model.dp_epsilon = 1
677677
else:
678678
epsilon = float(
679679
self.model.dp_epsilon
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

src/tuneinsight/cryptolib/cryptolib.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,8 @@ def __getattr__(self, _):
4141
# Find the shared library for the compiled Go Cryptolib.
4242
cwd = Path(__file__).absolute().parent
4343
arch = platform.machine()
44+
if arch == "aarch64":
45+
arch = "arm64" # Handle special case for Linux in docker.
4446
os = platform.system().lower()
4547
ext = "dll" if os == "windows" else "so"
4648
cryptolib_path = cwd / "build" / f"cryptolib-{os}_{arch}.{ext}"

0 commit comments

Comments
 (0)