-
|
Hi, I've been using Spook manually installed, since I don't have hacs, and I prefer not to. (Spare me the discussions on why, and "you really should") What I am wondering is, if I am the only one, or if someone else has got current Spook working by manual install, in 2025.11.1, since right now it fails with Not exactly sure when it stopped working, since I temporarily disabled it when it was complaining about something I didnt have time to fix just then...and now when I tried re-enabling, I cant. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
|
That issue came up in the beta testing for 2025.11.b0 |
Beta Was this translation helpful? Give feedback.
-
|
I also have this problem on 2025.11.1, and with spook v4.0.1 |
Beta Was this translation helpful? Give feedback.
@TheQue42 I've found the fix.
https://github.com/home-assistant/core/blob/7fe0d96c887709156556a6e8e4c5f022962a77df/homeassistant/loader.py#L126
introduces a version test that ensures spook needs to be >= 4.0.0. However, when you manually install the component from the source tree, it doesn't have a useful version:
spook/custom_components/spook/manifest.json
Line 24 in dd6468d
That's because the version is set by the release machinery:
spook/.github/workflows/release.yaml
Lines 23 to 31 in dd6468d