Skip to content

Commit cc7ac99

Browse files
committed
MNT add python version requirement
My development tools (uv) were complaining about the missing `requires-python` field in `pyproject.toml`. This adds a dependency on at least 3.11, which is what scipy and numpy currently demands.
1 parent 6309a6a commit cc7ac99

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

pyproject.toml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,14 @@ dependencies = [
2222
]
2323
dynamic = ["version"]
2424

25+
requires-python = ">=3.11"
26+
27+
classifiers = [
28+
"Programming Language :: Python :: 3 :: Only",
29+
"Programming Language :: Python :: 3.11",
30+
"Programming Language :: Python :: 3.12",
31+
"Programming Language :: Python :: 3.13",
32+
]
2533

2634
[tool.setuptools.dynamic]
2735
version = {attr = "skglm.__version__"}

0 commit comments

Comments
 (0)