Skip to content

Commit c929cb1

Browse files
committed
Release 0.8.14b4
1 parent a7904e0 commit c929cb1

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "humanloop"
3-
version = "0.8.14b3"
3+
version = "0.8.14b4"
44
description = ""
55
readme = "README.md"
66
authors = []
@@ -10,6 +10,7 @@ classifiers = [
1010
"Intended Audience :: Developers",
1111
"Programming Language :: Python",
1212
"Programming Language :: Python :: 3",
13+
"Programming Language :: Python :: 3.8",
1314
"Programming Language :: Python :: 3.9",
1415
"Programming Language :: Python :: 3.10",
1516
"Programming Language :: Python :: 3.11",
@@ -46,9 +47,7 @@ pydantic = ">= 1.9.2"
4647
pydantic-core = "^2.18.2"
4748
typing_extensions = ">= 4.0.0"
4849

49-
5050
[tool.poetry.dev-dependencies]
51-
pytest-retry = "^1.6.3"
5251
mypy = "1.0.1"
5352
pytest = "^7.4.0"
5453
pytest-asyncio = "^0.23.5"
@@ -60,6 +59,7 @@ groq = ">=0.11.0"
6059
jsonschema = "^4.23.0"
6160
openai = "^1.52.2"
6261
parse-type = ">=0.6.4"
62+
pytest-retry = "^1.6.3"
6363
python-dotenv = "^1.0.1"
6464
replicate = "^1.0.3"
6565
ruff = "^0.5.6"

src/humanloop/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": "humanloop",
19-
"X-Fern-SDK-Version": "0.8.14b3",
19+
"X-Fern-SDK-Version": "0.8.14b4",
2020
}
2121
headers["X-API-KEY"] = self.api_key
2222
return headers

0 commit comments

Comments
 (0)