pyhive-integration 1.0.9.dev1__tar.gz → 1.0.9.dev2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {pyhive_integration-1.0.9.dev1/pyhive_integration.egg-info → pyhive_integration-1.0.9.dev2}/PKG-INFO +1 -1
- {pyhive_integration-1.0.9.dev1 → pyhive_integration-1.0.9.dev2/pyhive_integration.egg-info}/PKG-INFO +1 -1
- {pyhive_integration-1.0.9.dev1 → pyhive_integration-1.0.9.dev2}/setup.py +1 -1
- {pyhive_integration-1.0.9.dev1 → pyhive_integration-1.0.9.dev2}/src/session.py +3 -6
- {pyhive_integration-1.0.9.dev1 → pyhive_integration-1.0.9.dev2}/LICENSE +0 -0
- {pyhive_integration-1.0.9.dev1 → pyhive_integration-1.0.9.dev2}/MANIFEST.in +0 -0
- {pyhive_integration-1.0.9.dev1 → pyhive_integration-1.0.9.dev2}/README.md +0 -0
- {pyhive_integration-1.0.9.dev1 → pyhive_integration-1.0.9.dev2}/pyhive_integration.egg-info/SOURCES.txt +0 -0
- {pyhive_integration-1.0.9.dev1 → pyhive_integration-1.0.9.dev2}/pyhive_integration.egg-info/dependency_links.txt +0 -0
- {pyhive_integration-1.0.9.dev1 → pyhive_integration-1.0.9.dev2}/pyhive_integration.egg-info/requires.txt +0 -0
- {pyhive_integration-1.0.9.dev1 → pyhive_integration-1.0.9.dev2}/pyhive_integration.egg-info/top_level.txt +0 -0
- {pyhive_integration-1.0.9.dev1 → pyhive_integration-1.0.9.dev2}/pyproject.toml +0 -0
- {pyhive_integration-1.0.9.dev1 → pyhive_integration-1.0.9.dev2}/requirements.txt +0 -0
- {pyhive_integration-1.0.9.dev1 → pyhive_integration-1.0.9.dev2}/requirements_test.txt +0 -0
- {pyhive_integration-1.0.9.dev1 → pyhive_integration-1.0.9.dev2}/setup.cfg +0 -0
- {pyhive_integration-1.0.9.dev1 → pyhive_integration-1.0.9.dev2}/src/__init__.py +0 -0
- {pyhive_integration-1.0.9.dev1 → pyhive_integration-1.0.9.dev2}/src/action.py +0 -0
- {pyhive_integration-1.0.9.dev1 → pyhive_integration-1.0.9.dev2}/src/alarm.py +0 -0
- {pyhive_integration-1.0.9.dev1 → pyhive_integration-1.0.9.dev2}/src/api/__init__.py +0 -0
- {pyhive_integration-1.0.9.dev1 → pyhive_integration-1.0.9.dev2}/src/api/hive_api.py +0 -0
- {pyhive_integration-1.0.9.dev1 → pyhive_integration-1.0.9.dev2}/src/api/hive_async_api.py +0 -0
- {pyhive_integration-1.0.9.dev1 → pyhive_integration-1.0.9.dev2}/src/api/hive_auth.py +0 -0
- {pyhive_integration-1.0.9.dev1 → pyhive_integration-1.0.9.dev2}/src/api/hive_auth_async.py +0 -0
- {pyhive_integration-1.0.9.dev1 → pyhive_integration-1.0.9.dev2}/src/camera.py +0 -0
- {pyhive_integration-1.0.9.dev1 → pyhive_integration-1.0.9.dev2}/src/device_attributes.py +0 -0
- {pyhive_integration-1.0.9.dev1 → pyhive_integration-1.0.9.dev2}/src/heating.py +0 -0
- {pyhive_integration-1.0.9.dev1 → pyhive_integration-1.0.9.dev2}/src/helper/__init__.py +0 -0
- {pyhive_integration-1.0.9.dev1 → pyhive_integration-1.0.9.dev2}/src/helper/const.py +0 -0
- {pyhive_integration-1.0.9.dev1 → pyhive_integration-1.0.9.dev2}/src/helper/debugger.py +0 -0
- {pyhive_integration-1.0.9.dev1 → pyhive_integration-1.0.9.dev2}/src/helper/hive_exceptions.py +0 -0
- {pyhive_integration-1.0.9.dev1 → pyhive_integration-1.0.9.dev2}/src/helper/hive_helper.py +0 -0
- {pyhive_integration-1.0.9.dev1 → pyhive_integration-1.0.9.dev2}/src/helper/hivedataclasses.py +0 -0
- {pyhive_integration-1.0.9.dev1 → pyhive_integration-1.0.9.dev2}/src/helper/map.py +0 -0
- {pyhive_integration-1.0.9.dev1 → pyhive_integration-1.0.9.dev2}/src/hive.py +0 -0
- {pyhive_integration-1.0.9.dev1 → pyhive_integration-1.0.9.dev2}/src/hotwater.py +0 -0
- {pyhive_integration-1.0.9.dev1 → pyhive_integration-1.0.9.dev2}/src/hub.py +0 -0
- {pyhive_integration-1.0.9.dev1 → pyhive_integration-1.0.9.dev2}/src/light.py +0 -0
- {pyhive_integration-1.0.9.dev1 → pyhive_integration-1.0.9.dev2}/src/plug.py +0 -0
- {pyhive_integration-1.0.9.dev1 → pyhive_integration-1.0.9.dev2}/src/sensor.py +0 -0
- {pyhive_integration-1.0.9.dev1 → pyhive_integration-1.0.9.dev2}/tests/test_hub.py +0 -0
|
@@ -17,7 +17,7 @@ def requirements_from_file(filename="requirements.txt"):
|
|
|
17
17
|
|
|
18
18
|
|
|
19
19
|
setup(
|
|
20
|
-
version="1.0.9.
|
|
20
|
+
version="1.0.9.dev2",
|
|
21
21
|
packages=["apyhiveapi", "apyhiveapi.api", "apyhiveapi.helper"],
|
|
22
22
|
package_dir={"apyhiveapi": "src"},
|
|
23
23
|
package_data={"data": ["*.json"]},
|
|
@@ -520,10 +520,7 @@ class HiveSession:
|
|
|
520
520
|
if self.updateLock.locked() and (
|
|
521
521
|
self._updateTask is None or current_task is not self._updateTask
|
|
522
522
|
):
|
|
523
|
-
_LOGGER.debug(
|
|
524
|
-
"updateData - Poll already in progress — using cached device data for %s.",
|
|
525
|
-
device["hiveID"],
|
|
526
|
-
)
|
|
523
|
+
_LOGGER.debug("updateData - Update poll already in progress")
|
|
527
524
|
return updated
|
|
528
525
|
async with self.updateLock:
|
|
529
526
|
# Re-check after acquiring lock — another caller may have already updated
|
|
@@ -915,10 +912,10 @@ class HiveSession:
|
|
|
915
912
|
# Only consider single items or heating groups
|
|
916
913
|
if (
|
|
917
914
|
p.get("isGroup", False)
|
|
918
|
-
and self.data.products[
|
|
915
|
+
and self.data.products[aProduct]["type"] not in HIVE_TYPES["Heating"]
|
|
919
916
|
):
|
|
920
917
|
_LOGGER.debug(
|
|
921
|
-
"createDevices - Skipping group product %s (type: %s)",
|
|
918
|
+
"createDevices - Skipping group product currently not supported %s (type: %s)",
|
|
922
919
|
product_name,
|
|
923
920
|
product_type,
|
|
924
921
|
)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{pyhive_integration-1.0.9.dev1 → pyhive_integration-1.0.9.dev2}/src/helper/hive_exceptions.py
RENAMED
|
File without changes
|
|
File without changes
|
{pyhive_integration-1.0.9.dev1 → pyhive_integration-1.0.9.dev2}/src/helper/hivedataclasses.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|