This is an automated email from the ASF dual-hosted git repository. gstein pushed a commit to branch trunk in repository https://gitbox.apache.org/repos/asf/steve.git
commit 9cc722732fbfd1955144a056b58c0f292a34a45c Author: Greg Stein <[email protected]> AuthorDate: Fri Sep 26 11:31:23 2025 -0500 make the server optional --- v3/pyproject.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/v3/pyproject.toml b/v3/pyproject.toml index 401be49..c73041f 100644 --- a/v3/pyproject.toml +++ b/v3/pyproject.toml @@ -10,7 +10,6 @@ repository = "https://github.com/apache/steve" [tool.poetry.dependencies] python = "^3.10" asfpy = ">=0.56" -asfquart = ">=0.1.12" ezt = "^1.1" easydict = "^1.13" passlib = "^1.7.4" @@ -20,6 +19,9 @@ argon2-cffi = "^25.1.0" [tool.poetry.group.test.dependencies] coverage = "^7.10.6" +[tool.poetry.group.server.dependencies] +asfquart = ">=0.1.12" # For server web app, pulls in quart transitively + [build-system] requires = ["poetry-core"] build-backend = "poetry.core.masonry.api"
