pysmarlaapi 0.9.0__tar.gz → 0.9.2__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.

Potentially problematic release.


This version of pysmarlaapi might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pysmarlaapi
3
- Version: 0.9.0
3
+ Version: 0.9.2
4
4
  Summary: Swing2Sleep Smarla API
5
5
  Author-email: Robin Lintermann <robin.lintermann@explicatis.com>
6
6
  Requires-Python: >=3.11
@@ -11,9 +11,9 @@ Classifier: Programming Language :: Python :: 3.11
11
11
  Classifier: Programming Language :: Python :: 3.12
12
12
  Classifier: Programming Language :: Python :: 3.13
13
13
  License-File: LICENSE
14
- Requires-Dist: aiohttp~=3.11
15
- Requires-Dist: jsonpickle~=4.0.0
16
- Requires-Dist: pysignalr~=1.1.0
14
+ Requires-Dist: aiohttp>=3.11
15
+ Requires-Dist: jsonpickle>=4.0.0
16
+ Requires-Dist: pysignalr>=1.3.0
17
17
  Project-URL: Issues, https://github.com/Explicatis-GmbH/pysmarlaapi/issues
18
18
  Project-URL: Repository, https://github.com/Explicatis-GmbH/pysmarlaapi
19
19
 
@@ -14,9 +14,9 @@ classifiers = [
14
14
  "Programming Language :: Python :: 3.13",
15
15
  ]
16
16
  dependencies = [
17
- "aiohttp~=3.11",
18
- "jsonpickle~=4.0.0",
19
- "pysignalr~=1.1.0",
17
+ "aiohttp>=3.11",
18
+ "jsonpickle>=4.0.0",
19
+ "pysignalr>=1.3.0",
20
20
  ]
21
21
  description = "Swing2Sleep Smarla API"
22
22
  license = "Apache-2.0"
@@ -1,4 +1,4 @@
1
- __version__ = "0.9.0"
1
+ __version__ = "0.9.2"
2
2
 
3
3
  from .classes import Connection
4
4
  from .federwiege import Federwiege
@@ -16,6 +16,10 @@ async def event_wait(event, timeout):
16
16
  return
17
17
 
18
18
 
19
+ # suppress warnings from pysignalr (to avoid missing client method warnings)
20
+ logging.getLogger('pysignalr.client').setLevel(logging.ERROR)
21
+
22
+
19
23
  class ConnectionHub:
20
24
  """SignalRCore Hub
21
25
  Provides interface via websocket for the controller using the SignalRCore protocol.
File without changes
File without changes