Colorlog is a dependency of the check_config script (#535)

* Colorlog is a dependency of the check_config script

* Update build.json

* Update Dockerfile

* Update config.json

* Update CHANGELOG.md

* Update config.json
This commit is contained in:
Paulus Schoutsen
2019-03-08 08:24:30 -08:00
committed by Pascal Vizeli
parent 06c9c94f94
commit a2fb10a14e
4 changed files with 13 additions and 8 deletions

View File

@@ -1,4 +1,8 @@
# Changelog
## 1.0
- Update to Python 3.7
- Add colorlog to pip packages
## 0.9
- Fix build errors with 0.76

View File

@@ -4,8 +4,8 @@ FROM $BUILD_FROM
# Setup base
RUN apk add --no-cache \
jq gcc \
libffi-dev libressl-dev musl-dev \
&& pip3 install --no-cache --upgrade pip
libffi-dev openssl-dev musl-dev \
&& pip3 install --no-cache --upgrade pip colorlog
# Copy data
COPY run.sh /

View File

@@ -1,8 +1,9 @@
{
"build_from": {
"amd64": "homeassistant/amd64-base-python:3.6",
"i386": "homeassistant/i386-base-python:3.6",
"armhf": "homeassistant/armhf-base-python:3.6",
"aarch64": "homeassistant/aarch64-base-python:3.6"
"amd64": "homeassistant/amd64-base-python:3.7",
"i386": "homeassistant/i386-base-python:3.7",
"armhf": "homeassistant/armhf-base-python:3.7",
"armv7": "homeassistant/armv7-base-python:3.7",
"aarch64": "homeassistant/aarch64-base-python:3.7"
}
}

View File

@@ -1,10 +1,10 @@
{
"name": "Check Home Assistant configuration",
"version": "0.9",
"version": "1.0",
"slug": "check_config",
"description": "Check current Home Assistant configuration against a new version",
"url": "https://home-assistant.io/addons/check_config/",
"arch": ["armhf", "aarch64", "amd64", "i386"],
"arch": ["armhf", "armv7", "aarch64", "amd64", "i386"],
"startup": "once",
"boot": "manual",
"map": ["config", "ssl"],