Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
Added fix for `numpy 2.0.0` error
  • Loading branch information
fboundy authored Jun 18, 2024
1 parent beb3155 commit 2a64809
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# PV Opt: Home Assistant Solar/Battery Optimiser v3.15.1
# PV Opt: Home Assistant Solar/Battery Optimiser v3.15.2

Solar / Battery Charging Optimisation for Home Assistant. This appDaemon application attempts to optimise charging and discharging of a home solar/battery system to minimise cost electricity cost on a daily basis using freely available solar forecast data from SolCast. This is particularly beneficial for Octopus Agile but is also benefeficial for other time-of-use tariffs such as Octopus Flux or simple Economy 7.

Expand Down Expand Up @@ -183,12 +183,13 @@ AppDaemon is a loosely coupled, multi-threaded, sandboxed python execution envir

5. Click on <b>Configuration</b> at the top

6. Click the 3 dots and <b>Edit in YAML</b> to add `pandas` as a Python package:
6. Click the 3 dots and <b>Edit in YAML</b> to add `pandas` and `numpy` as Python packages. Note that `numpy` has to be set to version `1.26.4` due to an unresolved compatability issue between Home Assistant and `2.0.0`:

```
init_commands: []
python_packages:
- pandas
- numpy==1.26.4
system_packages: []
```
Expand Down

0 comments on commit 2a64809

Please sign in to comment.