Skip to content

Commit

Permalink
Bump pytechnove to 1.2.1 (#109098)
Browse files Browse the repository at this point in the history
* Bump TechnoVE library to 1.2.0

* Bump TechnoVE library to 1.2.1

* Exclude unknown status from the options

* Regenerate test_sensor.ambr for TechnoVE snapshot test

---------

Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com>
  • Loading branch information
Moustachauve and joostlek authored Jan 30, 2024
1 parent 9752e70 commit a8915b8
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion homeassistant/components/technove/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
"documentation": "https://www.home-assistant.io/integrations/technove",
"integration_type": "device",
"iot_class": "local_polling",
"requirements": ["python-technove==1.1.1"],
"requirements": ["python-technove==1.2.1"],
"zeroconf": ["_technove-stations._tcp.local."]
}
2 changes: 1 addition & 1 deletion homeassistant/components/technove/sensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
from .coordinator import TechnoVEDataUpdateCoordinator
from .entity import TechnoVEEntity

STATUS_TYPE = [s.value for s in Status]
STATUS_TYPE = [s.value for s in Status if s != Status.UNKNOWN]


@dataclass(frozen=True, kw_only=True)
Expand Down
2 changes: 1 addition & 1 deletion requirements_all.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2281,7 +2281,7 @@ python-songpal==0.16.1
python-tado==0.17.4

# homeassistant.components.technove
python-technove==1.1.1
python-technove==1.2.1

# homeassistant.components.telegram_bot
python-telegram-bot==13.1
Expand Down
2 changes: 1 addition & 1 deletion requirements_test_all.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1745,7 +1745,7 @@ python-songpal==0.16.1
python-tado==0.17.4

# homeassistant.components.technove
python-technove==1.1.1
python-technove==1.2.1

# homeassistant.components.telegram_bot
python-telegram-bot==13.1
Expand Down

0 comments on commit a8915b8

Please sign in to comment.