We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e36ddb4 commit 0aa5cfeCopy full SHA for 0aa5cfe
go2rtc_client/rest.py
@@ -21,7 +21,7 @@
21
_LOGGER = logging.getLogger(__name__)
22
23
_API_PREFIX = "/api"
24
-_MIN_VERSION_SUPPORTED: Final = AwesomeVersion("1.9.4")
+_MIN_VERSION_SUPPORTED: Final = AwesomeVersion("1.9.5")
25
_MIN_VERSION_UNSUPPORTED: Final = AwesomeVersion("2.0.0")
26
27
tests/test_rest.py
@@ -98,9 +98,9 @@ async def test_streams_add(
98
("server_version", "expected_result"),
99
[
100
("0.0.0", False),
101
- ("1.9.3", False),
102
- ("1.9.4", True),
+ ("1.9.4", False),
103
("1.9.5", True),
+ ("1.9.6", True),
104
("2.0.0", False),
105
("BLAH", False),
106
],
0 commit comments