mirror of
https://github.com/home-assistant/core.git
synced 2025-04-25 01:38:02 +00:00
Add MQTT to constraints file (#38049)
This commit is contained in:
parent
726d5fdd94
commit
0ffeb4dea4
@ -17,6 +17,7 @@ home-assistant-frontend==20200716.0
|
|||||||
importlib-metadata==1.6.0;python_version<'3.8'
|
importlib-metadata==1.6.0;python_version<'3.8'
|
||||||
jinja2>=2.11.1
|
jinja2>=2.11.1
|
||||||
netdisco==2.8.0
|
netdisco==2.8.0
|
||||||
|
paho-mqtt==1.5.0
|
||||||
pip>=8.0.3
|
pip>=8.0.3
|
||||||
python-slugify==4.0.0
|
python-slugify==4.0.0
|
||||||
pytz>=2020.1
|
pytz>=2020.1
|
||||||
|
@ -297,8 +297,11 @@ def gather_constraints():
|
|||||||
return (
|
return (
|
||||||
"\n".join(
|
"\n".join(
|
||||||
sorted(
|
sorted(
|
||||||
core_requirements()
|
{
|
||||||
+ list(gather_recursive_requirements("default_config"))
|
*core_requirements(),
|
||||||
|
*gather_recursive_requirements("default_config"),
|
||||||
|
*gather_recursive_requirements("mqtt"),
|
||||||
|
}
|
||||||
)
|
)
|
||||||
+ [""]
|
+ [""]
|
||||||
)
|
)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user