From 41f7436669d7aa7aadca09bc0bab504cde4cfab6 Mon Sep 17 00:00:00 2001 From: Justin Mayer Date: Fri, 17 Oct 2025 08:48:41 +0200 Subject: [PATCH] Remove upper bound on Requires-Python Rationale: https://discuss.python.org/t/requires-python-upper-limits/12663 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index b7866962..fb0212a7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -26,7 +26,7 @@ classifiers = [ "Topic :: Text Processing :: Markup :: HTML", "Topic :: Text Processing :: Markup :: reStructuredText", ] -requires-python = ">=3.10,<4.0" +requires-python = ">=3.10" dependencies = [ "blinker>=1.7.0", "docutils>=0.20.1",