Untag discovery as an allowed dependency (#31934)

This commit is contained in:
Paulus Schoutsen 2020-02-18 08:32:56 -08:00 committed by GitHub
parent 7be3a4cd37
commit b73531b2fc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 7 additions and 2 deletions

View file

@ -4,5 +4,6 @@
"documentation": "https://www.home-assistant.io/integrations/apple_tv", "documentation": "https://www.home-assistant.io/integrations/apple_tv",
"requirements": ["pyatv==0.3.13"], "requirements": ["pyatv==0.3.13"],
"dependencies": ["configurator"], "dependencies": ["configurator"],
"after_dependencies": ["discovery"],
"codeowners": [] "codeowners": []
} }

View file

@ -4,5 +4,6 @@
"documentation": "https://www.home-assistant.io/integrations/freebox", "documentation": "https://www.home-assistant.io/integrations/freebox",
"requirements": ["aiofreepybox==0.0.8"], "requirements": ["aiofreepybox==0.0.8"],
"dependencies": [], "dependencies": [],
"after_dependencies": ["discovery"],
"codeowners": ["@snoof85"] "codeowners": ["@snoof85"]
} }

View file

@ -4,5 +4,6 @@
"documentation": "https://www.home-assistant.io/integrations/octoprint", "documentation": "https://www.home-assistant.io/integrations/octoprint",
"requirements": [], "requirements": [],
"dependencies": [], "dependencies": [],
"after_dependencies": ["discovery"],
"codeowners": [] "codeowners": []
} }

View file

@ -4,5 +4,6 @@
"documentation": "https://www.home-assistant.io/integrations/roku", "documentation": "https://www.home-assistant.io/integrations/roku",
"requirements": ["roku==4.0.0"], "requirements": ["roku==4.0.0"],
"dependencies": [], "dependencies": [],
"after_dependencies": ["discovery"],
"codeowners": [] "codeowners": []
} }

View file

@ -4,5 +4,6 @@
"documentation": "https://www.home-assistant.io/integrations/sabnzbd", "documentation": "https://www.home-assistant.io/integrations/sabnzbd",
"requirements": ["pysabnzbd==1.1.0"], "requirements": ["pysabnzbd==1.1.0"],
"dependencies": ["configurator"], "dependencies": ["configurator"],
"after_dependencies": ["discovery"],
"codeowners": [] "codeowners": []
} }

View file

@ -4,5 +4,6 @@
"documentation": "https://www.home-assistant.io/integrations/xiaomi_aqara", "documentation": "https://www.home-assistant.io/integrations/xiaomi_aqara",
"requirements": ["PyXiaomiGateway==0.12.4"], "requirements": ["PyXiaomiGateway==0.12.4"],
"dependencies": [], "dependencies": [],
"after_dependencies": ["discovery"],
"codeowners": ["@danielhiversen", "@syssi"] "codeowners": ["@danielhiversen", "@syssi"]
} }

View file

@ -4,5 +4,6 @@
"documentation": "https://www.home-assistant.io/integrations/yeelight", "documentation": "https://www.home-assistant.io/integrations/yeelight",
"requirements": ["yeelight==0.5.0"], "requirements": ["yeelight==0.5.0"],
"dependencies": [], "dependencies": [],
"after_dependencies": ["discovery"],
"codeowners": ["@rytilahti", "@zewelor"] "codeowners": ["@rytilahti", "@zewelor"]
} }

View file

@ -103,8 +103,6 @@ ALLOWED_USED_COMPONENTS = {
"homeassistant", "homeassistant",
"system_log", "system_log",
"person", "person",
# Discovery
"discovery",
# Other # Other
"mjpeg", # base class, has no reqs or component to load. "mjpeg", # base class, has no reqs or component to load.
"stream", # Stream cannot install on all systems, can be imported without reqs. "stream", # Stream cannot install on all systems, can be imported without reqs.