silence poetry warning (#10127)

when reviewing https://github.com/certbot/certbot/pull/10126 and running
`tools/pinning/oldest/repin.sh` using a freshly created dev environment,
i was repeatedly given the message

> The "poetry.dev-dependencies" section is deprecated and will be
removed in a future version. Use "poetry.group.dev.dependencies"
instead.

i believe this section was generated automatically by poetry's tooling
when it created the initial boilerplate file for us, but we don't use
it, so i just deleted the section which makes the warnings disappear
This commit is contained in:
Brad Warren
2025-01-10 12:52:24 -08:00
committed by GitHub
parent 0425b87b78
commit 5411e4c86a
2 changed files with 0 additions and 5 deletions
-3
View File
@@ -75,9 +75,6 @@ cryptography = "!= 37.0.3"
# version of tox to keep deterministic builds. # version of tox to keep deterministic builds.
tox = ">=4" tox = ">=4"
[tool.poetry.dev-dependencies]
[build-system] [build-system]
requires = ["poetry-core>=1.0.0"] requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api" build-backend = "poetry.core.masonry.api"
-2
View File
@@ -97,8 +97,6 @@ cython = "<3.0"
# We add any dependencies that must be specified in this file for any another # We add any dependencies that must be specified in this file for any another
# reason below. # reason below.
[tool.poetry.dev-dependencies]
[build-system] [build-system]
requires = ["poetry-core>=1.0.0"] requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api" build-backend = "poetry.core.masonry.api"