Skip to content

Commit 9786433

Browse files
committed
Release 0.0.109
1 parent e736e84 commit 9786433

File tree

4 files changed

+19
-3
lines changed

4 files changed

+19
-3
lines changed

poetry.lock

Lines changed: 15 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.108"
6+
version = "0.0.109"
77
description = ""
88
readme = "README.md"
99
authors = []
@@ -36,6 +36,7 @@ Repository = 'https://github.com/axiomatic-ai/axiomatic-python-sdk'
3636
[tool.poetry.dependencies]
3737
python = "^3.8"
3838
dill = ">=0.3.4"
39+
fastjsonschema = ">=2.21.1"
3940
httpx = ">=0.21.2"
4041
hypernetx = ">=2.0.0"
4142
ipywidgets = ">=7.0.0"

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
dill>=0.3.4
2+
fastjsonschema>=2.21.1
23
httpx>=0.21.2
34
hypernetx>=2.0.0
45
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.108",
19+
"X-Fern-SDK-Version": "0.0.109",
2020
}
2121
headers["X-API-Key"] = self.api_key
2222
return headers

0 commit comments

Comments
 (0)