Version Warning in Manifest.json persists

I have a custom component which is being loaded from my deps/lib/python3.8/site-packages/ and is in my custom components folder. I’ve added the version info. But i’m still getting the warning that the version info is missing. Anyone know where else to put it?

Kind regards

Same for me, I included it in my manifest.json:

{
  "domain": "waste_AT_BMV",
  "name": "Abfall Sensor Burgenländischer Müllverband (BMV)",
  "documentation": "https://github.com/ChrLipp/homeassistant",
  "version": "1.0.0",
  "dependencies": [],
  "codeowners": [],
  "requirements": []
}

but the warning still occurs with the current HA version (2021.4.3):

2021-04-19 12:01:37 WARNING (MainThread) [homeassistant.loader] No 'version' key in the manifest file for custom integration 'waste_at_bmv'. As of Home Assistant 2021.6, this integration will no longer be loaded. Please report this to the maintainer of 'waste_at_bmv'

I found the fix for me. The names of the domain and name need to be the same as the name of the folder that has the manifest.json fiile in it.

Thanks a lot for the hint. I changed my domain to

"domain": "waste_at_bmv"

and everything works now. Only the capitalisation was wrong. There was no need to change the name.

No problem. Glad it helped :+1: