Fix poetry issues
This commit is contained in:
parent
1a0052ba34
commit
433dc3681b
1 changed files with 21 additions and 7 deletions
28
poetry.lock
generated
28
poetry.lock
generated
|
|
@ -3386,7 +3386,10 @@ async-timeout = {version = ">=4.0.0,<5.0.0", markers = "python_version < \"3.11\
|
|||
langchain-core = ">=0.3.24,<0.4.0"
|
||||
langchain-text-splitters = ">=0.3.0,<0.4.0"
|
||||
langsmith = ">=0.1.17,<0.3"
|
||||
numpy = {version = ">=1.22.4,<2", markers = "python_version < \"3.12\""}
|
||||
numpy = [
|
||||
{version = ">=1.22.4,<2", markers = "python_version < \"3.12\""},
|
||||
{version = ">=1.26.2,<3", markers = "python_version >= \"3.12\""},
|
||||
]
|
||||
pydantic = ">=2.7.4,<3.0.0"
|
||||
PyYAML = ">=5.3"
|
||||
requests = ">=2,<3"
|
||||
|
|
@ -3411,7 +3414,10 @@ httpx-sse = ">=0.4.0,<0.5.0"
|
|||
langchain = ">=0.3.11,<0.4.0"
|
||||
langchain-core = ">=0.3.24,<0.4.0"
|
||||
langsmith = ">=0.1.125,<0.3"
|
||||
numpy = {version = ">=1.22.4,<2", markers = "python_version < \"3.12\""}
|
||||
numpy = [
|
||||
{version = ">=1.22.4,<2", markers = "python_version < \"3.12\""},
|
||||
{version = ">=1.26.2,<3", markers = "python_version >= \"3.12\""},
|
||||
]
|
||||
pydantic-settings = ">=2.4.0,<3.0.0"
|
||||
PyYAML = ">=5.3"
|
||||
requests = ">=2,<3"
|
||||
|
|
@ -3433,7 +3439,10 @@ files = [
|
|||
jsonpatch = ">=1.33,<2.0"
|
||||
langsmith = ">=0.1.125,<0.3"
|
||||
packaging = ">=23.2,<25"
|
||||
pydantic = {version = ">=2.5.2,<3.0.0", markers = "python_full_version < \"3.12.4\""}
|
||||
pydantic = [
|
||||
{version = ">=2.5.2,<3.0.0", markers = "python_full_version < \"3.12.4\""},
|
||||
{version = ">=2.7.4,<3.0.0", markers = "python_full_version >= \"3.12.4\""},
|
||||
]
|
||||
PyYAML = ">=5.3"
|
||||
tenacity = ">=8.1.0,<8.4.0 || >8.4.0,<10.0.0"
|
||||
typing-extensions = ">=4.7"
|
||||
|
|
@ -3522,7 +3531,10 @@ files = [
|
|||
[package.dependencies]
|
||||
httpx = ">=0.23.0,<1"
|
||||
orjson = {version = ">=3.9.14,<4.0.0", markers = "platform_python_implementation != \"PyPy\""}
|
||||
pydantic = {version = ">=1,<3", markers = "python_full_version < \"3.12.4\""}
|
||||
pydantic = [
|
||||
{version = ">=1,<3", markers = "python_full_version < \"3.12.4\""},
|
||||
{version = ">=2.7.4,<3.0.0", markers = "python_full_version >= \"3.12.4\""},
|
||||
]
|
||||
requests = ">=2,<3"
|
||||
requests-toolbelt = ">=1.0.0,<2.0.0"
|
||||
|
||||
|
|
@ -5940,7 +5952,8 @@ astroid = ">=3.3.8,<=3.4.0-dev0"
|
|||
colorama = {version = ">=0.4.5", markers = "sys_platform == \"win32\""}
|
||||
dill = [
|
||||
{version = ">=0.2", markers = "python_version < \"3.11\""},
|
||||
{version = ">=0.3.6", markers = "python_version >= \"3.11\""},
|
||||
{version = ">=0.3.7", markers = "python_version >= \"3.12\""},
|
||||
{version = ">=0.3.6", markers = "python_version >= \"3.11\" and python_version < \"3.12\""},
|
||||
]
|
||||
isort = ">=4.2.5,<5.13.0 || >5.13.0,<6"
|
||||
mccabe = ">=0.6,<0.8"
|
||||
|
|
@ -6512,6 +6525,7 @@ grpcio-tools = ">=1.41.0"
|
|||
httpx = {version = ">=0.20.0", extras = ["http2"]}
|
||||
numpy = [
|
||||
{version = ">=1.21,<2.1.0", markers = "python_version < \"3.10\""},
|
||||
{version = ">=1.26", markers = "python_version >= \"3.12\" and python_version < \"3.13\""},
|
||||
{version = ">=1.21", markers = "python_version >= \"3.10\" and python_version < \"3.12\""},
|
||||
]
|
||||
portalocker = ">=2.7.0,<3.0.0"
|
||||
|
|
@ -8832,5 +8846,5 @@ weaviate = ["weaviate-client"]
|
|||
|
||||
[metadata]
|
||||
lock-version = "2.0"
|
||||
python-versions = ">=3.9.0,<3.12"
|
||||
content-hash = "2ba75a8c9ae09f61aeb519982b652acbe826734fdbc8ec009eb9d330bc70ed83"
|
||||
python-versions = ">=3.9.0,<3.13"
|
||||
content-hash = "95cbd8458353c3a295043dd9d999ed89c0bf891ca2d71ed7f653011b5bc77199"
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue