plugwise 1.6.0__tar.gz → 1.6.1__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 (32) hide show
  1. {plugwise-1.6.0 → plugwise-1.6.1}/PKG-INFO +3 -2
  2. {plugwise-1.6.0 → plugwise-1.6.1}/plugwise.egg-info/PKG-INFO +3 -2
  3. {plugwise-1.6.0 → plugwise-1.6.1}/pyproject.toml +6 -5
  4. {plugwise-1.6.0 → plugwise-1.6.1}/LICENSE +0 -0
  5. {plugwise-1.6.0 → plugwise-1.6.1}/README.md +0 -0
  6. {plugwise-1.6.0 → plugwise-1.6.1}/plugwise/__init__.py +0 -0
  7. {plugwise-1.6.0 → plugwise-1.6.1}/plugwise/common.py +0 -0
  8. {plugwise-1.6.0 → plugwise-1.6.1}/plugwise/constants.py +0 -0
  9. {plugwise-1.6.0 → plugwise-1.6.1}/plugwise/data.py +0 -0
  10. {plugwise-1.6.0 → plugwise-1.6.1}/plugwise/exceptions.py +0 -0
  11. {plugwise-1.6.0 → plugwise-1.6.1}/plugwise/helper.py +0 -0
  12. {plugwise-1.6.0 → plugwise-1.6.1}/plugwise/legacy/data.py +0 -0
  13. {plugwise-1.6.0 → plugwise-1.6.1}/plugwise/legacy/helper.py +0 -0
  14. {plugwise-1.6.0 → plugwise-1.6.1}/plugwise/legacy/smile.py +0 -0
  15. {plugwise-1.6.0 → plugwise-1.6.1}/plugwise/py.typed +0 -0
  16. {plugwise-1.6.0 → plugwise-1.6.1}/plugwise/smile.py +0 -0
  17. {plugwise-1.6.0 → plugwise-1.6.1}/plugwise/util.py +0 -0
  18. {plugwise-1.6.0 → plugwise-1.6.1}/plugwise.egg-info/SOURCES.txt +0 -0
  19. {plugwise-1.6.0 → plugwise-1.6.1}/plugwise.egg-info/dependency_links.txt +0 -0
  20. {plugwise-1.6.0 → plugwise-1.6.1}/plugwise.egg-info/requires.txt +0 -0
  21. {plugwise-1.6.0 → plugwise-1.6.1}/plugwise.egg-info/top_level.txt +0 -0
  22. {plugwise-1.6.0 → plugwise-1.6.1}/setup.cfg +0 -0
  23. {plugwise-1.6.0 → plugwise-1.6.1}/setup.py +0 -0
  24. {plugwise-1.6.0 → plugwise-1.6.1}/tests/test_adam.py +0 -0
  25. {plugwise-1.6.0 → plugwise-1.6.1}/tests/test_anna.py +0 -0
  26. {plugwise-1.6.0 → plugwise-1.6.1}/tests/test_generic.py +0 -0
  27. {plugwise-1.6.0 → plugwise-1.6.1}/tests/test_init.py +0 -0
  28. {plugwise-1.6.0 → plugwise-1.6.1}/tests/test_legacy_anna.py +0 -0
  29. {plugwise-1.6.0 → plugwise-1.6.1}/tests/test_legacy_generic.py +0 -0
  30. {plugwise-1.6.0 → plugwise-1.6.1}/tests/test_legacy_p1.py +0 -0
  31. {plugwise-1.6.0 → plugwise-1.6.1}/tests/test_legacy_stretch.py +0 -0
  32. {plugwise-1.6.0 → plugwise-1.6.1}/tests/test_p1.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: plugwise
3
- Version: 1.6.0
3
+ Version: 1.6.1
4
4
  Summary: Plugwise Smile (Adam/Anna/P1) and Stretch module for Python 3.
5
5
  Home-page: https://github.com/plugwise/python-plugwise
6
6
  Author: Plugwise device owners
@@ -36,8 +36,9 @@ Classifier: Intended Audience :: Developers
36
36
  Classifier: License :: OSI Approved :: MIT License
37
37
  Classifier: Operating System :: OS Independent
38
38
  Classifier: Programming Language :: Python :: 3.12
39
+ Classifier: Programming Language :: Python :: 3.13
39
40
  Classifier: Topic :: Home Automation
40
- Requires-Python: >=3.11.0
41
+ Requires-Python: >=3.12.0
41
42
  Description-Content-Type: text/markdown
42
43
  License-File: LICENSE
43
44
  Requires-Dist: aiohttp
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: plugwise
3
- Version: 1.6.0
3
+ Version: 1.6.1
4
4
  Summary: Plugwise Smile (Adam/Anna/P1) and Stretch module for Python 3.
5
5
  Home-page: https://github.com/plugwise/python-plugwise
6
6
  Author: Plugwise device owners
@@ -36,8 +36,9 @@ Classifier: Intended Audience :: Developers
36
36
  Classifier: License :: OSI Approved :: MIT License
37
37
  Classifier: Operating System :: OS Independent
38
38
  Classifier: Programming Language :: Python :: 3.12
39
+ Classifier: Programming Language :: Python :: 3.13
39
40
  Classifier: Topic :: Home Automation
40
- Requires-Python: >=3.11.0
41
+ Requires-Python: >=3.12.0
41
42
  Description-Content-Type: text/markdown
42
43
  License-File: LICENSE
43
44
  Requires-Dist: aiohttp
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "plugwise"
7
- version = "1.6.0"
7
+ version = "1.6.1"
8
8
  license = {file = "LICENSE"}
9
9
  description = "Plugwise Smile (Adam/Anna/P1) and Stretch module for Python 3."
10
10
  readme = "README.md"
@@ -15,6 +15,7 @@ classifiers = [
15
15
  "License :: OSI Approved :: MIT License",
16
16
  "Operating System :: OS Independent",
17
17
  "Programming Language :: Python :: 3.12",
18
+ "Programming Language :: Python :: 3.13",
18
19
  "Topic :: Home Automation",
19
20
  ]
20
21
  authors = [
@@ -24,7 +25,7 @@ maintainers = [
24
25
  { name = "bouwew"},
25
26
  { name = "CoMPaTech" }
26
27
  ]
27
- requires-python = ">=3.11.0"
28
+ requires-python = ">=3.12.0"
28
29
  dependencies = [
29
30
  "aiohttp",
30
31
  "defusedxml",
@@ -47,7 +48,7 @@ include-package-data = true
47
48
  include = ["plugwise*"]
48
49
 
49
50
  [tool.black]
50
- target-version = ["py312"]
51
+ target-version = ["py313"]
51
52
  exclude = 'generated'
52
53
 
53
54
  [tool.isort]
@@ -185,7 +186,7 @@ norecursedirs = [
185
186
  ]
186
187
 
187
188
  [tool.mypy]
188
- python_version = "3.12"
189
+ python_version = "3.13"
189
190
  show_error_codes = true
190
191
  follow_imports = "silent"
191
192
  ignore_missing_imports = true
@@ -215,7 +216,7 @@ omit= [
215
216
  ]
216
217
 
217
218
  [tool.ruff]
218
- target-version = "py312"
219
+ target-version = "py313"
219
220
 
220
221
  lint.select = [
221
222
  "B002", # Python does not support the unary prefix increment
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