diff --git a/README.md b/README.md
index 0b5ab3f..da7fc91 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-# PV Opt: Home Assistant Solar/Battery Optimiser v3.8.4
+# PV Opt: Home Assistant Solar/Battery Optimiser v3.8.5
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.
@@ -123,7 +123,7 @@ AppDaemon is a loosely coupled, multi-threaded, sandboxed python execution envir
3. Turn on Auto update
-
9. Configure AppDaemon
+11. Configure AppDaemon
1. Use `File Editor` (or one of the alternatives) to open `/addon_configs/a0d7b954_appdaemon/appdaemon.yaml`.
@@ -177,12 +177,11 @@ AppDaemon is a loosely coupled, multi-threaded, sandboxed python execution envir
5. Click on Configuration at the top
-6. Click the 3 dots and Edit in YAML to add `numpy==1.25` and `pandas` as a Python package (note that `numpy` versions >1.25 appear to cause installation errors with appDaemon):
+6. Click the 3 dots and Edit in YAML to add `pandas` as a Python package:
```
init_commands: []
python_packages:
- - numpy==1.25
- pandas
system_packages: []
@@ -242,7 +241,7 @@ AppDaemon is a loosely coupled, multi-threaded, sandboxed python execution envir
That's it. AppDaemon is up and running. There is futher documentation for the on the [Add-on](https://github.com/hassio-addons/addon-appdaemon/blob/main/appdaemon/DOCS.md) and for [AppDaemon](https://appdaemon.readthedocs.io/en/latest/)
-Install PV Opt from HACS
+12. Install PV Opt from HACS
0. Make sure HACS "Enable AppDaemon apps discovery & tracking" is enabled - under integrations in HA https://hacs.xyz/docs/categories/appdaemon_apps/
1. Go to HACS
diff --git a/apps/pv_opt/pv_opt.py b/apps/pv_opt/pv_opt.py
index 623c500..0456ac9 100644
--- a/apps/pv_opt/pv_opt.py
+++ b/apps/pv_opt/pv_opt.py
@@ -20,7 +20,7 @@
#
USE_TARIFF = True
-VERSION = "3.8.4"
+VERSION = "3.8.5"
DEBUG = False
DATE_TIME_FORMAT_LONG = "%Y-%m-%d %H:%M:%S%z"