Skip to content
Merged
Show file tree
Hide file tree
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
9 changes: 5 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,6 @@ classifiers = [
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
]
requires-python = ">=3.10"
dependencies = [
"packaging",
]
dynamic = ["version"]

[project.urls]
Expand All @@ -47,7 +44,10 @@ Documentation = "https://gunicorn.org"
Changelog = "https://gunicorn.org/news/"

[project.optional-dependencies]
gevent = ["gevent>=24.10.1"]
gevent = [
"gevent>=24.10.1",
"packaging",
]
tornado = ["tornado>=6.5.0"]
gthread = []
setproctitle = ["setproctitle"]
Expand All @@ -57,6 +57,7 @@ testing = [
"gevent>=24.10.1",
"h2>=4.1.0",
"coverage",
"packaging",

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

NB: I didn't mention this additional line when I wrote the discussion thread topic; I noticed it today while scanning the pyproject.toml file again. It seems to more-or-less mirror the requirement list in requirements_test.txt, so I've added packaging here too, for consistency.

"pytest",
"pytest-cov",
"pytest-asyncio",
Expand Down
1 change: 1 addition & 0 deletions requirements_test.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
gevent
coverage
packaging
pytest>=7.2.0
pytest-cov
pytest-asyncio
Expand Down
Loading