DurgNomis-drol / ha_toyota

Toyota Connected Services integration for Home Assistant.
MIT License
148 stars 29 forks source link

Move starter battery sensor to a binary sensor #169

Closed DurgNomis-drol closed 9 months ago

DurgNomis-drol commented 10 months ago

I think it makes more sense to move this to a binary_sensor.

DurgNomis-drol commented 10 months ago

I can't get my development env working right now, and I don't know how to fix it right now

CM000n commented 10 months ago

I can't get my development env working right now, and I don't know how to fix it right now

What is the problem? Maybe I can help.

DurgNomis-drol commented 10 months ago

What is the problem? Maybe I can help.

When I install python 3.11 on Ubuntu WSL2, poetry won't install correctly leaving me with a broken poetry installation everytime.

CM000n commented 10 months ago

What is the problem? Maybe I can help.

When I install python 3.11 on Ubuntu WSL2, poetry won't install correctly leaving me with a broken poetry installation everytime.

I'm using the same setup here. Ubuntu 22.04.3 LTS on WSL 2. Which poetry Version are you using? How have you installed Python3.11? Via deadsnakes ppa?

Don't Install poetry with Python3.11. User your default Python Version:

curl -sSL https://install.python-poetry.org | python3 -

Afterwards you can generate a Python 3.11 venv manually and can use poetry:

python3.11 -m venv /path/to/new/virtual/environment
source /path/to/new/virtual/environment/bin/activate
poetry install
pre-commit install
DurgNomis-drol commented 10 months ago

Will try this when I get time after the weekend. Thanks for the help 🚀