Skip to content

Commit

Permalink
Merge branch 'master' into cleanup_tasks_set
Browse files Browse the repository at this point in the history
  • Loading branch information
pawlizio committed Dec 28, 2024
2 parents 1d3562b + 9128760 commit 7cfdbb6
Show file tree
Hide file tree
Showing 21 changed files with 13 additions and 9 deletions.
1 change: 1 addition & 0 deletions .pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ output-format=colorized
[FORMAT]
indent-string=' '
max-line-length=150
max-positional-arguments=7

[MAIN]
max-branches=20
Expand Down
3 changes: 3 additions & 0 deletions pyvlx/const.py
Original file line number Diff line number Diff line change
Expand Up @@ -295,6 +295,9 @@ class NodeTypeWithSubtype(Enum):
DUAL_ROLLER_SHUTTER = 0x0340
ON_OFF_SWITCH = 0x03C0
HORIZONTAL_AWNING = 0x0400
# Not documented by Velux but reported by some devices
# Velux support refuses to provide additional information about this node sub type
HORIZONTAL_AWNING_ALT = 0x0401
EXTERIOR_VENETIAN_BLIND = 0x0440
LOUVER_BLIND = 0x0480
CURTAIN_TRACK = 0x04C0
Expand Down
1 change: 1 addition & 0 deletions pyvlx/node_helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ def convert_frame_to_node(
if frame.node_type in [
NodeTypeWithSubtype.VERTICAL_EXTERIOR_AWNING,
NodeTypeWithSubtype.HORIZONTAL_AWNING,
NodeTypeWithSubtype.HORIZONTAL_AWNING_ALT,
]:
return Awning(
pyvlx=pyvlx,
Expand Down
1 change: 0 additions & 1 deletion pyvlx/pyvlx.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ 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.26")

async def connect(self) -> None:
"""Connect to KLF 200."""
Expand Down
2 changes: 1 addition & 1 deletion requirements/production.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
pyyaml==6.0.2
zeroconf==0.134.0
zeroconf==0.136.2
12 changes: 6 additions & 6 deletions requirements/testing.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ coveralls==4.0.1
flake8==7.1.1
flake8-isort==6.1.1
pydocstyle==6.3.0
pylint==3.2.7
pytest==8.3.3
pytest-cov==5.0.0
pylint==3.3.2
pytest==8.3.4
pytest-cov==6.0.0
pytest-timeout==2.3.1
setuptools==74.1.2
twine==5.1.1
mypy==1.11.2
setuptools==75.6.0
twine==6.0.1
mypy==1.14.0
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

PKG_ROOT = os.path.dirname(__file__)

VERSION = "0.2.26"
VERSION = "0.2.25"


def get_long_description() -> str:
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 comments on commit 7cfdbb6

Please sign in to comment.