diff options
author | Tomasz Kramkowski <tomasz@kramkow.ski> | 2025-08-31 18:35:17 +0100 |
---|---|---|
committer | Tomasz Kramkowski <tomasz@kramkow.ski> | 2025-08-31 18:53:40 +0100 |
commit | a7836478a1cc144108982e1de5b98557592df3d3 (patch) | |
tree | 0438867f1faaf915eb3d8ffb15ee5097e060bdcc | |
parent | 035db3cf54c04c569c4b547721de601b1c7c242f (diff) | |
download | ssg-a7836478a1cc144108982e1de5b98557592df3d3.tar.gz ssg-a7836478a1cc144108982e1de5b98557592df3d3.tar.xz ssg-a7836478a1cc144108982e1de5b98557592df3d3.zip |
Fix required python version
-rw-r--r-- | pyproject.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyproject.toml b/pyproject.toml index 8c35ad0..cf1c58c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,6 +4,7 @@ build-backend = "flit_core.buildapi" [project] name = "ssg" +requires-python = ">= 3.11" dependencies = ["Jinja2 >= 3,< 4"] authors = [{name = "Tomasz Kramkowski", email = "tomasz@kramkow.ski"}] license = "MIT" @@ -13,7 +14,6 @@ classifiers = [ "Topic :: Software Development :: Libraries :: Python Modules", ] dynamic = ["description", "version"] -requires-python = "~=3.6" urls = { Source = "https://the-tk.com/cgit/ssg/" } |