From 4d5d81ffd2d5f123d1846c566caed1497361c343 Mon Sep 17 00:00:00 2001 From: nojhan Date: Tue, 12 Aug 2025 20:09:37 +0200 Subject: [PATCH] fix: bump docutils and Python `docutils>=0.21.post1` is needed by some dependency, however, it is not on PyPI (anymore?), so we need to explicitely require 0.22. But 0.22 depends on `Python>=3.9`, so Python needs to be upgraded as well. Refs: Fixes issue #217 --- pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 4bcbeff..278d3bb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -23,7 +23,7 @@ classifiers = [ "Programming Language :: Python :: 3.12", ] -requires-python = ">= 3.8" +requires-python = ">= 3.9" dependencies = [ "click>=8.0", "livereload", @@ -40,6 +40,7 @@ dev = [ "ruff>=0.8.0", "types-PyYAML", "twine>=5.1.1", + "docutils>=0.22", ] [project.urls]