From c2781328c8b88784acb58857aa432f497edc9c1e Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Tue, 4 Nov 2025 17:59:02 -0800 Subject: [PATCH] python_requires=">=3.9" I would go for 3.10 but this is going to be a security fix so I would prefer to keep it working for older Python if possible. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index d3cb43b0..f1d2373c 100644 --- a/setup.py +++ b/setup.py @@ -42,7 +42,7 @@ setup( "datasette": ["templates/*.html", "vendored/**/*.txt"], }, include_package_data=True, - python_requires=">=3.7", + python_requires=">=3.9", install_requires=[ "asgiref>=3.2.10", "click>=7.1.1",