Weather Met Office integration does not support platform setup

Hi,
I wonder if anyone came across this issue before. I am trying to setup a Weather Card with Met Office integration. However, I can’t seem to get it to work.

I’m running Home Assistant 0.116.4 on Operating system HassOS 4.14

Here is what I have in the configuration.yaml:

# Weather
weather:
  - platform: metoffice
    name: weather
    api_key: ####
    latitude: ####
    longitude: ####

# Sensors
sensor:
  # Weather prediction
  - platform: metoffice
    api_key: ####
    latitude: ####
    longitude: ####
    monitored_conditions:
        - weather
        - temperature
        - feels_like_temperature
        - wind_speed
        - wind_direction
        - wind_gust
        - visibility
        - visibility_distance
        - uv
        - precipitation
        - humidity

When I try to create a Weather Card, it cannot find the entity.
When I look in the logs, this is what I get:



Logger: homeassistant.components.sensor
Source: helpers/entity_platform.py:121
Integration: Sensor (documentation, issues)
First occurred: 18 October 2020, 18:40:17 (1 occurrences)
Last logged: 18 October 2020, 18:40:17
The metoffice platform for the sensor integration does not support platform setup. Please remove it from your config. 


Logger: homeassistant.components.weather
Source: helpers/entity_platform.py:121
Integration: Weather (documentation, issues)
First occurred: 18 October 2020, 18:40:17 (1 occurrences)
Last logged: 18 October 2020, 18:40:17
The metoffice platform for the weather integration does not support platform setup. Please remove it from your config. 

Could anyone point me in the right direction?

That’s because it moved to the UI setup a while back, as was mentioned in the Breaking Changes for that release.

Remove the YAML, set it up in the UI

Thank you! I missed that.