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.
Files changed (30) hide show
  1. {pypck-0.9.9/pypck.egg-info → pypck-0.9.10}/PKG-INFO +2 -2
  2. pypck-0.9.10/VERSION +1 -0
  3. {pypck-0.9.9 → pypck-0.9.10}/pypck/status_requester.py +1 -1
  4. {pypck-0.9.9 → pypck-0.9.10/pypck.egg-info}/PKG-INFO +2 -2
  5. {pypck-0.9.9 → pypck-0.9.10}/pyproject.toml +1 -1
  6. pypck-0.9.9/VERSION +0 -1
  7. {pypck-0.9.9 → pypck-0.9.10}/LICENSE +0 -0
  8. {pypck-0.9.9 → pypck-0.9.10}/README.md +0 -0
  9. {pypck-0.9.9 → pypck-0.9.10}/pypck/__init__.py +0 -0
  10. {pypck-0.9.9 → pypck-0.9.10}/pypck/connection.py +0 -0
  11. {pypck-0.9.9 → pypck-0.9.10}/pypck/device.py +0 -0
  12. {pypck-0.9.9 → pypck-0.9.10}/pypck/helpers.py +0 -0
  13. {pypck-0.9.9 → pypck-0.9.10}/pypck/inputs.py +0 -0
  14. {pypck-0.9.9 → pypck-0.9.10}/pypck/lcn_addr.py +0 -0
  15. {pypck-0.9.9 → pypck-0.9.10}/pypck/lcn_defs.py +0 -0
  16. {pypck-0.9.9 → pypck-0.9.10}/pypck/pck_commands.py +0 -0
  17. {pypck-0.9.9 → pypck-0.9.10}/pypck/py.typed +0 -0
  18. {pypck-0.9.9 → pypck-0.9.10}/pypck.egg-info/SOURCES.txt +0 -0
  19. {pypck-0.9.9 → pypck-0.9.10}/pypck.egg-info/dependency_links.txt +0 -0
  20. {pypck-0.9.9 → pypck-0.9.10}/pypck.egg-info/not-zip-safe +0 -0
  21. {pypck-0.9.9 → pypck-0.9.10}/pypck.egg-info/top_level.txt +0 -0
  22. {pypck-0.9.9 → pypck-0.9.10}/setup.cfg +0 -0
  23. {pypck-0.9.9 → pypck-0.9.10}/tests/test_commands.py +0 -0
  24. {pypck-0.9.9 → pypck-0.9.10}/tests/test_connection.py +0 -0
  25. {pypck-0.9.9 → pypck-0.9.10}/tests/test_dyn_text.py +0 -0
  26. {pypck-0.9.9 → pypck-0.9.10}/tests/test_input.py +0 -0
  27. {pypck-0.9.9 → pypck-0.9.10}/tests/test_messages.py +0 -0
  28. {pypck-0.9.9 → pypck-0.9.10}/tests/test_module.py +0 -0
  29. {pypck-0.9.9 → pypck-0.9.10}/tests/test_status_requester.py +0 -0
  30. {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.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.11
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.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.11
18
+ Requires-Python: >=3.13
19
19
  Description-Content-Type: text/markdown
20
20
  License-File: LICENSE
21
21
  Dynamic: license-file
@@ -19,7 +19,7 @@ classifiers = [
19
19
  "Operating System :: OS Independent",
20
20
  "Topic :: Home Automation",
21
21
  ]
22
- requires-python = ">=3.11"
22
+ requires-python = ">=3.13"
23
23
  dynamic = ["version"]
24
24
  dependencies = []
25
25
 
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