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
2 changes: 1 addition & 1 deletion homeassistant/components/compensation/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
"documentation": "https://www.home-assistant.io/integrations/compensation",
"iot_class": "calculated",
"quality_scale": "legacy",
"requirements": ["numpy==2.3.0"]
"requirements": ["numpy==2.3.2"]
}
2 changes: 1 addition & 1 deletion homeassistant/components/iqvia/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@
"integration_type": "service",
"iot_class": "cloud_polling",
"loggers": ["pyiqvia"],
"requirements": ["numpy==2.3.0", "pyiqvia==2022.04.0"]
"requirements": ["numpy==2.3.2", "pyiqvia==2022.04.0"]
}
2 changes: 1 addition & 1 deletion homeassistant/components/monzo/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
"dependencies": ["application_credentials"],
"documentation": "https://www.home-assistant.io/integrations/monzo",
"iot_class": "cloud_polling",
"requirements": ["monzopy==1.4.2"]
"requirements": ["monzopy==1.5.1"]
}
2 changes: 1 addition & 1 deletion homeassistant/components/stream/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@
"integration_type": "system",
"iot_class": "local_push",
"quality_scale": "internal",
"requirements": ["PyTurboJPEG==1.8.0", "av==13.1.0", "numpy==2.3.0"]
"requirements": ["PyTurboJPEG==1.8.0", "av==13.1.0", "numpy==2.3.2"]
}
1 change: 0 additions & 1 deletion homeassistant/components/template/binary_sensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,6 @@ def _handle_coordinator_update(self) -> None:
def _set_state(self, state, _=None):
"""Set up auto off."""
self._attr_is_on = state
self.async_set_context(self.coordinator.data["context"])
self.async_write_ha_state()

if not state:
Expand Down
1 change: 0 additions & 1 deletion homeassistant/components/template/cover.py
Original file line number Diff line number Diff line change
Expand Up @@ -492,7 +492,6 @@ def _handle_coordinator_update(self) -> None:
write_ha_state = True

if not self._attr_assumed_state:
self.async_set_context(self.coordinator.data["context"])
write_ha_state = True
elif self._attr_assumed_state and len(self._rendered) > 0:
# In case any non optimistic template
Expand Down
1 change: 0 additions & 1 deletion homeassistant/components/template/fan.py
Original file line number Diff line number Diff line change
Expand Up @@ -561,5 +561,4 @@ def _handle_coordinator_update(self) -> None:
write_ha_state = True

if write_ha_state:
self.async_set_context(self.coordinator.data["context"])
self.async_write_ha_state()
1 change: 0 additions & 1 deletion homeassistant/components/template/light.py
Original file line number Diff line number Diff line change
Expand Up @@ -1166,7 +1166,6 @@ def _handle_coordinator_update(self) -> None:
raw = self._rendered.get(CONF_STATE)
self._state = template.result_as_boolean(raw)

self.async_set_context(self.coordinator.data["context"])
write_ha_state = True
elif self._optimistic and len(self._rendered) > 0:
# In case any non optimistic template
Expand Down
1 change: 0 additions & 1 deletion homeassistant/components/template/lock.py
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,6 @@ def _handle_coordinator_update(self) -> None:
write_ha_state = True

if not self._optimistic:
self.async_set_context(self.coordinator.data["context"])
write_ha_state = True
elif self._optimistic and len(self._rendered) > 0:
# In case any non optimistic template
Expand Down
1 change: 0 additions & 1 deletion homeassistant/components/template/switch.py
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,6 @@ def _handle_coordinator_update(self) -> None:
raw = self._rendered.get(CONF_STATE)
self._attr_is_on = template.result_as_boolean(raw)

self.async_set_context(self.coordinator.data["context"])
self.async_write_ha_state()
elif self._attr_assumed_state and len(self._rendered) > 0:
# In case name, icon, or friendly name have a template but
Expand Down
1 change: 0 additions & 1 deletion homeassistant/components/template/vacuum.py
Original file line number Diff line number Diff line change
Expand Up @@ -404,5 +404,4 @@ def _handle_coordinator_update(self) -> None:
write_ha_state = True

if write_ha_state:
self.async_set_context(self.coordinator.data["context"])
self.async_write_ha_state()
2 changes: 1 addition & 1 deletion homeassistant/components/tensorflow/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"tensorflow==2.5.0",
"tf-models-official==2.5.0",
"pycocotools==2.0.6",
"numpy==2.3.0",
"numpy==2.3.2",
"Pillow==11.3.0"
]
}
2 changes: 1 addition & 1 deletion homeassistant/components/trend/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@
"integration_type": "helper",
"iot_class": "calculated",
"quality_scale": "internal",
"requirements": ["numpy==2.3.0"]
"requirements": ["numpy==2.3.2"]
}
2 changes: 1 addition & 1 deletion homeassistant/package_constraints.txt
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ httpcore==1.0.9
hyperframe>=5.2.0

# Ensure we run compatible with musllinux build env
numpy==2.3.0
numpy==2.3.2
pandas==2.3.0

# Constrain multidict to avoid typing issues
Expand Down
4 changes: 2 additions & 2 deletions requirements_all.txt

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

4 changes: 2 additions & 2 deletions 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/gen_requirements_all.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@
hyperframe>=5.2.0

# Ensure we run compatible with musllinux build env
numpy==2.3.0
numpy==2.3.2
pandas==2.3.0

# Constrain multidict to avoid typing issues
Expand Down
Loading