Add MQTT to constraints file (#38049)

pull/38059/head
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

@ -17,6 +17,7 @@ home-assistant-frontend==20200716.0
importlib-metadata==1.6.0;python_version<'3.8'
jinja2>=2.11.1
netdisco==2.8.0
paho-mqtt==1.5.0
pip>=8.0.3
python-slugify==4.0.0
pytz>=2020.1

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"),
}
)
+ [""]
)