Skip to content

Commit

Permalink
1.0.23: fixed pymodbus version
Browse files Browse the repository at this point in the history
  • Loading branch information
jesseklm committed Oct 28, 2024
1 parent 6df72c5 commit aac79c2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@ Tested: SH10RT
services:
sungrowmodbus2mqtt:
container_name: sungrowmodbus2mqtt
image: ghcr.io/jesseklm/sungrowmodbus2mqtt:1.0.22
image: ghcr.io/jesseklm/sungrowmodbus2mqtt:1.0.23
restart: unless-stopped
volumes:
- ./config.sh10rt.yaml:/config/config.yaml:ro
```
- `wget -O config.sh10rt.yaml https://raw.githubusercontent.com/jesseklm/sungrowmodbus2mqtt/1.0.22/config.sh10rt.example.yaml`
- `wget -O config.sh10rt.yaml https://raw.githubusercontent.com/jesseklm/sungrowmodbus2mqtt/1.0.23/config.sh10rt.example.yaml`
- adjust your config yaml
- `docker compose up -d`
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pymodbus~=3.7.0
pymodbus==3.7.0
SungrowModbusTcpClient-jesseklm~=0.1.9
paho-mqtt~=2.1.0
PyYAML~=6.0.1
2 changes: 1 addition & 1 deletion sungrowmodbus2mqtt.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from modbus_handler import ModbusHandler
from mqtt_handler import MqttHandler

__version__ = '1.0.22'
__version__ = '1.0.23'


class SungrowModbus2Mqtt:
Expand Down

0 comments on commit aac79c2

Please sign in to comment.