Skip to content

Commit

Permalink
python: relax constraint on onnxruntime
Browse files Browse the repository at this point in the history
With a past version of uv, `uv add onnxruntime` would fail. To address
that, we overly constrained the allowed onnxruntime version (#801).

More recent versions of uv have now fixed this
(astral-sh/uv#9827), so we remove the
constraint.

Fixes #835.
  • Loading branch information
reyammer committed Jan 23, 2025
1 parent 0c6e954 commit 787301b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ dynamic = ["version"]

dependencies = [
"click>=8.1.7",
"onnxruntime>=1.17.0,<1.20",
"onnxruntime>=1.17.0",
"numpy>=1.24; python_version < '3.12'",
"numpy>=1.26; python_version >= '3.12' and python_version < '3.13'",
"numpy>=2.1.0; python_version >= '3.13'",
Expand Down

0 comments on commit 787301b

Please sign in to comment.