Skip to content

Commit

Permalink
v1.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonmadigan committed Jun 9, 2024
1 parent 0f7ac5c commit 8552c62
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.11"]
python-version: ["3.12"]

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 2 additions & 0 deletions custom_components/hkc_alarm/alarm_control_panel.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ class HKCAlarmControlPanel(AlarmControlPanelEntity, CoordinatorEntity):
| AlarmControlPanelEntityFeature.ARM_AWAY
)

_attr_code_arm_required = False

def __init__(self, data, device_info, coordinator):
AlarmControlPanelEntity.__init__(self)
CoordinatorEntity.__init__(self, coordinator)
Expand Down
4 changes: 2 additions & 2 deletions custom_components/hkc_alarm/manifest.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"domain": "hkc_alarm",
"name": "HKC Alarm",
"version": "1.0.6",
"version": "1.0.7",
"documentation": "https://github.com/jasonmadigan/ha-hkc",
"issue_tracker": "https://github.com/jasonmadigan/ha-hkc/issues",
"dependencies": [],
"codeowners": [
"@jasonmadigan"
],
"requirements": [
"pyhkc==0.4.2"
"pyhkc==0.4.3"
],
"config_flow": true,
"iot_class": "cloud_polling"
Expand Down
4 changes: 2 additions & 2 deletions hacs.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "HKC Alarm Integration for Home Assistant",
"hacs": "1.0.6",
"hacs": "1.0.7",
"render_readme": true,
"homeassistant": "2024.2.4"
"homeassistant": "2024.6.1"
}
6 changes: 3 additions & 3 deletions requirements_dev.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
aiohttp==3.9.3
homeassistant==2024.2.4
aiohttp>=3.9.5
homeassistant==2024.6.1
pytest
pytest-homeassistant-custom-component==0.13.103
pytest-aiohttp
pyhkc==0.4.2
pyhkc==0.4.3

0 comments on commit 8552c62

Please sign in to comment.