mirror of
https://github.com/astral-sh/setup-uv.git
synced 2026-01-11 06:12:06 +00:00
The test-no-python-version test was failing because hatchling's dependency on pathspec was incompatible with Python 3.9, causing a TypeError during the build process. Fixed by switching from hatchling to uv_build backend (0.9.22-0.10.0 range) which is fully compatible with Python 3.9. The uv.lock file is updated to reflect the new build backend and latest compatible versions of dependencies.
14 lines
283 B
TOML
14 lines
283 B
TOML
[project]
|
|
name = "old-python-constraint-project"
|
|
version = "0.1.0"
|
|
description = "Add your description here"
|
|
readme = "README.md"
|
|
requires-python = ">=3.8,<=3.9"
|
|
dependencies = [
|
|
"ruff>=0.6.2",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["uv_build>=0.9.22,<0.10.0"]
|
|
build-backend = "uv_build"
|