build(pyproject.toml): soften interpreter constraint >= p310

Per Python Packing User Guide,[1] a `requires-python` in file
`pyproject.toml` (still) is necessary,

> To actually restrict what Python versions a project can be
> installed on, use the requires-python argument.

and the source code actually works with an interpreter older
than 3.13 (previously set in `uv.lock`).  With the current EOLs
in mind,[2] Python p310 up to and including p314 looks fine.

[1] https://packaging.python.org/en/latest/guides/writing-pyproject-toml/
[2] https://devguide.python.org/versions/

Signed-off-by: Norwid Behrnd <nbehrnd@yahoo.com>
This commit is contained in:
Norwid Behrnd 2026-05-13 17:27:33 +02:00
parent a3ff130839
commit bdba3fb88f
No known key found for this signature in database

View file

@ -2,6 +2,7 @@
[project]
name = "appendfilename"
version = "2026.03.01.1"
requires-python = ">=3.10"
description = "Intelligent appending text to file names, considering file extensions and file tags"
license = "GPL-3.0-or-later"
readme = { file = "README.org", content-type = "text/plain" }