diff --git a/emhass/CHANGELOG.md b/emhass/CHANGELOG.md index 42820f5..f2cc783 100644 --- a/emhass/CHANGELOG.md +++ b/emhass/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [0.4.0] - 2023-09-03 +Improvements and fixes following update of EMHASS code v0.5.0 +### Improvement +- Finally added support for ingress thanks to the work from @siku2 +- Added a devcontainer and pave the way for ingress access +### Fix +- Added some code to fix some numerical syntax issues in tables + ## [0.3.16] - 2023-08-11 Improvements and fixes following update of EMHASS code v0.4.15 ### Improvement diff --git a/emhass/Dockerfile b/emhass/Dockerfile index 5ee06fa..a4d15e9 100644 --- a/emhass/Dockerfile +++ b/emhass/Dockerfile @@ -6,7 +6,7 @@ WORKDIR /usr/src # copy the requirements file into the image COPY ./requirements.txt /usr/src/requirements.txt -#COPY ./emhass-0.4.11-py3-none-any.whl /usr/src/emhass-0.4.11-py3-none-any.whl +# COPY ./emhass-0.5.0-py3-none-any.whl /usr/src/emhass-0.5.0-py3-none-any.whl # Setup RUN apt-get update \ @@ -34,7 +34,7 @@ RUN apt-get update \ #&& pip3 install netCDF4==1.5.4 \ && pip3 install --extra-index-url=https://www.piwheels.org/simple --no-cache-dir -U setuptools wheel \ && pip3 install --extra-index-url=https://www.piwheels.org/simple --no-cache-dir -r requirements.txt \ - #&& pip3 install emhass-0.4.11-py3-none-any.whl \ + # && pip3 install emhass-0.5.0-py3-none-any.whl \ && apt-get purge -y --auto-remove \ python3-pip \ python3-dev \ diff --git a/emhass/config.yml b/emhass/config.yml index ffd31ba..6179348 100644 --- a/emhass/config.yml +++ b/emhass/config.yml @@ -1,7 +1,7 @@ name: EMHASS description: Energy Management for Home Assistant url: https://github.com/davidusb-geek/emhass -version: 0.3.16 +version: 0.4.0 slug: emhass arch: - aarch64 diff --git a/emhass/requirements.txt b/emhass/requirements.txt index 402ace3..e5b7ce7 100644 --- a/emhass/requirements.txt +++ b/emhass/requirements.txt @@ -1,7 +1,7 @@ numpy==1.22.2 pandas==1.4.1 -six==1.16.0 -pvlib>=0.9.1 +scipy<1.9.0 +pvlib>=0.10.1 protobuf>=3.0.0 pytz>=2021.1 requests>=2.25.1 @@ -9,8 +9,9 @@ beautifulsoup4>=4.9.3 pulp>=2.4 pyyaml>=5.4.1 tables==3.7.0 +skforecast==0.9.1 flask>=2.0.3 waitress>=2.1.1 plotly>=5.6.0 -emhass==0.4.15 +emhass==0.5.0 #git+https://github.com/davidusb-geek/emhass \ No newline at end of file