Description
.python-version specifies Python 3.10, but onnxruntime 1.24.x only ships wheels for Python 3.11+. uv sync fails out of the box.
Steps to Reproduce
- Clone the repo
- Run
uv sync
Actual vs Expected
- Actual:
error: Distribution onnxruntime==1.24.3 can't be installed because it doesn't have a source distribution or wheel for the current platform
- Expected: Dependencies install successfully.
Additional Notes
Bumping .python-version to 3.12 fixes it. requires-python in pyproject.toml should probably be updated to >=3.11 as well.
Description
.python-versionspecifies Python 3.10, butonnxruntime1.24.x only ships wheels for Python 3.11+.uv syncfails out of the box.Steps to Reproduce
uv syncActual vs Expected
error: Distribution onnxruntime==1.24.3 can't be installed because it doesn't have a source distribution or wheel for the current platformAdditional Notes
Bumping
.python-versionto3.12fixes it.requires-pythoninpyproject.tomlshould probably be updated to>=3.11as well.