Skip to content

Commit

Permalink
update install requirements.txt (#78)
Browse files Browse the repository at this point in the history
- update the install instructions and requirement.txt to reflect the need for the requests library
  • Loading branch information
ironsheep committed Feb 18, 2023
1 parent 9300ed4 commit 34226e3
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
6 changes: 5 additions & 1 deletion ChangeLog
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
# ChangeLog

Sat, 18 Feb 2023 15:36:08 -0700 v1.7.4

- Update README.md and requirements.txt to reflect use of Python `requests` library (#78)

Sat, 18 Feb 2023 14:22:52 -0700 v1.7.3

- Add `fs_disk_used` value
- Correct Disk Used % sensor to use "used" vs. "free" value
- Convert memory values from floting point string to integer (precision not necessary)
- Add new Mem Used % sensor
- Add new Mem Used % sensor (#42)

Sat, 11 Feb 2023 14:28:59 -0700 v1.7.2

Expand Down
2 changes: 1 addition & 1 deletion ISP-RPi-mqtt-daemon.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
import requests
from urllib3.exceptions import InsecureRequestWarning

script_version = "1.7.3"
script_version = "1.7.4"
script_name = 'ISP-RPi-mqtt-daemon.py'
script_info = '{} v{}'.format(script_name, script_version)
project_name = 'RPi Reporter MQTT2HA Daemon'
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ sudo apt-get install libraspberrypi-bin net-tools
### Packages for Arch Linux

```shell
sudo pacman -S python python-pip python-tzlocal python-notify2 python-colorama python-unidecode python-paho-mqtt inetutils
sudo pacman -S python python-pip python-tzlocal python-notify2 python-colorama python-unidecode python-paho-mqtt python-requests inetutils
```

### Now finish with the script install
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ sdnotify>=0.3.1
Unidecode>=0.4.21
colorama>=0.4.3
tzlocal>=2.1.0
requests>=2.28.2

0 comments on commit 34226e3

Please sign in to comment.