pypck 0.9.9__tar.gz → 0.9.10__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.
- {pypck-0.9.9/pypck.egg-info → pypck-0.9.10}/PKG-INFO +2 -2
- pypck-0.9.10/VERSION +1 -0
- {pypck-0.9.9 → pypck-0.9.10}/pypck/status_requester.py +1 -1
- {pypck-0.9.9 → pypck-0.9.10/pypck.egg-info}/PKG-INFO +2 -2
- {pypck-0.9.9 → pypck-0.9.10}/pyproject.toml +1 -1
- pypck-0.9.9/VERSION +0 -1
- {pypck-0.9.9 → pypck-0.9.10}/LICENSE +0 -0
- {pypck-0.9.9 → pypck-0.9.10}/README.md +0 -0
- {pypck-0.9.9 → pypck-0.9.10}/pypck/__init__.py +0 -0
- {pypck-0.9.9 → pypck-0.9.10}/pypck/connection.py +0 -0
- {pypck-0.9.9 → pypck-0.9.10}/pypck/device.py +0 -0
- {pypck-0.9.9 → pypck-0.9.10}/pypck/helpers.py +0 -0
- {pypck-0.9.9 → pypck-0.9.10}/pypck/inputs.py +0 -0
- {pypck-0.9.9 → pypck-0.9.10}/pypck/lcn_addr.py +0 -0
- {pypck-0.9.9 → pypck-0.9.10}/pypck/lcn_defs.py +0 -0
- {pypck-0.9.9 → pypck-0.9.10}/pypck/pck_commands.py +0 -0
- {pypck-0.9.9 → pypck-0.9.10}/pypck/py.typed +0 -0
- {pypck-0.9.9 → pypck-0.9.10}/pypck.egg-info/SOURCES.txt +0 -0
- {pypck-0.9.9 → pypck-0.9.10}/pypck.egg-info/dependency_links.txt +0 -0
- {pypck-0.9.9 → pypck-0.9.10}/pypck.egg-info/not-zip-safe +0 -0
- {pypck-0.9.9 → pypck-0.9.10}/pypck.egg-info/top_level.txt +0 -0
- {pypck-0.9.9 → pypck-0.9.10}/setup.cfg +0 -0
- {pypck-0.9.9 → pypck-0.9.10}/tests/test_commands.py +0 -0
- {pypck-0.9.9 → pypck-0.9.10}/tests/test_connection.py +0 -0
- {pypck-0.9.9 → pypck-0.9.10}/tests/test_dyn_text.py +0 -0
- {pypck-0.9.9 → pypck-0.9.10}/tests/test_input.py +0 -0
- {pypck-0.9.9 → pypck-0.9.10}/tests/test_messages.py +0 -0
- {pypck-0.9.9 → pypck-0.9.10}/tests/test_module.py +0 -0
- {pypck-0.9.9 → pypck-0.9.10}/tests/test_status_requester.py +0 -0
- {pypck-0.9.9 → pypck-0.9.10}/tests/test_vars.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pypck
|
|
3
|
-
Version: 0.9.
|
|
3
|
+
Version: 0.9.10
|
|
4
4
|
Summary: LCN-PCK library
|
|
5
5
|
Home-page: https://github.com/alengwenus/pypck
|
|
6
6
|
Author-email: Andre Lengwenus <alengwenus@gmail.com>
|
|
@@ -15,7 +15,7 @@ Classifier: Intended Audience :: Developers
|
|
|
15
15
|
Classifier: Development Status :: 5 - Production/Stable
|
|
16
16
|
Classifier: Operating System :: OS Independent
|
|
17
17
|
Classifier: Topic :: Home Automation
|
|
18
|
-
Requires-Python: >=3.
|
|
18
|
+
Requires-Python: >=3.13
|
|
19
19
|
Description-Content-Type: text/markdown
|
|
20
20
|
License-File: LICENSE
|
|
21
21
|
Dynamic: license-file
|
pypck-0.9.10/VERSION
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
0.9.10
|
|
@@ -89,7 +89,7 @@ class StatusRequester:
|
|
|
89
89
|
self.current_request.response.set_result(inp)
|
|
90
90
|
|
|
91
91
|
# Update cached requests
|
|
92
|
-
for request in self.get_status_requests(type(inp)):
|
|
92
|
+
for request in self.get_status_requests(type(inp), max_age=-1):
|
|
93
93
|
if all(
|
|
94
94
|
getattr(inp, parameter_name) == parameter_value
|
|
95
95
|
for parameter_name, parameter_value in request.parameters
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pypck
|
|
3
|
-
Version: 0.9.
|
|
3
|
+
Version: 0.9.10
|
|
4
4
|
Summary: LCN-PCK library
|
|
5
5
|
Home-page: https://github.com/alengwenus/pypck
|
|
6
6
|
Author-email: Andre Lengwenus <alengwenus@gmail.com>
|
|
@@ -15,7 +15,7 @@ Classifier: Intended Audience :: Developers
|
|
|
15
15
|
Classifier: Development Status :: 5 - Production/Stable
|
|
16
16
|
Classifier: Operating System :: OS Independent
|
|
17
17
|
Classifier: Topic :: Home Automation
|
|
18
|
-
Requires-Python: >=3.
|
|
18
|
+
Requires-Python: >=3.13
|
|
19
19
|
Description-Content-Type: text/markdown
|
|
20
20
|
License-File: LICENSE
|
|
21
21
|
Dynamic: license-file
|
pypck-0.9.9/VERSION
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
0.9.9
|
|
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
|