akasma74 / Hass-Custom-Alarm

It is a fork of "Yet another take on a home assistant custom alarm" that will exist until its author is back to our Earth
80 stars 31 forks source link

Ruamel attempt to install on boot #56

Closed riddik14 closed 4 years ago

riddik14 commented 4 years ago

why on boot of hassio there is "Attempting install of ruamel.yaml==0.15.42", is a bug or is normal?

riddik14 commented 4 years ago

perché all'avvio di hassio c'è "Tentare di installare ruamel.yaml == 0.15.42", è un bug o è normale?

akasma74 commented 4 years ago

English here please. Yes, it is normal but it should only happen once and should not repeat on every HA start.

SPCulhane commented 4 years ago

@akasma74 this happening on my hass.io install and I have to manually install it because a higher version is already installed. If I don't manually install it, reboots take a long time (they have to timeout trying to install ruamel.yaml==0.15.42). Any ideas?

akasma74 commented 4 years ago

@SPCulhane what is your HA version? If it's 0.93 or newer, open manifest.json and change

"requirements": ["ruamel.yaml==0.15.42"]

to

"requirements": ["ruamel.yaml"]

Otherwise, edit alarm_control_panel.py: relpace

REQUIREMENTS = ['ruamel.yaml==0.15.42']

with

REQUIREMENTS = ['ruamel.yaml']

Please let me know the outcome.

SPCulhane commented 4 years ago

I followed your suggestion and it worked

akasma74 commented 4 years ago

ok, great. I'll release a version with this fix soon.