From 26e566fec17187136a064552aad7f3fc77fb0876 Mon Sep 17 00:00:00 2001 From: Johannes Ernst Date: Mon, 16 Dec 2024 11:48:25 -0800 Subject: [PATCH] Do not specify upper version in pyproject. Closes #412 (#428) Co-authored-by: Johannes Ernst --- pyproject.toml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 7ea632b..53fd902 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -32,10 +32,9 @@ readme = "README-PyPI.md" # We develop on 3.11, so we can support debian 12 (including Raspberry PI OS) systems, # which have not been upgraded to 3.12 yet. -requires-python = ">=3.11.2, <3.12.0" -# For production, we'd like to say this, but there does not seem to be a syntax for that -# requires-python = ">=3.11" +requires-python = ">=3.11" # We really want 3.12 so we can use @override +# Do not specify an upper boundary, see https://github.com/fediverse-devnet/feditest/issues/412 classifiers = [ "Development Status :: 3 - Alpha", @@ -48,11 +47,9 @@ classifiers = [ "Topic :: Software Development :: Testing" ] - [project.scripts] feditest = "feditest.cli:main" - [project.urls] Homepage = "https://feditest.org/" @@ -61,7 +58,6 @@ exclude = [ "docs/" ] - [tool.pylint."MESSAGES CONTROL"] max-line-length=120 disable="arguments-renamed, empty-docstring, global-variable-not-assigned, line-too-long, missing-class-docstring, missing-function-docstring, too-few-public-methods, too-many-arguments"