summaryrefslogtreecommitdiffstats
path: root/pyproject.toml
diff options
context:
space:
mode:
authorTomasz Kramkowski <tomasz@kramkow.ski>2025-08-31 18:35:17 +0100
committerTomasz Kramkowski <tomasz@kramkow.ski>2025-08-31 18:53:40 +0100
commita7836478a1cc144108982e1de5b98557592df3d3 (patch)
tree0438867f1faaf915eb3d8ffb15ee5097e060bdcc /pyproject.toml
parent035db3cf54c04c569c4b547721de601b1c7c242f (diff)
downloadssg-a7836478a1cc144108982e1de5b98557592df3d3.tar.gz
ssg-a7836478a1cc144108982e1de5b98557592df3d3.tar.xz
ssg-a7836478a1cc144108982e1de5b98557592df3d3.zip
Fix required python version
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml2
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/" }