From 9bdf21148210530d74ba58e01015ceab120e9595 Mon Sep 17 00:00:00 2001 From: Paul Daumlechner Date: Sun, 18 Feb 2024 18:22:26 +0100 Subject: [PATCH 01/59] Correct version log --- pyvlx/pyvlx.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyvlx/pyvlx.py b/pyvlx/pyvlx.py index 18ec33e8..505b0fed 100644 --- a/pyvlx/pyvlx.py +++ b/pyvlx/pyvlx.py @@ -51,7 +51,7 @@ def __init__( self.protocol_version = None self.klf200 = Klf200Gateway(pyvlx=self) self.api_call_semaphore = asyncio.Semaphore(1) # Limit parallel commands - PYVLXLOG.debug("Loadig pyvlx v0.1.76") + PYVLXLOG.debug("Loadig pyvlx v0.2.21") async def connect(self) -> None: """Connect to KLF 200.""" From 65c74db430a5936e8f565ab5f698e76a7a162085 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 19 Feb 2024 08:57:54 +0100 Subject: [PATCH 02/59] Bump pytest from 8.0.0 to 8.0.1 (#376) Bumps [pytest](https://github.com/pytest-dev/pytest) from 8.0.0 to 8.0.1. - [Release notes](https://github.com/pytest-dev/pytest/releases) - [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst) - [Commits](https://github.com/pytest-dev/pytest/compare/8.0.0...8.0.1) --- updated-dependencies: - dependency-name: pytest dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- requirements/testing.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/testing.txt b/requirements/testing.txt index 65e4cb3d..e21351b6 100644 --- a/requirements/testing.txt +++ b/requirements/testing.txt @@ -5,7 +5,7 @@ flake8==7.0.0 flake8-isort==6.1.1 pydocstyle==6.3.0 pylint==3.0.3 -pytest==8.0.0 +pytest==8.0.1 pytest-cov==4.0.0 pytest-timeout==2.2.0 setuptools==69.1.0 From a6d391b1f27ece6f5c2e763d4e53f70ad962685a Mon Sep 17 00:00:00 2001 From: Paul Daumlechner Date: Mon, 19 Feb 2024 09:01:31 +0100 Subject: [PATCH 03/59] Reboot KLF200 on disconnect (#366) * Get version control for updates * Fix version info * Update comment. --- pyvlx/pyvlx.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pyvlx/pyvlx.py b/pyvlx/pyvlx.py index 505b0fed..8a47cee6 100644 --- a/pyvlx/pyvlx.py +++ b/pyvlx/pyvlx.py @@ -107,6 +107,8 @@ async def disconnect(self) -> None: except (OSError, PyVLXException): pass await self.heartbeat.stop() + # Reboot KLF200 when disconnecting to avoid unresponsive KLF200. + await self.klf200.reboot() self.connection.disconnect() async def load_nodes(self, node_id: Optional[int] = None) -> None: From 6cb863374a87ae5f16f2d996662ad5b06589e1c1 Mon Sep 17 00:00:00 2001 From: Julius Mittenzwei Date: Mon, 19 Feb 2024 09:04:53 +0100 Subject: [PATCH 04/59] Bumped version. --- pyvlx/pyvlx.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyvlx/pyvlx.py b/pyvlx/pyvlx.py index 8a47cee6..c4edf30c 100644 --- a/pyvlx/pyvlx.py +++ b/pyvlx/pyvlx.py @@ -51,7 +51,7 @@ def __init__( self.protocol_version = None self.klf200 = Klf200Gateway(pyvlx=self) self.api_call_semaphore = asyncio.Semaphore(1) # Limit parallel commands - PYVLXLOG.debug("Loadig pyvlx v0.2.21") + PYVLXLOG.debug("Loadig pyvlx v0.2.22") async def connect(self) -> None: """Connect to KLF 200.""" diff --git a/setup.py b/setup.py index 461cfd3c..e13a595b 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ PKG_ROOT = os.path.dirname(__file__) -VERSION = "0.2.21" +VERSION = "0.2.22" def get_long_description() -> str: From be83b7756ded276685046cfc63066e3a32a29149 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 26 Feb 2024 09:23:29 +0100 Subject: [PATCH 05/59] Bump setuptools from 69.1.0 to 69.1.1 (#380) Bumps [setuptools](https://github.com/pypa/setuptools) from 69.1.0 to 69.1.1. - [Release notes](https://github.com/pypa/setuptools/releases) - [Changelog](https://github.com/pypa/setuptools/blob/main/NEWS.rst) - [Commits](https://github.com/pypa/setuptools/compare/v69.1.0...v69.1.1) --- updated-dependencies: - dependency-name: setuptools dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- requirements/testing.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/testing.txt b/requirements/testing.txt index e21351b6..24032dac 100644 --- a/requirements/testing.txt +++ b/requirements/testing.txt @@ -8,7 +8,7 @@ pylint==3.0.3 pytest==8.0.1 pytest-cov==4.0.0 pytest-timeout==2.2.0 -setuptools==69.1.0 +setuptools==69.1.1 twine==5.0.0 mypy==1.8.0 types-pyyaml==6.0.12.12 \ No newline at end of file From 8e8bf1b9a5e1e71ec7bced2dff5873f44d8506d3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 26 Feb 2024 09:23:47 +0100 Subject: [PATCH 06/59] Bump pylint from 3.0.3 to 3.1.0 (#378) Bumps [pylint](https://github.com/pylint-dev/pylint) from 3.0.3 to 3.1.0. - [Release notes](https://github.com/pylint-dev/pylint/releases) - [Commits](https://github.com/pylint-dev/pylint/compare/v3.0.3...v3.1.0) --- updated-dependencies: - dependency-name: pylint dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- requirements/testing.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/testing.txt b/requirements/testing.txt index 24032dac..fa67e3ae 100644 --- a/requirements/testing.txt +++ b/requirements/testing.txt @@ -4,7 +4,7 @@ coveralls==3.3.1 flake8==7.0.0 flake8-isort==6.1.1 pydocstyle==6.3.0 -pylint==3.0.3 +pylint==3.1.0 pytest==8.0.1 pytest-cov==4.0.0 pytest-timeout==2.2.0 From e4c0e0d4fc153754a7e869fee86089041885c82b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 26 Feb 2024 10:12:35 +0100 Subject: [PATCH 07/59] Bump pytest from 8.0.1 to 8.0.2 (#379) Bumps [pytest](https://github.com/pytest-dev/pytest) from 8.0.1 to 8.0.2. - [Release notes](https://github.com/pytest-dev/pytest/releases) - [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst) - [Commits](https://github.com/pytest-dev/pytest/compare/8.0.1...8.0.2) --- updated-dependencies: - dependency-name: pytest dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- requirements/testing.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/testing.txt b/requirements/testing.txt index fa67e3ae..ef87b8db 100644 --- a/requirements/testing.txt +++ b/requirements/testing.txt @@ -5,7 +5,7 @@ flake8==7.0.0 flake8-isort==6.1.1 pydocstyle==6.3.0 pylint==3.1.0 -pytest==8.0.1 +pytest==8.0.2 pytest-cov==4.0.0 pytest-timeout==2.2.0 setuptools==69.1.1 From 7448a69f4d5b8b160b40041243e331096d9be44a Mon Sep 17 00:00:00 2001 From: Paul Daumlechner Date: Tue, 5 Mar 2024 19:52:28 +0100 Subject: [PATCH 08/59] Move instance variables --- pyvlx/discovery.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pyvlx/discovery.py b/pyvlx/discovery.py index 6e755e22..e28ca743 100644 --- a/pyvlx/discovery.py +++ b/pyvlx/discovery.py @@ -23,11 +23,12 @@ class VeluxHost(): class VeluxDiscovery(): """Class to discover Velux KLF200 devices on the network.""" + hosts: list[VeluxHost | None] = [] + infos: list[AsyncServiceInfo | None] = [] + def __init__(self, zeroconf: AsyncZeroconf,) -> None: """Initialize VeluxDiscovery object.""" self.zc: AsyncZeroconf = zeroconf - self.hosts: list[VeluxHost | None] = [] - self.infos: list[AsyncServiceInfo | None] = [] async def _async_discover_hosts(self, min_wait_time: float, expected_hosts: int | None) -> None: """Listen for zeroconf ServiceInfo.""" From 499acb8e03d3ad8adb6f5dfa9e64a62546cca808 Mon Sep 17 00:00:00 2001 From: Paul Daumlechner Date: Tue, 5 Mar 2024 22:52:13 +0100 Subject: [PATCH 09/59] bump version --- pyvlx/pyvlx.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyvlx/pyvlx.py b/pyvlx/pyvlx.py index c4edf30c..4cf34499 100644 --- a/pyvlx/pyvlx.py +++ b/pyvlx/pyvlx.py @@ -51,7 +51,7 @@ def __init__( self.protocol_version = None self.klf200 = Klf200Gateway(pyvlx=self) self.api_call_semaphore = asyncio.Semaphore(1) # Limit parallel commands - PYVLXLOG.debug("Loadig pyvlx v0.2.22") + PYVLXLOG.debug("Loadig pyvlx v0.2.23") async def connect(self) -> None: """Connect to KLF 200.""" diff --git a/setup.py b/setup.py index e13a595b..868d628d 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ PKG_ROOT = os.path.dirname(__file__) -VERSION = "0.2.22" +VERSION = "0.2.23" def get_long_description() -> str: From bf88744d9efad1c82b74a37e2bc52e6e7704520d Mon Sep 17 00:00:00 2001 From: Paul Daumlechner Date: Thu, 7 Mar 2024 21:28:53 +0100 Subject: [PATCH 10/59] Type fix --- pyvlx/discovery.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyvlx/discovery.py b/pyvlx/discovery.py index e28ca743..b25d7a22 100644 --- a/pyvlx/discovery.py +++ b/pyvlx/discovery.py @@ -23,7 +23,7 @@ class VeluxHost(): class VeluxDiscovery(): """Class to discover Velux KLF200 devices on the network.""" - hosts: list[VeluxHost | None] = [] + hosts: list[VeluxHost] = [] infos: list[AsyncServiceInfo | None] = [] def __init__(self, zeroconf: AsyncZeroconf,) -> None: From a4cb2c519672c87d85b92d34e47944fc65b52419 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 11 Mar 2024 09:13:41 +0100 Subject: [PATCH 11/59] Bump pytest from 8.0.2 to 8.1.1 (#386) Bumps [pytest](https://github.com/pytest-dev/pytest) from 8.0.2 to 8.1.1. - [Release notes](https://github.com/pytest-dev/pytest/releases) - [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst) - [Commits](https://github.com/pytest-dev/pytest/compare/8.0.2...8.1.1) --- updated-dependencies: - dependency-name: pytest dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- requirements/testing.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/testing.txt b/requirements/testing.txt index ef87b8db..f8c757b7 100644 --- a/requirements/testing.txt +++ b/requirements/testing.txt @@ -5,7 +5,7 @@ flake8==7.0.0 flake8-isort==6.1.1 pydocstyle==6.3.0 pylint==3.1.0 -pytest==8.0.2 +pytest==8.1.1 pytest-cov==4.0.0 pytest-timeout==2.2.0 setuptools==69.1.1 From e64a983651be87160e79f8b84e30781219b2c684 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 11 Mar 2024 09:13:56 +0100 Subject: [PATCH 12/59] Bump pytest-timeout from 2.2.0 to 2.3.1 (#384) Bumps [pytest-timeout](https://github.com/pytest-dev/pytest-timeout) from 2.2.0 to 2.3.1. - [Commits](https://github.com/pytest-dev/pytest-timeout/compare/2.2.0...2.3.1) --- updated-dependencies: - dependency-name: pytest-timeout dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- requirements/testing.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/testing.txt b/requirements/testing.txt index f8c757b7..bed490de 100644 --- a/requirements/testing.txt +++ b/requirements/testing.txt @@ -7,7 +7,7 @@ pydocstyle==6.3.0 pylint==3.1.0 pytest==8.1.1 pytest-cov==4.0.0 -pytest-timeout==2.2.0 +pytest-timeout==2.3.1 setuptools==69.1.1 twine==5.0.0 mypy==1.8.0 From 46d84310af1fdc506202c3ae69ec64ee4a3d09a9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 11 Mar 2024 09:14:19 +0100 Subject: [PATCH 13/59] Bump mypy from 1.8.0 to 1.9.0 (#385) Bumps [mypy](https://github.com/python/mypy) from 1.8.0 to 1.9.0. - [Changelog](https://github.com/python/mypy/blob/master/CHANGELOG.md) - [Commits](https://github.com/python/mypy/compare/v1.8.0...1.9.0) --- updated-dependencies: - dependency-name: mypy dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- requirements/testing.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/testing.txt b/requirements/testing.txt index bed490de..d20e64db 100644 --- a/requirements/testing.txt +++ b/requirements/testing.txt @@ -10,5 +10,5 @@ pytest-cov==4.0.0 pytest-timeout==2.3.1 setuptools==69.1.1 twine==5.0.0 -mypy==1.8.0 +mypy==1.9.0 types-pyyaml==6.0.12.12 \ No newline at end of file From bd962a142a1e9c96bbdb6f5401d9293a26eb4368 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 25 Mar 2024 09:33:21 +0100 Subject: [PATCH 14/59] Bump pytest-cov from 4.0.0 to 5.0.0 (#389) Bumps [pytest-cov](https://github.com/pytest-dev/pytest-cov) from 4.0.0 to 5.0.0. - [Changelog](https://github.com/pytest-dev/pytest-cov/blob/master/CHANGELOG.rst) - [Commits](https://github.com/pytest-dev/pytest-cov/compare/v4.0.0...v5.0.0) --- updated-dependencies: - dependency-name: pytest-cov dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- requirements/testing.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/testing.txt b/requirements/testing.txt index d20e64db..b07ea470 100644 --- a/requirements/testing.txt +++ b/requirements/testing.txt @@ -6,7 +6,7 @@ flake8-isort==6.1.1 pydocstyle==6.3.0 pylint==3.1.0 pytest==8.1.1 -pytest-cov==4.0.0 +pytest-cov==5.0.0 pytest-timeout==2.3.1 setuptools==69.1.1 twine==5.0.0 From 97cd5f91dd217fdea0fdd99abc3fc972e123f03c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 25 Mar 2024 09:33:34 +0100 Subject: [PATCH 15/59] Bump setuptools from 69.1.1 to 69.2.0 (#388) Bumps [setuptools](https://github.com/pypa/setuptools) from 69.1.1 to 69.2.0. - [Release notes](https://github.com/pypa/setuptools/releases) - [Changelog](https://github.com/pypa/setuptools/blob/main/NEWS.rst) - [Commits](https://github.com/pypa/setuptools/compare/v69.1.1...v69.2.0) --- updated-dependencies: - dependency-name: setuptools dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- requirements/testing.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/testing.txt b/requirements/testing.txt index b07ea470..6e9c3d8f 100644 --- a/requirements/testing.txt +++ b/requirements/testing.txt @@ -8,7 +8,7 @@ pylint==3.1.0 pytest==8.1.1 pytest-cov==5.0.0 pytest-timeout==2.3.1 -setuptools==69.1.1 +setuptools==69.2.0 twine==5.0.0 mypy==1.9.0 types-pyyaml==6.0.12.12 \ No newline at end of file From 0d33673d4e92fe0a5e3cb5dbc1459d716299f37b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 25 Mar 2024 09:33:56 +0100 Subject: [PATCH 16/59] Bump types-pyyaml from 6.0.12.12 to 6.0.12.20240311 (#387) Bumps [types-pyyaml](https://github.com/python/typeshed) from 6.0.12.12 to 6.0.12.20240311. - [Commits](https://github.com/python/typeshed/commits) --- updated-dependencies: - dependency-name: types-pyyaml dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- requirements/testing.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/testing.txt b/requirements/testing.txt index 6e9c3d8f..d67e7a3e 100644 --- a/requirements/testing.txt +++ b/requirements/testing.txt @@ -11,4 +11,4 @@ pytest-timeout==2.3.1 setuptools==69.2.0 twine==5.0.0 mypy==1.9.0 -types-pyyaml==6.0.12.12 \ No newline at end of file +types-pyyaml==6.0.12.20240311 \ No newline at end of file From 273d01d19ef5c41cb589b6850aeaf1819229177c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Apr 2024 10:00:00 +0200 Subject: [PATCH 17/59] Bump zeroconf from 0.131.0 to 0.132.2 (#392) Bumps [zeroconf](https://github.com/python-zeroconf/python-zeroconf) from 0.131.0 to 0.132.2. - [Release notes](https://github.com/python-zeroconf/python-zeroconf/releases) - [Changelog](https://github.com/python-zeroconf/python-zeroconf/blob/master/CHANGELOG.md) - [Commits](https://github.com/python-zeroconf/python-zeroconf/compare/0.131.0...0.132.2) --- updated-dependencies: - dependency-name: zeroconf dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- requirements/production.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/production.txt b/requirements/production.txt index 052f2b6f..ca8b5c28 100644 --- a/requirements/production.txt +++ b/requirements/production.txt @@ -1,2 +1,2 @@ pyyaml==6.0.1 -zeroconf==0.131.0 \ No newline at end of file +zeroconf==0.132.2 \ No newline at end of file From 87facc41ae22f3677678530abfb828d4b2bea340 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Apr 2024 10:00:17 +0200 Subject: [PATCH 18/59] Bump setuptools from 69.2.0 to 69.5.1 (#391) Bumps [setuptools](https://github.com/pypa/setuptools) from 69.2.0 to 69.5.1. - [Release notes](https://github.com/pypa/setuptools/releases) - [Changelog](https://github.com/pypa/setuptools/blob/main/NEWS.rst) - [Commits](https://github.com/pypa/setuptools/compare/v69.2.0...v69.5.1) --- updated-dependencies: - dependency-name: setuptools dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- requirements/testing.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/testing.txt b/requirements/testing.txt index d67e7a3e..84fd9ceb 100644 --- a/requirements/testing.txt +++ b/requirements/testing.txt @@ -8,7 +8,7 @@ pylint==3.1.0 pytest==8.1.1 pytest-cov==5.0.0 pytest-timeout==2.3.1 -setuptools==69.2.0 +setuptools==69.5.1 twine==5.0.0 mypy==1.9.0 types-pyyaml==6.0.12.20240311 \ No newline at end of file From c8190cd5c659e2029c199136e9cb522a290b36ea Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Apr 2024 08:52:16 +0200 Subject: [PATCH 19/59] Bump pytest from 8.1.1 to 8.2.0 (#394) Bumps [pytest](https://github.com/pytest-dev/pytest) from 8.1.1 to 8.2.0. - [Release notes](https://github.com/pytest-dev/pytest/releases) - [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst) - [Commits](https://github.com/pytest-dev/pytest/compare/8.1.1...8.2.0) --- updated-dependencies: - dependency-name: pytest dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- requirements/testing.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/testing.txt b/requirements/testing.txt index 84fd9ceb..f69ccf1c 100644 --- a/requirements/testing.txt +++ b/requirements/testing.txt @@ -5,7 +5,7 @@ flake8==7.0.0 flake8-isort==6.1.1 pydocstyle==6.3.0 pylint==3.1.0 -pytest==8.1.1 +pytest==8.2.0 pytest-cov==5.0.0 pytest-timeout==2.3.1 setuptools==69.5.1 From 7cec50d7e31f5cbf2acab5483dd3c5646f565610 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Apr 2024 08:52:36 +0200 Subject: [PATCH 20/59] Bump mypy from 1.9.0 to 1.10.0 (#393) Bumps [mypy](https://github.com/python/mypy) from 1.9.0 to 1.10.0. - [Changelog](https://github.com/python/mypy/blob/master/CHANGELOG.md) - [Commits](https://github.com/python/mypy/compare/1.9.0...v1.10.0) --- updated-dependencies: - dependency-name: mypy dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- requirements/testing.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/testing.txt b/requirements/testing.txt index f69ccf1c..d8b116a4 100644 --- a/requirements/testing.txt +++ b/requirements/testing.txt @@ -10,5 +10,5 @@ pytest-cov==5.0.0 pytest-timeout==2.3.1 setuptools==69.5.1 twine==5.0.0 -mypy==1.9.0 +mypy==1.10.0 types-pyyaml==6.0.12.20240311 \ No newline at end of file From c49edf0e3e105393f9bbad13f002fd3cb9a4d068 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 30 Apr 2024 11:30:51 +0200 Subject: [PATCH 21/59] Bump coveralls from 3.3.1 to 4.0.0 (#395) Bumps [coveralls](https://github.com/TheKevJames/coveralls-python) from 3.3.1 to 4.0.0. - [Release notes](https://github.com/TheKevJames/coveralls-python/releases) - [Changelog](https://github.com/TheKevJames/coveralls-python/blob/master/CHANGELOG.md) - [Commits](https://github.com/TheKevJames/coveralls-python/compare/3.3.1...4.0.0) --- updated-dependencies: - dependency-name: coveralls dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- requirements/testing.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/testing.txt b/requirements/testing.txt index d8b116a4..3e26e556 100644 --- a/requirements/testing.txt +++ b/requirements/testing.txt @@ -1,6 +1,6 @@ -r production.txt isort==5.13.2 -coveralls==3.3.1 +coveralls==4.0.0 flake8==7.0.0 flake8-isort==6.1.1 pydocstyle==6.3.0 From 6e748a6802694380eb7a5209be122e27ca2dd235 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 14 May 2024 07:07:42 +0200 Subject: [PATCH 22/59] Bump pylint from 3.1.0 to 3.1.1 (#396) Bumps [pylint](https://github.com/pylint-dev/pylint) from 3.1.0 to 3.1.1. - [Release notes](https://github.com/pylint-dev/pylint/releases) - [Commits](https://github.com/pylint-dev/pylint/compare/v3.1.0...v3.1.1) --- updated-dependencies: - dependency-name: pylint dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- requirements/testing.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/testing.txt b/requirements/testing.txt index 3e26e556..b2182761 100644 --- a/requirements/testing.txt +++ b/requirements/testing.txt @@ -4,7 +4,7 @@ coveralls==4.0.0 flake8==7.0.0 flake8-isort==6.1.1 pydocstyle==6.3.0 -pylint==3.1.0 +pylint==3.1.1 pytest==8.2.0 pytest-cov==5.0.0 pytest-timeout==2.3.1 From 60e77f15753f7542e211b0e69cee4ef22c5821e2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 15 May 2024 08:21:18 +0200 Subject: [PATCH 23/59] Bump pylint from 3.1.1 to 3.2.0 (#397) Bumps [pylint](https://github.com/pylint-dev/pylint) from 3.1.1 to 3.2.0. - [Release notes](https://github.com/pylint-dev/pylint/releases) - [Commits](https://github.com/pylint-dev/pylint/compare/v3.1.1...v3.2.0) --- updated-dependencies: - dependency-name: pylint dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- requirements/testing.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/testing.txt b/requirements/testing.txt index b2182761..be19cdb0 100644 --- a/requirements/testing.txt +++ b/requirements/testing.txt @@ -4,7 +4,7 @@ coveralls==4.0.0 flake8==7.0.0 flake8-isort==6.1.1 pydocstyle==6.3.0 -pylint==3.1.1 +pylint==3.2.0 pytest==8.2.0 pytest-cov==5.0.0 pytest-timeout==2.3.1 From a0fdc9a4d62d4dc26fd2287f1a708b63b839f0ec Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 17 May 2024 08:56:03 +0200 Subject: [PATCH 24/59] Bump twine from 5.0.0 to 5.1.0 (#399) Bumps [twine](https://github.com/pypa/twine) from 5.0.0 to 5.1.0. - [Release notes](https://github.com/pypa/twine/releases) - [Changelog](https://github.com/pypa/twine/blob/main/docs/changelog.rst) - [Commits](https://github.com/pypa/twine/compare/5.0.0...5.1.0) --- updated-dependencies: - dependency-name: twine dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- requirements/testing.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/testing.txt b/requirements/testing.txt index be19cdb0..14c945a9 100644 --- a/requirements/testing.txt +++ b/requirements/testing.txt @@ -9,6 +9,6 @@ pytest==8.2.0 pytest-cov==5.0.0 pytest-timeout==2.3.1 setuptools==69.5.1 -twine==5.0.0 +twine==5.1.0 mypy==1.10.0 types-pyyaml==6.0.12.20240311 \ No newline at end of file From e7dfb243896bbd873b4c3456bdef226b027fe89b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 21 May 2024 08:51:42 +0200 Subject: [PATCH 25/59] --- (#402) updated-dependencies: - dependency-name: pylint dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- requirements/testing.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/testing.txt b/requirements/testing.txt index 14c945a9..aac4f075 100644 --- a/requirements/testing.txt +++ b/requirements/testing.txt @@ -4,7 +4,7 @@ coveralls==4.0.0 flake8==7.0.0 flake8-isort==6.1.1 pydocstyle==6.3.0 -pylint==3.2.0 +pylint==3.2.2 pytest==8.2.0 pytest-cov==5.0.0 pytest-timeout==2.3.1 From 6db88a2836757db0353f7ba74c8d9ec02264b9bc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 21 May 2024 08:52:09 +0200 Subject: [PATCH 26/59] Bump coveralls from 4.0.0 to 4.0.1 (#398) Bumps [coveralls](https://github.com/TheKevJames/coveralls-python) from 4.0.0 to 4.0.1. - [Release notes](https://github.com/TheKevJames/coveralls-python/releases) - [Changelog](https://github.com/TheKevJames/coveralls-python/blob/master/CHANGELOG.md) - [Commits](https://github.com/TheKevJames/coveralls-python/compare/4.0.0...4.0.1) --- updated-dependencies: - dependency-name: coveralls dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- requirements/testing.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/testing.txt b/requirements/testing.txt index aac4f075..5ae78ede 100644 --- a/requirements/testing.txt +++ b/requirements/testing.txt @@ -1,6 +1,6 @@ -r production.txt isort==5.13.2 -coveralls==4.0.0 +coveralls==4.0.1 flake8==7.0.0 flake8-isort==6.1.1 pydocstyle==6.3.0 From baff3d4a3d0de6c032607a4a7e14845553d41345 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 21 May 2024 09:01:01 +0200 Subject: [PATCH 27/59] Bump pytest from 8.2.0 to 8.2.1 (#401) Bumps [pytest](https://github.com/pytest-dev/pytest) from 8.2.0 to 8.2.1. - [Release notes](https://github.com/pytest-dev/pytest/releases) - [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst) - [Commits](https://github.com/pytest-dev/pytest/compare/8.2.0...8.2.1) --- updated-dependencies: - dependency-name: pytest dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- requirements/testing.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/testing.txt b/requirements/testing.txt index 5ae78ede..a702b752 100644 --- a/requirements/testing.txt +++ b/requirements/testing.txt @@ -5,7 +5,7 @@ flake8==7.0.0 flake8-isort==6.1.1 pydocstyle==6.3.0 pylint==3.2.2 -pytest==8.2.0 +pytest==8.2.1 pytest-cov==5.0.0 pytest-timeout==2.3.1 setuptools==69.5.1 From 706351e5f992011699f5ca1d980ee2db98826c9e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 7 Jun 2024 08:53:15 +0200 Subject: [PATCH 28/59] Bump pylint from 3.2.2 to 3.2.3 (#406) Bumps [pylint](https://github.com/pylint-dev/pylint) from 3.2.2 to 3.2.3. - [Release notes](https://github.com/pylint-dev/pylint/releases) - [Commits](https://github.com/pylint-dev/pylint/compare/v3.2.2...v3.2.3) --- updated-dependencies: - dependency-name: pylint dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- requirements/testing.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/testing.txt b/requirements/testing.txt index a702b752..4c09d7de 100644 --- a/requirements/testing.txt +++ b/requirements/testing.txt @@ -4,7 +4,7 @@ coveralls==4.0.1 flake8==7.0.0 flake8-isort==6.1.1 pydocstyle==6.3.0 -pylint==3.2.2 +pylint==3.2.3 pytest==8.2.1 pytest-cov==5.0.0 pytest-timeout==2.3.1 From 6d4255e9fb591923629281d8a93b6756a6ab5913 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 7 Jun 2024 08:53:59 +0200 Subject: [PATCH 29/59] --- (#403) updated-dependencies: - dependency-name: setuptools dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- requirements/testing.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/testing.txt b/requirements/testing.txt index 4c09d7de..58a919e0 100644 --- a/requirements/testing.txt +++ b/requirements/testing.txt @@ -8,7 +8,7 @@ pylint==3.2.3 pytest==8.2.1 pytest-cov==5.0.0 pytest-timeout==2.3.1 -setuptools==69.5.1 +setuptools==70.0.0 twine==5.1.0 mypy==1.10.0 types-pyyaml==6.0.12.20240311 \ No newline at end of file From 3b2a00044b299f90b06c803b77173ac6998a90bf Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 8 Jun 2024 09:53:46 +0200 Subject: [PATCH 30/59] Bump pytest from 8.2.1 to 8.2.2 (#405) Bumps [pytest](https://github.com/pytest-dev/pytest) from 8.2.1 to 8.2.2. - [Release notes](https://github.com/pytest-dev/pytest/releases) - [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst) - [Commits](https://github.com/pytest-dev/pytest/compare/8.2.1...8.2.2) --- updated-dependencies: - dependency-name: pytest dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- requirements/testing.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/testing.txt b/requirements/testing.txt index 58a919e0..d89775c4 100644 --- a/requirements/testing.txt +++ b/requirements/testing.txt @@ -5,7 +5,7 @@ flake8==7.0.0 flake8-isort==6.1.1 pydocstyle==6.3.0 pylint==3.2.3 -pytest==8.2.1 +pytest==8.2.2 pytest-cov==5.0.0 pytest-timeout==2.3.1 setuptools==70.0.0 From b55ca038293d634fbfd95c3118b5737158a167a6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 17 Jun 2024 12:16:23 +0200 Subject: [PATCH 31/59] Bump flake8 from 7.0.0 to 7.1.0 (#407) Bumps [flake8](https://github.com/pycqa/flake8) from 7.0.0 to 7.1.0. - [Commits](https://github.com/pycqa/flake8/compare/7.0.0...7.1.0) --- updated-dependencies: - dependency-name: flake8 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- requirements/testing.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/testing.txt b/requirements/testing.txt index d89775c4..d06d7d40 100644 --- a/requirements/testing.txt +++ b/requirements/testing.txt @@ -1,7 +1,7 @@ -r production.txt isort==5.13.2 coveralls==4.0.1 -flake8==7.0.0 +flake8==7.1.0 flake8-isort==6.1.1 pydocstyle==6.3.0 pylint==3.2.3 From fdad94e2d39bcfbe0ceb447dee002de0d8b36250 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 20 Jun 2024 08:35:55 +0200 Subject: [PATCH 32/59] Bump setuptools from 70.0.0 to 70.1.0 (#408) Bumps [setuptools](https://github.com/pypa/setuptools) from 70.0.0 to 70.1.0. - [Release notes](https://github.com/pypa/setuptools/releases) - [Changelog](https://github.com/pypa/setuptools/blob/main/NEWS.rst) - [Commits](https://github.com/pypa/setuptools/compare/v70.0.0...v70.1.0) --- updated-dependencies: - dependency-name: setuptools dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- requirements/testing.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/testing.txt b/requirements/testing.txt index d06d7d40..87ba16c6 100644 --- a/requirements/testing.txt +++ b/requirements/testing.txt @@ -8,7 +8,7 @@ pylint==3.2.3 pytest==8.2.2 pytest-cov==5.0.0 pytest-timeout==2.3.1 -setuptools==70.0.0 +setuptools==70.1.0 twine==5.1.0 mypy==1.10.0 types-pyyaml==6.0.12.20240311 \ No newline at end of file From 12e07fa796e20851aef0a8e30bf1d28c2f0ac563 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 26 Jun 2024 08:47:14 +0200 Subject: [PATCH 33/59] Bump mypy from 1.10.0 to 1.10.1 (#410) Bumps [mypy](https://github.com/python/mypy) from 1.10.0 to 1.10.1. - [Changelog](https://github.com/python/mypy/blob/master/CHANGELOG.md) - [Commits](https://github.com/python/mypy/compare/v1.10.0...v1.10.1) --- updated-dependencies: - dependency-name: mypy dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- requirements/testing.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/testing.txt b/requirements/testing.txt index 87ba16c6..415b17a5 100644 --- a/requirements/testing.txt +++ b/requirements/testing.txt @@ -10,5 +10,5 @@ pytest-cov==5.0.0 pytest-timeout==2.3.1 setuptools==70.1.0 twine==5.1.0 -mypy==1.10.0 +mypy==1.10.1 types-pyyaml==6.0.12.20240311 \ No newline at end of file From 0b111dd5e549dfff358c8a503498e456d07a1af5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 26 Jun 2024 08:47:33 +0200 Subject: [PATCH 34/59] Bump setuptools from 70.1.0 to 70.1.1 (#411) Bumps [setuptools](https://github.com/pypa/setuptools) from 70.1.0 to 70.1.1. - [Release notes](https://github.com/pypa/setuptools/releases) - [Changelog](https://github.com/pypa/setuptools/blob/main/NEWS.rst) - [Commits](https://github.com/pypa/setuptools/compare/v70.1.0...v70.1.1) --- updated-dependencies: - dependency-name: setuptools dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- requirements/testing.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/testing.txt b/requirements/testing.txt index 415b17a5..62051e9f 100644 --- a/requirements/testing.txt +++ b/requirements/testing.txt @@ -8,7 +8,7 @@ pylint==3.2.3 pytest==8.2.2 pytest-cov==5.0.0 pytest-timeout==2.3.1 -setuptools==70.1.0 +setuptools==70.1.1 twine==5.1.0 mypy==1.10.1 types-pyyaml==6.0.12.20240311 \ No newline at end of file From 65ed5b6e27ef63fdf10b7b0c1d9c4c9adf0967b3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 27 Jun 2024 13:57:13 +0200 Subject: [PATCH 35/59] Bump twine from 5.1.0 to 5.1.1 (#412) Bumps [twine](https://github.com/pypa/twine) from 5.1.0 to 5.1.1. - [Release notes](https://github.com/pypa/twine/releases) - [Changelog](https://github.com/pypa/twine/blob/main/docs/changelog.rst) - [Commits](https://github.com/pypa/twine/compare/5.1.0...v5.1.1) --- updated-dependencies: - dependency-name: twine dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- requirements/testing.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/testing.txt b/requirements/testing.txt index 62051e9f..6cccb9d9 100644 --- a/requirements/testing.txt +++ b/requirements/testing.txt @@ -9,6 +9,6 @@ pytest==8.2.2 pytest-cov==5.0.0 pytest-timeout==2.3.1 setuptools==70.1.1 -twine==5.1.0 +twine==5.1.1 mypy==1.10.1 types-pyyaml==6.0.12.20240311 \ No newline at end of file From b418986090371d856d416fa486c34c6ad22502c4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 27 Jun 2024 13:57:42 +0200 Subject: [PATCH 36/59] Bump pylint from 3.2.3 to 3.2.4 (#413) Bumps [pylint](https://github.com/pylint-dev/pylint) from 3.2.3 to 3.2.4. - [Release notes](https://github.com/pylint-dev/pylint/releases) - [Commits](https://github.com/pylint-dev/pylint/compare/v3.2.3...v3.2.4) --- updated-dependencies: - dependency-name: pylint dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- requirements/testing.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/testing.txt b/requirements/testing.txt index 6cccb9d9..7b7c12cb 100644 --- a/requirements/testing.txt +++ b/requirements/testing.txt @@ -4,7 +4,7 @@ coveralls==4.0.1 flake8==7.1.0 flake8-isort==6.1.1 pydocstyle==6.3.0 -pylint==3.2.3 +pylint==3.2.4 pytest==8.2.2 pytest-cov==5.0.0 pytest-timeout==2.3.1 From e09e5a1065b4f40925e6d13249bd6824fe0685b6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Jul 2024 09:41:59 +0200 Subject: [PATCH 37/59] Bump pylint from 3.2.4 to 3.2.5 (#414) Bumps [pylint](https://github.com/pylint-dev/pylint) from 3.2.4 to 3.2.5. - [Release notes](https://github.com/pylint-dev/pylint/releases) - [Commits](https://github.com/pylint-dev/pylint/compare/v3.2.4...v3.2.5) --- updated-dependencies: - dependency-name: pylint dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- requirements/testing.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/testing.txt b/requirements/testing.txt index 7b7c12cb..82bc18b5 100644 --- a/requirements/testing.txt +++ b/requirements/testing.txt @@ -4,7 +4,7 @@ coveralls==4.0.1 flake8==7.1.0 flake8-isort==6.1.1 pydocstyle==6.3.0 -pylint==3.2.4 +pylint==3.2.5 pytest==8.2.2 pytest-cov==5.0.0 pytest-timeout==2.3.1 From f88ae306c5ea0205507cc7c105b3efc8438834ac Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 2 Jul 2024 09:02:39 +0200 Subject: [PATCH 38/59] Bump setuptools from 70.1.1 to 70.2.0 (#415) Bumps [setuptools](https://github.com/pypa/setuptools) from 70.1.1 to 70.2.0. - [Release notes](https://github.com/pypa/setuptools/releases) - [Changelog](https://github.com/pypa/setuptools/blob/main/NEWS.rst) - [Commits](https://github.com/pypa/setuptools/compare/v70.1.1...v70.2.0) --- updated-dependencies: - dependency-name: setuptools dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- requirements/testing.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/testing.txt b/requirements/testing.txt index 82bc18b5..6709822b 100644 --- a/requirements/testing.txt +++ b/requirements/testing.txt @@ -8,7 +8,7 @@ pylint==3.2.5 pytest==8.2.2 pytest-cov==5.0.0 pytest-timeout==2.3.1 -setuptools==70.1.1 +setuptools==70.2.0 twine==5.1.1 mypy==1.10.1 types-pyyaml==6.0.12.20240311 \ No newline at end of file From d07ba8df3d72cf61bb4caaeca0b94fa4642cac79 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 20 Jul 2024 10:26:46 +0200 Subject: [PATCH 39/59] Bump setuptools from 70.2.0 to 71.0.3 (#418) Bumps [setuptools](https://github.com/pypa/setuptools) from 70.2.0 to 71.0.3. - [Release notes](https://github.com/pypa/setuptools/releases) - [Changelog](https://github.com/pypa/setuptools/blob/main/NEWS.rst) - [Commits](https://github.com/pypa/setuptools/compare/v70.2.0...v71.0.3) --- updated-dependencies: - dependency-name: setuptools dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- requirements/testing.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/testing.txt b/requirements/testing.txt index 6709822b..49d785c7 100644 --- a/requirements/testing.txt +++ b/requirements/testing.txt @@ -8,7 +8,7 @@ pylint==3.2.5 pytest==8.2.2 pytest-cov==5.0.0 pytest-timeout==2.3.1 -setuptools==70.2.0 +setuptools==71.0.3 twine==5.1.1 mypy==1.10.1 types-pyyaml==6.0.12.20240311 \ No newline at end of file From d9dcf56eeb0ebf7f5db81ef4c6f7fe7ed43262af Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jul 2024 10:18:12 +0200 Subject: [PATCH 40/59] Bump mypy from 1.10.1 to 1.11.0 (#422) Bumps [mypy](https://github.com/python/mypy) from 1.10.1 to 1.11.0. - [Changelog](https://github.com/python/mypy/blob/master/CHANGELOG.md) - [Commits](https://github.com/python/mypy/compare/v1.10.1...v1.11) --- updated-dependencies: - dependency-name: mypy dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- requirements/testing.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/testing.txt b/requirements/testing.txt index 49d785c7..bf68c227 100644 --- a/requirements/testing.txt +++ b/requirements/testing.txt @@ -10,5 +10,5 @@ pytest-cov==5.0.0 pytest-timeout==2.3.1 setuptools==71.0.3 twine==5.1.1 -mypy==1.10.1 +mypy==1.11.0 types-pyyaml==6.0.12.20240311 \ No newline at end of file From bed60a87adae174710ed3ee547ce3970ce7edcf8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jul 2024 10:18:23 +0200 Subject: [PATCH 41/59] Bump pylint from 3.2.5 to 3.2.6 (#420) Bumps [pylint](https://github.com/pylint-dev/pylint) from 3.2.5 to 3.2.6. - [Release notes](https://github.com/pylint-dev/pylint/releases) - [Commits](https://github.com/pylint-dev/pylint/compare/v3.2.5...v3.2.6) --- updated-dependencies: - dependency-name: pylint dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- requirements/testing.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/testing.txt b/requirements/testing.txt index bf68c227..7735564e 100644 --- a/requirements/testing.txt +++ b/requirements/testing.txt @@ -4,7 +4,7 @@ coveralls==4.0.1 flake8==7.1.0 flake8-isort==6.1.1 pydocstyle==6.3.0 -pylint==3.2.5 +pylint==3.2.6 pytest==8.2.2 pytest-cov==5.0.0 pytest-timeout==2.3.1 From 1f50b65385acda6defe5f926f054ce4a73f37295 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jul 2024 10:18:48 +0200 Subject: [PATCH 42/59] Bump setuptools from 71.0.3 to 71.1.0 (#421) Bumps [setuptools](https://github.com/pypa/setuptools) from 71.0.3 to 71.1.0. - [Release notes](https://github.com/pypa/setuptools/releases) - [Changelog](https://github.com/pypa/setuptools/blob/main/NEWS.rst) - [Commits](https://github.com/pypa/setuptools/compare/v71.0.3...v71.1.0) --- updated-dependencies: - dependency-name: setuptools dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- requirements/testing.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/testing.txt b/requirements/testing.txt index 7735564e..ee20b5b0 100644 --- a/requirements/testing.txt +++ b/requirements/testing.txt @@ -8,7 +8,7 @@ pylint==3.2.6 pytest==8.2.2 pytest-cov==5.0.0 pytest-timeout==2.3.1 -setuptools==71.0.3 +setuptools==71.1.0 twine==5.1.1 mypy==1.11.0 types-pyyaml==6.0.12.20240311 \ No newline at end of file From 84053e3838f25cede2a9f4d0af54f247afb4052f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jul 2024 10:22:22 +0200 Subject: [PATCH 43/59] Bump pytest from 8.2.2 to 8.3.1 (#419) Bumps [pytest](https://github.com/pytest-dev/pytest) from 8.2.2 to 8.3.1. - [Release notes](https://github.com/pytest-dev/pytest/releases) - [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst) - [Commits](https://github.com/pytest-dev/pytest/compare/8.2.2...8.3.1) --- updated-dependencies: - dependency-name: pytest dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- requirements/testing.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/testing.txt b/requirements/testing.txt index ee20b5b0..878f4368 100644 --- a/requirements/testing.txt +++ b/requirements/testing.txt @@ -5,7 +5,7 @@ flake8==7.1.0 flake8-isort==6.1.1 pydocstyle==6.3.0 pylint==3.2.6 -pytest==8.2.2 +pytest==8.3.1 pytest-cov==5.0.0 pytest-timeout==2.3.1 setuptools==71.1.0 From 1634798df3c45022d61dce4e91bb7387eccf40fd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 5 Aug 2024 10:03:16 +0200 Subject: [PATCH 44/59] Bump flake8 from 7.1.0 to 7.1.1 (#427) Bumps [flake8](https://github.com/pycqa/flake8) from 7.1.0 to 7.1.1. - [Commits](https://github.com/pycqa/flake8/compare/7.1.0...7.1.1) --- updated-dependencies: - dependency-name: flake8 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- requirements/testing.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/testing.txt b/requirements/testing.txt index 878f4368..1652f634 100644 --- a/requirements/testing.txt +++ b/requirements/testing.txt @@ -1,7 +1,7 @@ -r production.txt isort==5.13.2 coveralls==4.0.1 -flake8==7.1.0 +flake8==7.1.1 flake8-isort==6.1.1 pydocstyle==6.3.0 pylint==3.2.6 From dc74893a1d918c7177ad26b8c6031aebdc0c537e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 5 Aug 2024 10:03:48 +0200 Subject: [PATCH 45/59] Bump setuptools from 71.1.0 to 72.1.0 (#425) Bumps [setuptools](https://github.com/pypa/setuptools) from 71.1.0 to 72.1.0. - [Release notes](https://github.com/pypa/setuptools/releases) - [Changelog](https://github.com/pypa/setuptools/blob/main/NEWS.rst) - [Commits](https://github.com/pypa/setuptools/compare/v71.1.0...v72.1.0) --- updated-dependencies: - dependency-name: setuptools dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- requirements/testing.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/testing.txt b/requirements/testing.txt index 1652f634..1cb92935 100644 --- a/requirements/testing.txt +++ b/requirements/testing.txt @@ -8,7 +8,7 @@ pylint==3.2.6 pytest==8.3.1 pytest-cov==5.0.0 pytest-timeout==2.3.1 -setuptools==71.1.0 +setuptools==72.1.0 twine==5.1.1 mypy==1.11.0 types-pyyaml==6.0.12.20240311 \ No newline at end of file From 9c124a49e717ab1f1abecac841a89687b15e6d92 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 5 Aug 2024 10:04:03 +0200 Subject: [PATCH 46/59] Bump mypy from 1.11.0 to 1.11.1 (#426) Bumps [mypy](https://github.com/python/mypy) from 1.11.0 to 1.11.1. - [Changelog](https://github.com/python/mypy/blob/master/CHANGELOG.md) - [Commits](https://github.com/python/mypy/compare/v1.11...v1.11.1) --- updated-dependencies: - dependency-name: mypy dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- requirements/testing.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/testing.txt b/requirements/testing.txt index 1cb92935..a258f682 100644 --- a/requirements/testing.txt +++ b/requirements/testing.txt @@ -10,5 +10,5 @@ pytest-cov==5.0.0 pytest-timeout==2.3.1 setuptools==72.1.0 twine==5.1.1 -mypy==1.11.0 +mypy==1.11.1 types-pyyaml==6.0.12.20240311 \ No newline at end of file From 836a76e492174c6f319669efab34567e46af9a23 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 5 Aug 2024 10:04:13 +0200 Subject: [PATCH 47/59] Bump pytest from 8.3.1 to 8.3.2 (#424) Bumps [pytest](https://github.com/pytest-dev/pytest) from 8.3.1 to 8.3.2. - [Release notes](https://github.com/pytest-dev/pytest/releases) - [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst) - [Commits](https://github.com/pytest-dev/pytest/compare/8.3.1...8.3.2) --- updated-dependencies: - dependency-name: pytest dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- requirements/testing.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/testing.txt b/requirements/testing.txt index a258f682..80d5987c 100644 --- a/requirements/testing.txt +++ b/requirements/testing.txt @@ -5,7 +5,7 @@ flake8==7.1.1 flake8-isort==6.1.1 pydocstyle==6.3.0 pylint==3.2.6 -pytest==8.3.1 +pytest==8.3.2 pytest-cov==5.0.0 pytest-timeout==2.3.1 setuptools==72.1.0 From f4c0b10e06cd941ed9a630aef2d367d828e52a88 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 5 Aug 2024 10:05:44 +0200 Subject: [PATCH 48/59] Bump types-pyyaml from 6.0.12.20240311 to 6.0.12.20240724 (#423) Bumps [types-pyyaml](https://github.com/python/typeshed) from 6.0.12.20240311 to 6.0.12.20240724. - [Commits](https://github.com/python/typeshed/commits) --- updated-dependencies: - dependency-name: types-pyyaml dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- requirements/testing.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/testing.txt b/requirements/testing.txt index 80d5987c..7c7fc05e 100644 --- a/requirements/testing.txt +++ b/requirements/testing.txt @@ -11,4 +11,4 @@ pytest-timeout==2.3.1 setuptools==72.1.0 twine==5.1.1 mypy==1.11.1 -types-pyyaml==6.0.12.20240311 \ No newline at end of file +types-pyyaml==6.0.12.20240724 \ No newline at end of file From 4a5b5de477126b694560a96427f67d00abe8a032 Mon Sep 17 00:00:00 2001 From: Julius Mittenzwei Date: Fri, 9 Aug 2024 09:51:58 +0200 Subject: [PATCH 49/59] Remove dependency for types-pyyaml (#430) * Remove dependency for types-pyyaml * - * Added python version 3.13 * correct python version * no python 3.13 for now --- .github/workflows/ci.yml | 4 +++- requirements/production.txt | 4 ++-- requirements/testing.txt | 1 - 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7152852e..9d5c474f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -49,9 +49,11 @@ jobs: - name: Linter Pylint run: PYTHONPATH=. pylint --rcfile=.pylintrc pyvlx test/*.py *.py examples/*.py - name: Mypy - run: mypy pyvlx + run: mypy --install-types --non-interactive pyvlx - name: Tests run: PYTHONPATH=. pytest --cov pyvlx --cov-report xml + - name: Isort + run: isort --check-only test examples pyvlx - name: Upload coverage artifact uses: actions/upload-artifact@v2.2.2 with: diff --git a/requirements/production.txt b/requirements/production.txt index ca8b5c28..7d41a2af 100644 --- a/requirements/production.txt +++ b/requirements/production.txt @@ -1,2 +1,2 @@ -pyyaml==6.0.1 -zeroconf==0.132.2 \ No newline at end of file +pyyaml==6.0.2 +zeroconf==0.132.2 diff --git a/requirements/testing.txt b/requirements/testing.txt index 7c7fc05e..af9c5dcb 100644 --- a/requirements/testing.txt +++ b/requirements/testing.txt @@ -11,4 +11,3 @@ pytest-timeout==2.3.1 setuptools==72.1.0 twine==5.1.1 mypy==1.11.1 -types-pyyaml==6.0.12.20240724 \ No newline at end of file From 3f897f6ecfd8f9f688097223469b3e16c0e8eae8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 21 Aug 2024 09:31:41 +0200 Subject: [PATCH 50/59] Bump setuptools from 72.1.0 to 73.0.1 (#433) Bumps [setuptools](https://github.com/pypa/setuptools) from 72.1.0 to 73.0.1. - [Release notes](https://github.com/pypa/setuptools/releases) - [Changelog](https://github.com/pypa/setuptools/blob/main/NEWS.rst) - [Commits](https://github.com/pypa/setuptools/compare/v72.1.0...v73.0.1) --- updated-dependencies: - dependency-name: setuptools dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- requirements/testing.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/testing.txt b/requirements/testing.txt index af9c5dcb..b63c22da 100644 --- a/requirements/testing.txt +++ b/requirements/testing.txt @@ -8,6 +8,6 @@ pylint==3.2.6 pytest==8.3.2 pytest-cov==5.0.0 pytest-timeout==2.3.1 -setuptools==72.1.0 +setuptools==73.0.1 twine==5.1.1 mypy==1.11.1 From 9a0a7ab77bcbb99a22694d37d3ab77551cbcdd95 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 26 Aug 2024 09:39:38 +0200 Subject: [PATCH 51/59] Bump mypy from 1.11.1 to 1.11.2 (#434) Bumps [mypy](https://github.com/python/mypy) from 1.11.1 to 1.11.2. - [Changelog](https://github.com/python/mypy/blob/master/CHANGELOG.md) - [Commits](https://github.com/python/mypy/compare/v1.11.1...v1.11.2) --- updated-dependencies: - dependency-name: mypy dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- requirements/testing.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/testing.txt b/requirements/testing.txt index b63c22da..72ad6181 100644 --- a/requirements/testing.txt +++ b/requirements/testing.txt @@ -10,4 +10,4 @@ pytest-cov==5.0.0 pytest-timeout==2.3.1 setuptools==73.0.1 twine==5.1.1 -mypy==1.11.1 +mypy==1.11.2 From 7fb1a1fd812b2490da73d1a3171f6eb781daa95a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 28 Aug 2024 10:27:25 +0200 Subject: [PATCH 52/59] Bump setuptools from 73.0.1 to 74.0.0 (#436) Bumps [setuptools](https://github.com/pypa/setuptools) from 73.0.1 to 74.0.0. - [Release notes](https://github.com/pypa/setuptools/releases) - [Changelog](https://github.com/pypa/setuptools/blob/main/NEWS.rst) - [Commits](https://github.com/pypa/setuptools/compare/v73.0.1...v74.0.0) --- updated-dependencies: - dependency-name: setuptools dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- requirements/testing.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/testing.txt b/requirements/testing.txt index 72ad6181..84b3bbcf 100644 --- a/requirements/testing.txt +++ b/requirements/testing.txt @@ -8,6 +8,6 @@ pylint==3.2.6 pytest==8.3.2 pytest-cov==5.0.0 pytest-timeout==2.3.1 -setuptools==73.0.1 +setuptools==74.0.0 twine==5.1.1 mypy==1.11.2 From 545deb12f5cec56dac6d9d9ecfef3fe8d44875a1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 28 Aug 2024 10:28:47 +0200 Subject: [PATCH 53/59] Bump zeroconf from 0.132.2 to 0.133.0 (#435) Bumps [zeroconf](https://github.com/python-zeroconf/python-zeroconf) from 0.132.2 to 0.133.0. - [Release notes](https://github.com/python-zeroconf/python-zeroconf/releases) - [Changelog](https://github.com/python-zeroconf/python-zeroconf/blob/master/CHANGELOG.md) - [Commits](https://github.com/python-zeroconf/python-zeroconf/compare/0.132.2...0.133.0) --- updated-dependencies: - dependency-name: zeroconf dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- requirements/production.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/production.txt b/requirements/production.txt index 7d41a2af..813aa9f4 100644 --- a/requirements/production.txt +++ b/requirements/production.txt @@ -1,2 +1,2 @@ pyyaml==6.0.2 -zeroconf==0.132.2 +zeroconf==0.133.0 From 23191871e861b88fbf97f48ce3a9462908058b71 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 4 Sep 2024 12:23:07 +0200 Subject: [PATCH 54/59] Bump pylint from 3.2.6 to 3.2.7 (#437) Bumps [pylint](https://github.com/pylint-dev/pylint) from 3.2.6 to 3.2.7. - [Release notes](https://github.com/pylint-dev/pylint/releases) - [Commits](https://github.com/pylint-dev/pylint/compare/v3.2.6...v3.2.7) --- updated-dependencies: - dependency-name: pylint dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- requirements/testing.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/testing.txt b/requirements/testing.txt index 84b3bbcf..1283e8f9 100644 --- a/requirements/testing.txt +++ b/requirements/testing.txt @@ -4,7 +4,7 @@ coveralls==4.0.1 flake8==7.1.1 flake8-isort==6.1.1 pydocstyle==6.3.0 -pylint==3.2.6 +pylint==3.2.7 pytest==8.3.2 pytest-cov==5.0.0 pytest-timeout==2.3.1 From fbfd799d0684cc8966388cc64149c879e30e101f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 4 Sep 2024 12:23:18 +0200 Subject: [PATCH 55/59] Bump setuptools from 74.0.0 to 74.1.1 (#440) Bumps [setuptools](https://github.com/pypa/setuptools) from 74.0.0 to 74.1.1. - [Release notes](https://github.com/pypa/setuptools/releases) - [Changelog](https://github.com/pypa/setuptools/blob/main/NEWS.rst) - [Commits](https://github.com/pypa/setuptools/compare/v74.0.0...v74.1.1) --- updated-dependencies: - dependency-name: setuptools dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- requirements/testing.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/testing.txt b/requirements/testing.txt index 1283e8f9..71389eb2 100644 --- a/requirements/testing.txt +++ b/requirements/testing.txt @@ -8,6 +8,6 @@ pylint==3.2.7 pytest==8.3.2 pytest-cov==5.0.0 pytest-timeout==2.3.1 -setuptools==74.0.0 +setuptools==74.1.1 twine==5.1.1 mypy==1.11.2 From 4b1d07c03ad1a84331f3ad88137e58d244881342 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 9 Sep 2024 08:58:43 +0200 Subject: [PATCH 56/59] Bump zeroconf from 0.133.0 to 0.134.0 (#442) Bumps [zeroconf](https://github.com/python-zeroconf/python-zeroconf) from 0.133.0 to 0.134.0. - [Release notes](https://github.com/python-zeroconf/python-zeroconf/releases) - [Changelog](https://github.com/python-zeroconf/python-zeroconf/blob/master/CHANGELOG.md) - [Commits](https://github.com/python-zeroconf/python-zeroconf/compare/0.133.0...0.134.0) --- updated-dependencies: - dependency-name: zeroconf dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- requirements/production.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/production.txt b/requirements/production.txt index 813aa9f4..1e459094 100644 --- a/requirements/production.txt +++ b/requirements/production.txt @@ -1,2 +1,2 @@ pyyaml==6.0.2 -zeroconf==0.133.0 +zeroconf==0.134.0 From ac1bad31168c694f294a215d3c2eefc9fe624aeb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 9 Sep 2024 08:59:00 +0200 Subject: [PATCH 57/59] Bump setuptools from 74.1.1 to 74.1.2 (#441) Bumps [setuptools](https://github.com/pypa/setuptools) from 74.1.1 to 74.1.2. - [Release notes](https://github.com/pypa/setuptools/releases) - [Changelog](https://github.com/pypa/setuptools/blob/main/NEWS.rst) - [Commits](https://github.com/pypa/setuptools/compare/v74.1.1...v74.1.2) --- updated-dependencies: - dependency-name: setuptools dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- requirements/testing.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/testing.txt b/requirements/testing.txt index 71389eb2..88c4c554 100644 --- a/requirements/testing.txt +++ b/requirements/testing.txt @@ -8,6 +8,6 @@ pylint==3.2.7 pytest==8.3.2 pytest-cov==5.0.0 pytest-timeout==2.3.1 -setuptools==74.1.1 +setuptools==74.1.2 twine==5.1.1 mypy==1.11.2 From 386a7a4573f27f9f1637cd77f647b04bead9b2c1 Mon Sep 17 00:00:00 2001 From: Paul Daumlechner Date: Tue, 10 Sep 2024 22:25:58 +0200 Subject: [PATCH 58/59] Fix blocking calls issue --- pyvlx/connection.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyvlx/connection.py b/pyvlx/connection.py index 743edb7a..f48df197 100644 --- a/pyvlx/connection.py +++ b/pyvlx/connection.py @@ -159,7 +159,7 @@ def write(self, frame: FrameBase) -> None: @staticmethod def create_ssl_context() -> ssl.SSLContext: """Create and return SSL Context.""" - ssl_context = ssl.create_default_context(ssl.Purpose.SERVER_AUTH) + ssl_context = ssl.SSLContext(ssl.PROTOCOL_TLS_CLIENT) ssl_context.check_hostname = False ssl_context.verify_mode = ssl.CERT_NONE return ssl_context From de0de247cd3a9f08595a9d5e440e84c337a23f10 Mon Sep 17 00:00:00 2001 From: Paul Daumlechner Date: Tue, 10 Sep 2024 22:40:26 +0200 Subject: [PATCH 59/59] resolve version issues --- pyvlx/discovery.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyvlx/discovery.py b/pyvlx/discovery.py index fd836401..b25d7a22 100644 --- a/pyvlx/discovery.py +++ b/pyvlx/discovery.py @@ -23,6 +23,9 @@ class VeluxHost(): class VeluxDiscovery(): """Class to discover Velux KLF200 devices on the network.""" + hosts: list[VeluxHost] = [] + infos: list[AsyncServiceInfo | None] = [] + def __init__(self, zeroconf: AsyncZeroconf,) -> None: """Initialize VeluxDiscovery object.""" self.zc: AsyncZeroconf = zeroconf