plugwise 1.7.4__tar.gz → 1.7.5__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.7.4 → plugwise-1.7.5}/PKG-INFO +2 -3
- {plugwise-1.7.4 → plugwise-1.7.5}/plugwise.egg-info/PKG-INFO +2 -3
- {plugwise-1.7.4 → plugwise-1.7.5}/plugwise.egg-info/SOURCES.txt +0 -1
- {plugwise-1.7.4 → plugwise-1.7.5}/pyproject.toml +4 -6
- plugwise-1.7.5/setup.cfg +4 -0
- plugwise-1.7.4/setup.cfg +0 -9
- {plugwise-1.7.4 → plugwise-1.7.5}/LICENSE +0 -0
- {plugwise-1.7.4 → plugwise-1.7.5}/README.md +0 -0
- {plugwise-1.7.4 → plugwise-1.7.5}/plugwise/__init__.py +0 -0
- {plugwise-1.7.4 → plugwise-1.7.5}/plugwise/common.py +0 -0
- {plugwise-1.7.4 → plugwise-1.7.5}/plugwise/constants.py +0 -0
- {plugwise-1.7.4 → plugwise-1.7.5}/plugwise/data.py +0 -0
- {plugwise-1.7.4 → plugwise-1.7.5}/plugwise/exceptions.py +0 -0
- {plugwise-1.7.4 → plugwise-1.7.5}/plugwise/helper.py +0 -0
- {plugwise-1.7.4 → plugwise-1.7.5}/plugwise/legacy/data.py +0 -0
- {plugwise-1.7.4 → plugwise-1.7.5}/plugwise/legacy/helper.py +0 -0
- {plugwise-1.7.4 → plugwise-1.7.5}/plugwise/legacy/smile.py +0 -0
- {plugwise-1.7.4 → plugwise-1.7.5}/plugwise/py.typed +0 -0
- {plugwise-1.7.4 → plugwise-1.7.5}/plugwise/smile.py +0 -0
- {plugwise-1.7.4 → plugwise-1.7.5}/plugwise/smilecomm.py +0 -0
- {plugwise-1.7.4 → plugwise-1.7.5}/plugwise/util.py +0 -0
- {plugwise-1.7.4 → plugwise-1.7.5}/plugwise.egg-info/dependency_links.txt +0 -0
- {plugwise-1.7.4 → plugwise-1.7.5}/plugwise.egg-info/requires.txt +0 -0
- {plugwise-1.7.4 → plugwise-1.7.5}/plugwise.egg-info/top_level.txt +0 -0
- {plugwise-1.7.4 → plugwise-1.7.5}/tests/test_adam.py +0 -0
- {plugwise-1.7.4 → plugwise-1.7.5}/tests/test_anna.py +0 -0
- {plugwise-1.7.4 → plugwise-1.7.5}/tests/test_generic.py +0 -0
- {plugwise-1.7.4 → plugwise-1.7.5}/tests/test_init.py +0 -0
- {plugwise-1.7.4 → plugwise-1.7.5}/tests/test_legacy_anna.py +0 -0
- {plugwise-1.7.4 → plugwise-1.7.5}/tests/test_legacy_generic.py +0 -0
- {plugwise-1.7.4 → plugwise-1.7.5}/tests/test_legacy_p1.py +0 -0
- {plugwise-1.7.4 → plugwise-1.7.5}/tests/test_legacy_stretch.py +0 -0
- {plugwise-1.7.4 → plugwise-1.7.5}/tests/test_p1.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: plugwise
|
3
|
-
Version: 1.7.
|
3
|
+
Version: 1.7.5
|
4
4
|
Summary: Plugwise Smile (Adam/Anna/P1) and Stretch module for Python 3.
|
5
5
|
Author: Plugwise device owners
|
6
6
|
Maintainer: bouwew, CoMPaTech
|
@@ -11,10 +11,9 @@ Keywords: home,automation,plugwise,module
|
|
11
11
|
Classifier: Development Status :: 5 - Production/Stable
|
12
12
|
Classifier: Intended Audience :: Developers
|
13
13
|
Classifier: Operating System :: OS Independent
|
14
|
-
Classifier: Programming Language :: Python :: 3.12
|
15
14
|
Classifier: Programming Language :: Python :: 3.13
|
16
15
|
Classifier: Topic :: Home Automation
|
17
|
-
Requires-Python: >=3.
|
16
|
+
Requires-Python: >=3.13
|
18
17
|
Description-Content-Type: text/markdown
|
19
18
|
License-File: LICENSE
|
20
19
|
Requires-Dist: aiohttp
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: plugwise
|
3
|
-
Version: 1.7.
|
3
|
+
Version: 1.7.5
|
4
4
|
Summary: Plugwise Smile (Adam/Anna/P1) and Stretch module for Python 3.
|
5
5
|
Author: Plugwise device owners
|
6
6
|
Maintainer: bouwew, CoMPaTech
|
@@ -11,10 +11,9 @@ Keywords: home,automation,plugwise,module
|
|
11
11
|
Classifier: Development Status :: 5 - Production/Stable
|
12
12
|
Classifier: Intended Audience :: Developers
|
13
13
|
Classifier: Operating System :: OS Independent
|
14
|
-
Classifier: Programming Language :: Python :: 3.12
|
15
14
|
Classifier: Programming Language :: Python :: 3.13
|
16
15
|
Classifier: Topic :: Home Automation
|
17
|
-
Requires-Python: >=3.
|
16
|
+
Requires-Python: >=3.13
|
18
17
|
Description-Content-Type: text/markdown
|
19
18
|
License-File: LICENSE
|
20
19
|
Requires-Dist: aiohttp
|
@@ -1,10 +1,10 @@
|
|
1
1
|
[build-system]
|
2
|
-
requires = ["setuptools~=
|
2
|
+
requires = ["setuptools~=80.0"]
|
3
3
|
build-backend = "setuptools.build_meta"
|
4
4
|
|
5
5
|
[project]
|
6
6
|
name = "plugwise"
|
7
|
-
version = "1.7.
|
7
|
+
version = "1.7.5"
|
8
8
|
license = "MIT"
|
9
9
|
description = "Plugwise Smile (Adam/Anna/P1) and Stretch module for Python 3."
|
10
10
|
readme = "README.md"
|
@@ -13,7 +13,6 @@ classifiers = [
|
|
13
13
|
"Development Status :: 5 - Production/Stable",
|
14
14
|
"Intended Audience :: Developers",
|
15
15
|
"Operating System :: OS Independent",
|
16
|
-
"Programming Language :: Python :: 3.12",
|
17
16
|
"Programming Language :: Python :: 3.13",
|
18
17
|
"Topic :: Home Automation",
|
19
18
|
]
|
@@ -24,7 +23,7 @@ maintainers = [
|
|
24
23
|
{ name = "bouwew"},
|
25
24
|
{ name = "CoMPaTech" }
|
26
25
|
]
|
27
|
-
requires-python = ">=3.
|
26
|
+
requires-python = ">=3.13"
|
28
27
|
dependencies = [
|
29
28
|
"aiohttp",
|
30
29
|
"defusedxml",
|
@@ -52,7 +51,7 @@ include = ["plugwise*"]
|
|
52
51
|
# 20241208: W0201 / attribute-defined-outside-init
|
53
52
|
# 20241208: R1702 / too-many-nested-blocks # too many nested blocks in test_init 8/5
|
54
53
|
# 20241208: R6102 / consider-using-tuple
|
55
|
-
# 20241208: Recommended disabling => "implicit-str-concat", # ISC001 - 2
|
54
|
+
# 20241208: Recommended disabling => "implicit-str-concat", # ISC001 - 2 occurrences!
|
56
55
|
##
|
57
56
|
|
58
57
|
[tool.pylint.MAIN]
|
@@ -466,7 +465,6 @@ lint.select = [
|
|
466
465
|
"S317", # suspicious-xml-sax-usage
|
467
466
|
"S318", # suspicious-xml-mini-dom-usage
|
468
467
|
"S319", # suspicious-xml-pull-dom-usage
|
469
|
-
"S320", # suspicious-xmle-tree-usage
|
470
468
|
"S601", # paramiko-call
|
471
469
|
"S602", # subprocess-popen-with-shell-equals-true
|
472
470
|
"S604", # call-with-shell-equals-true
|
plugwise-1.7.5/setup.cfg
ADDED
plugwise-1.7.4/setup.cfg
DELETED
@@ -1,9 +0,0 @@
|
|
1
|
-
[codespell]
|
2
|
-
ignore-words-list = additionals,alle,alot,ba,bre,bund,currenty,datas,dof,dur,ether,farenheit,falsy,fo,haa,hass,hist,iam,iff,iif,incomfort,ines,ist,leeg,lightsensor,mut,nam,nd,pres,pullrequests,referer,resset,rime,ser,serie,sur,te,technik,ue,uint,unsecure,visability,wan,wanna,withing,zar
|
3
|
-
skip = ./.*,*.csv,*.json
|
4
|
-
quiet-level = 2
|
5
|
-
|
6
|
-
[egg_info]
|
7
|
-
tag_build =
|
8
|
-
tag_date = 0
|
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
|
File without changes
|
File without changes
|
File without changes
|