Skip to content

Commit cbe00e7

Browse files
committed
2 parents bd816e3 + 692f246 commit cbe00e7

File tree

3 files changed

+158
-3
lines changed

3 files changed

+158
-3
lines changed

poetry.lock

Lines changed: 154 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: 3 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.52"
6+
version = "0.0.56"
77
description = ""
88
readme = "README.md"
99
authors = []
@@ -38,6 +38,8 @@ python = "^3.8"
3838
httpx = ">=0.21.2"
3939
pydantic = ">= 1.9.2"
4040
pydantic-core = "^2.18.2"
41+
requests = ">2.26.0"
42+
types-requests = ">2.0.0"
4143
typing_extensions = ">= 4.0.0"
4244

4345
[tool.poetry.dev-dependencies]

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.52",
19+
"X-Fern-SDK-Version": "0.0.56",
2020
}
2121
headers["X-API-Key"] = self.api_key
2222
return headers

0 commit comments

Comments
 (0)