mirror of
https://github.com/home-assistant/core.git
synced 2025-08-30 01:42:21 +02:00
Default virtual environment location to .venv (#151181)
This commit is contained in:
@@ -14,7 +14,8 @@ tests
|
|||||||
|
|
||||||
# Other virtualization methods
|
# Other virtualization methods
|
||||||
venv
|
venv
|
||||||
|
.venv
|
||||||
.vagrant
|
.vagrant
|
||||||
|
|
||||||
# Temporary files
|
# Temporary files
|
||||||
**/__pycache__
|
**/__pycache__
|
||||||
|
@@ -19,7 +19,7 @@ else
|
|||||||
# other common virtualenvs
|
# other common virtualenvs
|
||||||
my_path=$(git rev-parse --show-toplevel)
|
my_path=$(git rev-parse --show-toplevel)
|
||||||
|
|
||||||
for venv in venv .venv .; do
|
for venv in .venv venv .; do
|
||||||
if [ -f "${my_path}/${venv}/bin/activate" ]; then
|
if [ -f "${my_path}/${venv}/bin/activate" ]; then
|
||||||
. "${my_path}/${venv}/bin/activate"
|
. "${my_path}/${venv}/bin/activate"
|
||||||
break
|
break
|
||||||
|
@@ -18,11 +18,11 @@ mkdir -p config
|
|||||||
|
|
||||||
if [ ! -n "$VIRTUAL_ENV" ]; then
|
if [ ! -n "$VIRTUAL_ENV" ]; then
|
||||||
if [ -x "$(command -v uv)" ]; then
|
if [ -x "$(command -v uv)" ]; then
|
||||||
uv venv venv
|
uv venv .venv
|
||||||
else
|
else
|
||||||
python3 -m venv venv
|
python3 -m venv .venv
|
||||||
fi
|
fi
|
||||||
source venv/bin/activate
|
source .venv/bin/activate
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if ! [ -x "$(command -v uv)" ]; then
|
if ! [ -x "$(command -v uv)" ]; then
|
||||||
@@ -37,7 +37,7 @@ python3 -m script.translations develop --all
|
|||||||
|
|
||||||
hass --script ensure_config -c config
|
hass --script ensure_config -c config
|
||||||
|
|
||||||
if ! grep -R "logger" config/configuration.yaml >> /dev/null;then
|
if ! grep -R "logger" config/configuration.yaml >> /dev/null; then
|
||||||
echo "
|
echo "
|
||||||
logger:
|
logger:
|
||||||
default: info
|
default: info
|
||||||
|
Reference in New Issue
Block a user