mirror of
https://github.com/novoid/appendfilename.git
synced 2026-06-14 12:21:25 +00:00
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:
parent
a3ff130839
commit
bdba3fb88f
1 changed files with 1 additions and 0 deletions
|
|
@ -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" }
|
||||
|
|
|
|||
Loading…
Reference in a new issue