From bdba3fb88fca51e64d8a26b6781e1cbb06721131 Mon Sep 17 00:00:00 2001 From: Norwid Behrnd Date: Wed, 13 May 2026 17:27:33 +0200 Subject: [PATCH] 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 --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 8eef0a7..05a4666 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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" }