Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Do not specify upper version in pyproject. Closes #412 #428

Merged
merged 1 commit into from
Dec 16, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading