You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
uv-actions like run or add fail to find Python-3.13. However uv python list lists Python-3.13.
uv init example
uv --directory=example add rich
# error: No interpreter found for Python >=3.13 in managed installations or system path
uv --directory=example run hello.py
# error: No interpreter found for Python >=3.13 in managed installations or system path
uv python list
# cpython-3.13.0-linux-x86_64-gnu /usr/lib/python-exec/python3.13/python3 -> ../../../bin/python3.13# cpython-3.13.0-linux-x86_64-gnu /usr/lib/python-exec/python3.13/python -> python3# cpython-3.13.0-linux-x86_64-gnu /usr/bin/python3.13# cpython-3.12.5-linux-x86_64-gnu /usr/bin/python3.12# cpython-3.12.5-linux-x86_64-gnu <download available># ...
cat example/pyproject.toml
# [project]# name = "example"# version = "0.1.0"# description = "Add your description here"# readme = "README.md"# requires-python = ">=3.13"# dependencies = []
Is there a check that fails for release candidates, maybe?
Yeah it's possible 3.13.0rc1 technically does not satisfy >=3.13, but we make an effort to ignore prerelease segments there. We might be missing one. I'll take a look today.
uv
-actions likerun
oradd
fail to find Python-3.13. Howeveruv python list
lists Python-3.13.Is there a check that fails for release candidates, maybe?
The text was updated successfully, but these errors were encountered: