1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-24 12:59:34 +00:00

Fix building of Python Wheels (#37433)

This commit is contained in:
Franck Nijhof
2020-07-03 21:33:35 +02:00
committed by GitHub
parent e33a3bb94a
commit 1aafa459e5
2 changed files with 23 additions and 2 deletions

View File

@@ -237,7 +237,9 @@ def requirements_all_output(reqs):
"""Generate output for requirements_all."""
output = []
output.append("# Home Assistant Core, full dependency set\n")
output.append("-r requirements.txt\n")
output.append("\n")
output.append("\n".join(core_requirements()))
output.append("\n")
output.append(generate_requirements_list(reqs))
return "".join(output)