1
0
mirror of https://github.com/home-assistant/core.git synced 2026-05-08 17:49:37 +01:00

Add mkdocs and sphinx to forbidden packages (#155781)

This commit is contained in:
Marc Mueller
2025-11-04 17:08:33 +01:00
committed by GitHub
parent 9e7bef9fa7
commit 4cdfa3bddb
+4
View File
@@ -94,6 +94,8 @@ FORBIDDEN_PACKAGES = {
"async-timeout": "be replaced by asyncio.timeout (Python 3.11+)",
# Only needed for tests
"codecov": "not be a runtime dependency",
# Only needed for docs
"mkdocs": "not be a runtime dependency",
# Does blocking I/O and should be replaced by pyserial-asyncio-fast
# See https://github.com/home-assistant/core/pull/116635
"pyserial-asyncio": "be replaced by pyserial-asyncio-fast",
@@ -101,6 +103,8 @@ FORBIDDEN_PACKAGES = {
"pytest": "not be a runtime dependency",
# Only needed for build
"setuptools": "not be a runtime dependency",
# Only needed for docs
"sphinx": "not be a runtime dependency",
# Only needed for build
"wheel": "not be a runtime dependency",
}