Skip to content

Commit 93b4f7c

Browse files
committed
Release 0.0.107
1 parent 6dacdbf commit 93b4f7c

File tree

4 files changed

+20
-3
lines changed

4 files changed

+20
-3
lines changed

poetry.lock

Lines changed: 16 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "axiomatic"
33

44
[tool.poetry]
55
name = "axiomatic"
6-
version = "0.0.106"
6+
version = "0.0.107"
77
description = ""
88
readme = "README.md"
99
authors = []
@@ -35,6 +35,7 @@ Repository = 'https://github.com/axiomatic-ai/axiomatic-python-sdk'
3535

3636
[tool.poetry.dependencies]
3737
python = "^3.8"
38+
dill = ">=0.3.4"
3839
httpx = ">=0.21.2"
3940
hypernetx = ">=2.0.0"
4041
ipywidgets = ">=7.0.0"

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
dill>=0.3.4
12
httpx>=0.21.2
23
hypernetx>=2.0.0
34
ipywidgets>=7.0.0

src/axiomatic/core/client_wrapper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def get_headers(self) -> typing.Dict[str, str]:
1616
headers: typing.Dict[str, str] = {
1717
"X-Fern-Language": "Python",
1818
"X-Fern-SDK-Name": "axiomatic",
19-
"X-Fern-SDK-Version": "0.0.106",
19+
"X-Fern-SDK-Version": "0.0.107",
2020
}
2121
headers["X-API-Key"] = self.api_key
2222
return headers

0 commit comments

Comments
 (0)