Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ tests

# Other virtualization methods
venv
.venv
.vagrant

# Temporary files
**/__pycache__
**/__pycache__
2 changes: 1 addition & 1 deletion homeassistant/components/qingping/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@
"dependencies": ["bluetooth_adapters"],
"documentation": "https://www.home-assistant.io/integrations/qingping",
"iot_class": "local_push",
"requirements": ["qingping-ble==0.10.0"]
"requirements": ["qingping-ble==1.0.1"]
}
2 changes: 1 addition & 1 deletion requirements_all.txt

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion requirements_test_all.txt

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion script/run-in-env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ else
# other common virtualenvs
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
. "${my_path}/${venv}/bin/activate"
break
Expand Down
8 changes: 4 additions & 4 deletions script/setup
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ mkdir -p config

if [ ! -n "$VIRTUAL_ENV" ]; then
if [ -x "$(command -v uv)" ]; then
uv venv venv
uv venv .venv
else
python3 -m venv venv
python3 -m venv .venv
fi
source venv/bin/activate
source .venv/bin/activate
fi

if ! [ -x "$(command -v uv)" ]; then
Expand All @@ -37,7 +37,7 @@ python3 -m script.translations develop --all

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 "
logger:
default: info
Expand Down
Loading