Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

'ha_strava' does not have a valid version key #30

Open
stinkyfromusc opened this issue May 27, 2021 · 2 comments
Open

'ha_strava' does not have a valid version key #30

stinkyfromusc opened this issue May 27, 2021 · 2 comments

Comments

@stinkyfromusc
Copy link

When I upgraded to the core-2021.6.0b0 release today I received this error:

Logger: homeassistant.loader
Source: loader.py:767
First occurred: 3:24:12 PM (1 occurrences)
Last logged: 3:24:12 PM

The custom integration 'ha_strava' does not have a valid version key (None) in the manifest file and was blocked from loading. See https://developers.home-assistant.io/blog/2021/01/29/custom-integration-changes#versions for more details

@B-Hartley
Copy link

If it doesn't get fixed, just add it to manifest.json in your custom component.

{
  "domain": "ha_strava",
  "name": "Strava Home Assistant",
  "config_flow": true,
  "documentation": "https://github.com/codingcyclist/ha_strava",
  "requirements": ["aiohttp==3.6.1", "voluptuous==0.11.7"],
  "dependencies": [],
  "codeowners": ["@codingcyclist"]
}

becomes.........

{
  "domain": "ha_strava",
  "name": "Strava Home Assistant",
  "config_flow": true,
  "documentation": "https://github.com/codingcyclist/ha_strava",
  "requirements": ["aiohttp==3.6.1", "voluptuous==0.11.7"],
  "dependencies": [],
  "codeowners": ["@codingcyclist"],
  "version": "0.1"  
}

@jouster1974
Copy link

jouster1974 commented Jun 3, 2021

added the above version line but still no joy...anything else need to be done...has anyone confirmed this change did work for them

apols...forgot the comma at the end of the previous line....all working now

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants