Skip to content

Commit

Permalink
Merge tag 'v24.5.1' into develop
Browse files Browse the repository at this point in the history
*Fixed bug in Sager Forecast when METAR report is incomplete
  • Loading branch information
peted-davis committed May 14, 2024
2 parents c10fb98 + 3dd6c83 commit 5ce4b97
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

<a href="https://www.buymeacoffee.com/peted.davis" target="_blank"><img src="https://cdn.buymeacoffee.com/buttons/default-orange.png" alt="Buy Me A Coffee" height="41" width="174"></a>


The WeatherFlow PiConsole is a Python console that displays the data collected
by a WeatherFlow Tempest or Smart Home Weather Station. The console uses either
the WeatherFlow REST API and websocket service or the local UDP connection to
Expand Down
2 changes: 1 addition & 1 deletion lib/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
import os

# Define wfpiconsole version number
ver = 'v23.11.1'
ver = 'v24.5.1'

# Define required variables
TEMPEST = False
Expand Down
4 changes: 2 additions & 2 deletions wfpiconsole.sh
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,8 @@ PKG_NEW_INSTALL=(${PKG_MANAGER} --yes install)
# Python commands
PYTHON_SYS=python3
PYTHON_VENV=${VENVDIR}bin/python3
PIP_INSTALL="-m pip install"
PIP_UPDATE="-m pip install --upgrade"
PIP_INSTALL="-m pip install --no-cache-dir"
PIP_UPDATE="-m pip install --upgrade --no-cache-dir"

# wfpiconsole and Kivy dependencies
WFPICONSOLE_DEPENDENCIES=(git curl rng-tools build-essential python3-dev python3-pip python3-setuptools
Expand Down

0 comments on commit 5ce4b97

Please sign in to comment.