Add MQTT to constraints file (#38049)

This commit is contained in:
Paulus Schoutsen 2020-07-21 19:19:32 -07:00 committed by GitHub
parent 726d5fdd94
commit 0ffeb4dea4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 2 deletions

View file

@ -297,8 +297,11 @@ def gather_constraints():
return (
"\n".join(
sorted(
core_requirements()
+ list(gather_recursive_requirements("default_config"))
{
*core_requirements(),
*gather_recursive_requirements("default_config"),
*gather_recursive_requirements("mqtt"),
}
)
+ [""]
)