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.
- {plugwise-1.6.0 → plugwise-1.6.1}/PKG-INFO +3 -2
- {plugwise-1.6.0 → plugwise-1.6.1}/plugwise.egg-info/PKG-INFO +3 -2
- {plugwise-1.6.0 → plugwise-1.6.1}/pyproject.toml +6 -5
- {plugwise-1.6.0 → plugwise-1.6.1}/LICENSE +0 -0
- {plugwise-1.6.0 → plugwise-1.6.1}/README.md +0 -0
- {plugwise-1.6.0 → plugwise-1.6.1}/plugwise/__init__.py +0 -0
- {plugwise-1.6.0 → plugwise-1.6.1}/plugwise/common.py +0 -0
- {plugwise-1.6.0 → plugwise-1.6.1}/plugwise/constants.py +0 -0
- {plugwise-1.6.0 → plugwise-1.6.1}/plugwise/data.py +0 -0
- {plugwise-1.6.0 → plugwise-1.6.1}/plugwise/exceptions.py +0 -0
- {plugwise-1.6.0 → plugwise-1.6.1}/plugwise/helper.py +0 -0
- {plugwise-1.6.0 → plugwise-1.6.1}/plugwise/legacy/data.py +0 -0
- {plugwise-1.6.0 → plugwise-1.6.1}/plugwise/legacy/helper.py +0 -0
- {plugwise-1.6.0 → plugwise-1.6.1}/plugwise/legacy/smile.py +0 -0
- {plugwise-1.6.0 → plugwise-1.6.1}/plugwise/py.typed +0 -0
- {plugwise-1.6.0 → plugwise-1.6.1}/plugwise/smile.py +0 -0
- {plugwise-1.6.0 → plugwise-1.6.1}/plugwise/util.py +0 -0
- {plugwise-1.6.0 → plugwise-1.6.1}/plugwise.egg-info/SOURCES.txt +0 -0
- {plugwise-1.6.0 → plugwise-1.6.1}/plugwise.egg-info/dependency_links.txt +0 -0
- {plugwise-1.6.0 → plugwise-1.6.1}/plugwise.egg-info/requires.txt +0 -0
- {plugwise-1.6.0 → plugwise-1.6.1}/plugwise.egg-info/top_level.txt +0 -0
- {plugwise-1.6.0 → plugwise-1.6.1}/setup.cfg +0 -0
- {plugwise-1.6.0 → plugwise-1.6.1}/setup.py +0 -0
- {plugwise-1.6.0 → plugwise-1.6.1}/tests/test_adam.py +0 -0
- {plugwise-1.6.0 → plugwise-1.6.1}/tests/test_anna.py +0 -0
- {plugwise-1.6.0 → plugwise-1.6.1}/tests/test_generic.py +0 -0
- {plugwise-1.6.0 → plugwise-1.6.1}/tests/test_init.py +0 -0
- {plugwise-1.6.0 → plugwise-1.6.1}/tests/test_legacy_anna.py +0 -0
- {plugwise-1.6.0 → plugwise-1.6.1}/tests/test_legacy_generic.py +0 -0
- {plugwise-1.6.0 → plugwise-1.6.1}/tests/test_legacy_p1.py +0 -0
- {plugwise-1.6.0 → plugwise-1.6.1}/tests/test_legacy_stretch.py +0 -0
- {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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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 = ["
|
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.
|
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 = "
|
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
|
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
|