Skip to content

Commit

Permalink
v8.23
Browse files Browse the repository at this point in the history
- DietPi-Pre-patches | Fix v8.23 pre-patch check to be applied on v8.22 systems as well
- DietPI-Software | Home Assistant: Bump Python to v3.11.6
  • Loading branch information
MichaIng committed Oct 18, 2023
1 parent f20fc85 commit 04c0daa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .update/pre-patches
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ _EOF_
fi

# v8.23
if (( $G_DIETPI_VERSION_CORE < 8 || ( $G_DIETPI_VERSION_CORE == 8 && $G_DIETPI_VERSION_SUB < 22 ) ))
if (( $G_DIETPI_VERSION_CORE < 8 || ( $G_DIETPI_VERSION_CORE == 8 && $G_DIETPI_VERSION_SUB < 23 ) ))
then
# RISC-V: Migrate from Debian ports to regular Debian Sid
if (( $G_HW_ARCH == 11 ))
Expand Down
2 changes: 1 addition & 1 deletion dietpi/dietpi-software
Original file line number Diff line number Diff line change
Expand Up @@ -11419,7 +11419,7 @@ _EOF_
local ha_user='homeassistant'
local ha_home="/home/$ha_user"
local ha_pyenv_activation=". $ha_home/pyenv-activate.sh"
local ha_python_version='3.11.5' # https://github.com/pyenv/pyenv/tree/master/plugins/python-build/share/python-build
local ha_python_version='3.11.6' # https://github.com/pyenv/pyenv/tree/master/plugins/python-build/share/python-build

G_DIETPI-NOTIFY 2 "Home Assistant user: $ha_user"
G_DIETPI-NOTIFY 2 "Home Assistant home: $ha_home"
Expand Down

0 comments on commit 04c0daa

Please sign in to comment.