fix: limit onnxruntime version

This commit is contained in:
Boris Arzentar 2025-09-26 09:57:53 +02:00
parent 8246a6a02f
commit 1deab2d54e
No known key found for this signature in database
GPG key ID: D5CC274C784807B7
3 changed files with 5 additions and 4 deletions

3
poetry.lock generated
View file

@ -2254,6 +2254,7 @@ files = [
{file = "fastuuid-0.12.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b9b31dd488d0778c36f8279b306dc92a42f16904cba54acca71e107d65b60b0c"},
{file = "fastuuid-0.12.0-cp313-cp313-manylinux_2_34_x86_64.whl", hash = "sha256:b19361ee649365eefc717ec08005972d3d1eb9ee39908022d98e3bfa9da59e37"},
{file = "fastuuid-0.12.0-cp313-cp313-win_amd64.whl", hash = "sha256:8fc66b11423e6f3e1937385f655bedd67aebe56a3dcec0cb835351cfe7d358c9"},
{file = "fastuuid-0.12.0-cp38-cp38-macosx_10_12_x86_64.whl", hash = "sha256:2925f67b88d47cb16aa3eb1ab20fdcf21b94d74490e0818c91ea41434b987493"},
{file = "fastuuid-0.12.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:7b15c54d300279ab20a9cc0579ada9c9f80d1bc92997fc61fb7bf3103d7cb26b"},
{file = "fastuuid-0.12.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:458f1bc3ebbd76fdb89ad83e6b81ccd3b2a99fa6707cd3650b27606745cfb170"},
{file = "fastuuid-0.12.0-cp38-cp38-manylinux_2_34_x86_64.whl", hash = "sha256:a8f0f83fbba6dc44271a11b22e15838641b8c45612cdf541b4822a5930f6893c"},
@ -11897,4 +11898,4 @@ posthog = ["posthog"]
[metadata]
lock-version = "2.1"
python-versions = ">=3.10,<=3.13"
content-hash = "463d131171a4b57481f20ffad9ff98b1a5a08a2b6a64ac51fb65e54d20765e89"
content-hash = "49d2d5207803b6b56e0bbf2be871941f4fc4535d0bc823815e0a7cbe61e12574"

View file

@ -46,7 +46,7 @@ dependencies = [
"fastapi-users[sqlalchemy]>=14.0.1,<15.0.0",
"structlog>=25.2.0,<26",
"pympler>=1.1,<2.0.0",
"onnxruntime>=1.0.0,<2.0.0",
"onnxruntime<=1.22.1",
"pylance>=0.22.0,<=0.36.0",
"kuzu (==0.11.0)",
"python-magic-bin<0.5 ; platform_system == 'Windows'", # Only needed for Windows

2
uv.lock generated
View file

@ -1023,7 +1023,7 @@ requires-dist = [
{ name = "notebook", marker = "extra == 'dev'", specifier = ">=7.1.0,<8" },
{ name = "notebook", marker = "extra == 'notebook'", specifier = ">=7.1.0,<8" },
{ name = "numpy", specifier = ">=1.26.4,<=4.0.0" },
{ name = "onnxruntime", specifier = ">=1.0.0,<2.0.0" },
{ name = "onnxruntime", specifier = "<=1.22.1" },
{ name = "openai", specifier = ">=1.80.1" },
{ name = "pandas", marker = "extra == 'evals'", specifier = ">=2.2.2,<3.0.0" },
{ name = "pgvector", marker = "extra == 'postgres'", specifier = ">=0.3.5,<0.4" },