Skip to content

Commit

Permalink
Do not specify upper version in pyproject. Closes #412 (#428)
Browse files Browse the repository at this point in the history
Co-authored-by: Johannes Ernst <git@j12t.org>
  • Loading branch information
jernst and Johannes Ernst authored Dec 16, 2024
1 parent f31e14c commit 26e566f
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -48,11 +47,9 @@ classifiers = [
"Topic :: Software Development :: Testing"
]


[project.scripts]
feditest = "feditest.cli:main"


[project.urls]
Homepage = "https://feditest.org/"

Expand All @@ -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"
Expand Down

0 comments on commit 26e566f

Please sign in to comment.