Skip to content

Commit 0e56487

Browse files
committed
Fix pyproject.toml configuration for uv_build
- Update requires-python to >=3.10 - Use correct [tool.uv.build-backend] section for flat layout - Add version constraint to uv_build (>=0.9.18,<0.10.0)
1 parent bc661f8 commit 0e56487

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

pyproject.toml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "shot-scraper"
33
version = "1.8"
44
description = "A command-line utility for taking automated screenshots of websites"
55
readme = "README.md"
6-
requires-python = ">=3.7"
6+
requires-python = ">=3.10"
77
license = "Apache-2.0"
88
authors = [
99
{ name = "Simon Willison" }
@@ -44,5 +44,8 @@ docs = [
4444
]
4545

4646
[build-system]
47-
requires = ["uv_build"]
47+
requires = ["uv_build>=0.9.18,<0.10.0"]
4848
build-backend = "uv_build"
49+
50+
[tool.uv.build-backend]
51+
module-root = ""

0 commit comments

Comments
 (0)