Skip to content

Commit

Permalink
python: add back constrains for onnxruntime
Browse files Browse the repository at this point in the history
Fixes #922.
  • Loading branch information
reyammer committed Jan 24, 2025
1 parent 40170e1 commit c3108e4
Show file tree
Hide file tree
Showing 2 changed files with 61 additions and 11 deletions.
4 changes: 3 additions & 1 deletion python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,11 @@ classifiers = [
]
dynamic = ["version"]


dependencies = [
"click>=8.1.7",
"onnxruntime>=1.17.0",
"onnxruntime>=1.17.0 ; python_version > '3.9'",
"onnxruntime>=1.17.0, <1.20.1 ; python_version <= '3.9'",
"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
68 changes: 58 additions & 10 deletions python/uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit c3108e4

Please sign in to comment.