Skip to content

Commit

Permalink
Merge branch 'develop' into release
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-slx committed Dec 23, 2023
2 parents d39a98c + dc1fd2f commit baf6cdf
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 5 deletions.
2 changes: 1 addition & 1 deletion bin/user/weatherlink_live/static/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@


DRIVER_NAME = "WeatherLinkLive"
DRIVER_VERSION = "1.1.1"
DRIVER_VERSION = "1.1.2"
4 changes: 4 additions & 0 deletions changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -178,3 +178,7 @@ Documentation was expanded and split into multiple separate documents.
Driver is now compatible with **Python 3.7 or later**.

- **State required Python version in documentation**

## Version 1.1.2

- **Fix installation issue** on WeeWX 5 beta
5 changes: 3 additions & 2 deletions install.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class WeatherLinkLiveInstaller(ExtensionInstaller):
def __init__(self):
super(WeatherLinkLiveInstaller, self).__init__(
name='weatherlink-live',
version="1.1.1",
version="1.1.2",
description='WeeWX driver for Davis WeatherLink Live.',
author="Michael Schantl",
author_email="floss@schantl-lx.at",
Expand Down Expand Up @@ -66,5 +66,6 @@ def __init__(self):
'bin/user/weatherlink_live/static/targets.py',
'bin/user/weatherlink_live/static/version.py',
]),
]
],
config=dict(),
)
8 changes: 6 additions & 2 deletions vm/bin/weewx-5-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,11 @@ else
git pull origin
fi

python -m venv ./venv
. ./venv/bin/activate
pip install poetry mkdocs mkdocs-material pymdown-extensions
make pypi-packages
make pypi-package
deactivate

pip install $SRC_DIR/dist/weewx-5.*.whl
pipx install $SRC_DIR/dist/weewx-5.*.whl
pipx inject weewx requests
1 change: 1 addition & 0 deletions vm/provision.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ set -e
PACKAGES=(
"python"
"python-pip"
"python-pipx"
)
PATH_ENTRIES=(
"$HOME/.local/bin"
Expand Down

0 comments on commit baf6cdf

Please sign in to comment.