Skip to content

Commit 5ab5bf6

Browse files
Merge branch 'main' into angus/fix-compression-thread
2 parents f65451f + 73834df commit 5ab5bf6

File tree

3 files changed

+20
-10
lines changed

3 files changed

+20
-10
lines changed

python/langsmith/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
from langsmith.utils import ContextThreadPoolExecutor
2121

2222
# Avoid calling into importlib on every call to __version__
23-
__version__ = "0.3.36rc0"
23+
__version__ = "0.3.37rc0"
2424
version = __version__ # for backwards compatibility
2525

2626

python/poetry.lock

Lines changed: 13 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

python/pyproject.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "langsmith"
3-
version = "0.3.36rc0"
3+
version = "0.3.37rc0"
44
description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform."
55
authors = ["LangChain <[email protected]>"]
66
license = "MIT"
@@ -22,7 +22,7 @@ keywords = [
2222
packages = [{ include = "langsmith" }]
2323

2424
[tool.poetry.dependencies]
25-
python = ">=3.9,<4.0"
25+
python = ">=3.9"
2626
pydantic = [
2727
{ version = ">=1,<3", python = "<3.12.4" },
2828
{ version = "^2.7.4", python = ">=3.12.4" },
@@ -59,16 +59,16 @@ types-psutil = "^5.9.5.16"
5959
psutil = "^5.9.5"
6060
freezegun = "^1.2.2"
6161
pytest-subtests = "^0.11.0"
62-
pytest-watcher = "^0.3.4"
62+
pytest-watcher = { version = "^0.3.4", python = "<4.0" }
6363
pytest-xdist = "^3.5.0"
6464
pytest-cov = "^4.1.0"
65-
dataclasses-json = "^0.6.4"
65+
dataclasses-json = { version = "^0.6.4", python = "<4.0" }
6666
types-tqdm = "^4.66.0.20240106"
6767
vcrpy = ">=7.0.0"
6868
fastapi = "^0.115.4"
6969
uvicorn = "^0.29.0"
7070
pytest-rerunfailures = "^14.0"
71-
pytest-socket = "^0.7.0"
71+
pytest-socket = { version = "^0.7.0", python = "<4.0" }
7272
pyperf = "^2.7.0"
7373
py-spy = "^0.3.14"
7474
multipart = "^1.0.0"
@@ -83,7 +83,7 @@ openai = "^1.55"
8383

8484

8585
[tool.poetry.group.test.dependencies]
86-
pytest-socket = "^0.7.0"
86+
pytest-socket = { version = "^0.7.0", python = "<4.0" }
8787
anthropic = "^0.45.0"
8888

8989
[tool.poetry.extras]

0 commit comments

Comments
 (0)