From 97a8e365ecf5b4115a72c174bcb61fb0ed514469 Mon Sep 17 00:00:00 2001 From: John <43506685+Coniferish@users.noreply.github.com> Date: Sun, 8 Sep 2024 14:32:34 -0400 Subject: [PATCH] partners/unstructured: update unstructured client version (#26105) Users are having version conflicts with `unstructured-client` as described here: https://unstructuredw-kbe4326.slack.com/archives/C06JJHC9G4U/p1725557970546199?thread_ts=1725035247.162819&cid=C06JJHC9G4U This PR fixes that issue and should update the version to "0.1.3" as well for a clean-slate version for users to install Co-authored-by: Erick Friis --- libs/partners/unstructured/poetry.lock | 22 +++++++++++----------- libs/partners/unstructured/pyproject.toml | 2 +- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/libs/partners/unstructured/poetry.lock b/libs/partners/unstructured/poetry.lock index dd98fe8492a..867f7ac62e7 100644 --- a/libs/partners/unstructured/poetry.lock +++ b/libs/partners/unstructured/poetry.lock @@ -605,19 +605,19 @@ test = ["pytest (>=6)"] [[package]] name = "filelock" -version = "3.15.4" +version = "3.16.0" description = "A platform independent file lock." optional = false python-versions = ">=3.8" files = [ - {file = "filelock-3.15.4-py3-none-any.whl", hash = "sha256:6ca1fffae96225dab4c6eaf1c4f4f28cd2568d3ec2a44e15a08520504de468e7"}, - {file = "filelock-3.15.4.tar.gz", hash = "sha256:2207938cbc1844345cb01a5a95524dae30f0ce089eba5b00378295a17e3e90cb"}, + {file = "filelock-3.16.0-py3-none-any.whl", hash = "sha256:f6ed4c963184f4c84dd5557ce8fece759a3724b37b80c6c4f20a2f63a4dc6609"}, + {file = "filelock-3.16.0.tar.gz", hash = "sha256:81de9eb8453c769b63369f87f11131a7ab04e367f8d97ad39dc230daa07e3bec"}, ] [package.extras] -docs = ["furo (>=2023.9.10)", "sphinx (>=7.2.6)", "sphinx-autodoc-typehints (>=1.25.2)"] -testing = ["covdefaults (>=2.3)", "coverage (>=7.3.2)", "diff-cover (>=8.0.1)", "pytest (>=7.4.3)", "pytest-asyncio (>=0.21)", "pytest-cov (>=4.1)", "pytest-mock (>=3.12)", "pytest-timeout (>=2.2)", "virtualenv (>=20.26.2)"] -typing = ["typing-extensions (>=4.8)"] +docs = ["furo (>=2024.8.6)", "sphinx (>=8.0.2)", "sphinx-autodoc-typehints (>=2.4)"] +testing = ["covdefaults (>=2.3)", "coverage (>=7.6.1)", "diff-cover (>=9.1.1)", "pytest (>=8.3.2)", "pytest-asyncio (>=0.24)", "pytest-cov (>=5)", "pytest-mock (>=3.14)", "pytest-timeout (>=2.3.1)", "virtualenv (>=20.26.3)"] +typing = ["typing-extensions (>=4.12.2)"] [[package]] name = "filetype" @@ -1291,7 +1291,7 @@ develop = true [package.dependencies] jsonpatch = "^1.33" -langsmith = "^0.1.75" +langsmith = "^0.1.112" packaging = ">=23.2,<25" pydantic = [ {version = ">=1,<3", markers = "python_full_version < \"3.12.4\""}, @@ -1321,13 +1321,13 @@ six = "*" [[package]] name = "langsmith" -version = "0.1.115" +version = "0.1.116" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.115-py3-none-any.whl", hash = "sha256:04e35cfd4c2d4ff1ea10bb577ff43957b05ebb3d9eb4e06e200701f4a2b4ac9f"}, - {file = "langsmith-0.1.115.tar.gz", hash = "sha256:3b775377d858d32354f3ee0dd1ed637068cfe9a1f13e7b3bfa82db1615cdffc9"}, + {file = "langsmith-0.1.116-py3-none-any.whl", hash = "sha256:4b5ea64c81ba5ca309695c85dc3fb4617429a985129ed5d9eca00d1c9d6483f4"}, + {file = "langsmith-0.1.116.tar.gz", hash = "sha256:5ccd7f5c1840f7c507ab3ee56334a1391de28c8bf72669782e2d82cafeefffa7"}, ] [package.dependencies] @@ -4525,4 +4525,4 @@ local = ["unstructured"] [metadata] lock-version = "2.0" python-versions = ">=3.9,<4.0" -content-hash = "61b3872014801672b44bacea0982bbbaf70662401cc3b1d73dc104b1f230c720" +content-hash = "aef99cb01bc916f945119cd14dc512ea259c5462448ab48a721de54c92a381be" diff --git a/libs/partners/unstructured/pyproject.toml b/libs/partners/unstructured/pyproject.toml index b34559491fa..b7dc827b267 100644 --- a/libs/partners/unstructured/pyproject.toml +++ b/libs/partners/unstructured/pyproject.toml @@ -13,8 +13,8 @@ license = "MIT" [tool.poetry.dependencies] python = ">=3.9,<4.0" +unstructured-client = { version = ">=0.25.0,<1" } langchain-core = "^0.2.38" -unstructured-client = { version = "^0.25.0" } unstructured = { version = "^0.15.7", optional = true, python = "<3.13", extras = [ "all-docs", ] }