From: Aleš Mrázek Date: Wed, 27 Aug 2025 09:48:59 +0000 (+0200) Subject: pyproject.toml: added build dependencies group X-Git-Tag: v6.0.16~18^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c0f8d4a90837fe95905550e46d3978da322acc5c;p=thirdparty%2Fknot-resolver.git pyproject.toml: added build dependencies group --- diff --git a/pyproject.toml b/pyproject.toml index 6bd77adc6..60a1c636d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -40,6 +40,10 @@ watchdog = { version = "*", optional = true } prometheus = ["prometheus-client"] watchdog = ["watchdog"] +[tool.poetry.group.build.dependencies] +poetry-core = ">=1.0.0" +setuptools = ">=67.8.0" + [tool.poetry.group.dev.dependencies] poetry = "^1.8.3" pyparsing = "^3.1.1" @@ -129,7 +133,7 @@ no_implicit_optional = true [build-system] requires = [ - "poetry-core>=1.0.0", - "setuptools>=67.8.0" + "poetry-core", + "setuptools" ] build-backend = "poetry.core.masonry.api"