Update poetry dev dependencies name (#19081)

This commit is contained in:
Andrew Morgan 2025-10-24 12:19:40 +02:00 committed by GitHub
parent a092d2053a
commit 123eff1bc0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 4 additions and 3 deletions

1
changelog.d/19081.misc Normal file
View File

@ -0,0 +1 @@
Update the deprecated poetry development dependencies group name in `pyproject.toml`.

View File

@ -69,7 +69,7 @@ warn_unused_ignores = False
;; https://github.com/python/typeshed/tree/master/stubs
;; and for each package `foo` there's a corresponding `types-foo` package on PyPI,
;; which we can pull in as a dev dependency by adding to `pyproject.toml`'s
;; `[tool.poetry.dev-dependencies]` list.
;; `[tool.poetry.group.dev.dependencies]` list.
# https://github.com/lepture/authlib/issues/460
[mypy-authlib.*]

2
poetry.lock generated
View File

@ -3293,4 +3293,4 @@ url-preview = ["lxml"]
[metadata]
lock-version = "2.1"
python-versions = "^3.9.0"
content-hash = "0058b93ca13a3f2a0cfc28485ddd8202c42d0015dbaf3b9692e43f37fe2a0be6"
content-hash = "5d71c862b924bc2af936cb6fef264a023213153543f738af31357deaf6de19b8"

View File

@ -325,7 +325,7 @@ all = [
# - systemd: this is a system-based requirement
]
[tool.poetry.dev-dependencies]
[tool.poetry.group.dev.dependencies]
# We pin development dependencies in poetry.lock so that our tests don't start
# failing on new releases. Keeping lower bounds loose here means that dependabot
# can bump versions without having to update the content-hash in the lockfile.