Skip to content

Commit

Permalink
make greenlet an optional mainapp dep
Browse files Browse the repository at this point in the history
  • Loading branch information
graingert authored Jul 30, 2024
1 parent 44783bf commit f2e27ac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,6 @@ dependencies = [
"decorator",
"flasgger",
"flask >= 2.2.4",
'greenlet < 3.0; python_version<"3.12"',
'greenlet >= 3.0.0a1; python_version>="3.12.0rc0"',
'importlib-metadata; python_version<"3.8"',
"six",
"werkzeug >= 2.2.2",
Expand All @@ -47,6 +45,8 @@ test = ["pytest", "tox"]
mainapp = [
"gunicorn",
"gevent",
'greenlet < 3.0; python_version<"3.12"',
'greenlet >= 3.0.0a1; python_version>="3.12.0rc0"',
]

[tool.setuptools.packages.find]
Expand Down

0 comments on commit f2e27ac

Please sign in to comment.