I have HA installed as a docker image and it is telling me there is an upgrade available. I ran an interactive shell in my docker image and ran
pip3 install --upgrade homeassistant
as instructed on the docker tab at home-assistant.io/getting-started/ but it said it was already up to date:
root@mybox:/usr/src/app# pip3 install --upgrade homeassistant
Requirement already up-to-date: homeassistant in /usr/local/lib/python3.4/site-packages
Requirement already up-to-date: vincenty==0.1.3 in /usr/local/lib/python3.4/site-packages (from homeassistant)
Requirement already up-to-date: pip>=7.0.0 in /usr/local/lib/python3.4/site-packages (from homeassistant)
Requirement already up-to-date: jinja2>=2.8 in /usr/local/lib/python3.4/site-packages/Jinja2-2.8-py3.4.egg (from homeassistant)
Requirement already up-to-date: requests<3,>=2 in /usr/local/lib/python3.4/site-packages (from homeassistant)
Requirement already up-to-date: pyyaml<4,>=3.11 in /usr/local/lib/python3.4/site-packages/PyYAML-3.11-py3.4-linux-x86_64.egg (from homeassistant)
Requirement already up-to-date: pytz>=2015.4 in /usr/local/lib/python3.4/site-packages (from homeassistant)
Requirement already up-to-date: MarkupSafe in /usr/local/lib/python3.4/site-packages/MarkupSafe-0.23-py3.4-linux-x86_64.egg (from jinja2>=2.8->homeassistant)
Am I missing something? Should I just download a new docker image?
Thanks!