Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
More correctly work around
uv sync
issue with python 3.10+ only dep (…
…#43227) Just having the python_version requirement doesn't seem to correctly make uv "fork" the resolver path (Charlie's words/terms), so we either need to specify both module versions here. The other option that could work is putting this in our pyproject.toml ``` [tool.uv] environments = ["python_version >= '3.10'", "python_version < '3.10'"] ``` But having both versions specified keeps the fix localized into the provider so I have chosen this approach. This is likely why the exclued-python-version setting we already had wasn't working for uv sync. astral-sh/uv#4668
- Loading branch information