Skip to content

Commit

Permalink
Prepare release 1.6.0 (#112)
Browse files Browse the repository at this point in the history
* Prepare release 1.6.0
* Drop requirement for bs4
* Ignore incorrect pyright import warning
  • Loading branch information
WebSpider authored Oct 21, 2024
1 parent f395060 commit 4dfe322
Show file tree
Hide file tree
Showing 9 changed files with 264 additions and 297 deletions.
2 changes: 1 addition & 1 deletion custom_components/myskoda/binary_sensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from homeassistant.config_entries import ConfigEntry
from homeassistant.core import HomeAssistant
from homeassistant.helpers.entity_platform import AddEntitiesCallback
from homeassistant.helpers.typing import DiscoveryInfoType
from homeassistant.helpers.typing import DiscoveryInfoType # pyright: ignore [reportAttributeAccessIssue]

from myskoda import common
from myskoda.models.air_conditioning import AirConditioning
Expand Down
2 changes: 1 addition & 1 deletion custom_components/myskoda/climate.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from homeassistant.const import ATTR_TEMPERATURE, UnitOfTemperature
from homeassistant.core import HomeAssistant
from homeassistant.helpers.entity_platform import AddEntitiesCallback
from homeassistant.helpers.typing import DiscoveryInfoType
from homeassistant.helpers.typing import DiscoveryInfoType # pyright: ignore [reportAttributeAccessIssue]
from homeassistant.util import Throttle

from myskoda.models.air_conditioning import AirConditioning
Expand Down
2 changes: 1 addition & 1 deletion custom_components/myskoda/device_tracker.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from homeassistant.config_entries import ConfigEntry
from homeassistant.core import HomeAssistant
from homeassistant.helpers.entity_platform import AddEntitiesCallback
from homeassistant.helpers.typing import DiscoveryInfoType
from homeassistant.helpers.typing import DiscoveryInfoType # pyright: ignore [reportAttributeAccessIssue]

from myskoda.models.info import CapabilityId
from myskoda.models.position import Position, Positions, PositionType
Expand Down
4 changes: 2 additions & 2 deletions custom_components/myskoda/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"myskoda"
],
"requirements": [
"myskoda==0.8.1"
"myskoda==0.8.4"
],
"version": "1.5.0"
"version": "1.6.0"
}
2 changes: 1 addition & 1 deletion custom_components/myskoda/number.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from homeassistant.const import PERCENTAGE
from homeassistant.core import HomeAssistant
from homeassistant.helpers.entity_platform import AddEntitiesCallback
from homeassistant.helpers.typing import DiscoveryInfoType
from homeassistant.helpers.typing import DiscoveryInfoType # pyright: ignore [reportAttributeAccessIssue]
from homeassistant.util import Throttle

from myskoda.models.info import CapabilityId
Expand Down
2 changes: 1 addition & 1 deletion custom_components/myskoda/sensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from homeassistant.const import PERCENTAGE, UnitOfLength, UnitOfPower, UnitOfTime
from homeassistant.core import HomeAssistant
from homeassistant.helpers.entity_platform import AddEntitiesCallback
from homeassistant.helpers.typing import DiscoveryInfoType
from homeassistant.helpers.typing import DiscoveryInfoType # pyright: ignore [reportAttributeAccessIssue]

from myskoda.models import charging
from myskoda.models.charging import Charging, ChargingStatus
Expand Down
2 changes: 1 addition & 1 deletion custom_components/myskoda/switch.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from homeassistant.config_entries import ConfigEntry
from homeassistant.core import HomeAssistant
from homeassistant.helpers.entity_platform import AddEntitiesCallback
from homeassistant.helpers.typing import DiscoveryInfoType
from homeassistant.helpers.typing import DiscoveryInfoType # pyright: ignore [reportAttributeAccessIssue]
from homeassistant.util import Throttle

from myskoda.models.charging import (
Expand Down
538 changes: 253 additions & 285 deletions poetry.lock

Large diffs are not rendered by default.

7 changes: 3 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,20 +1,19 @@
[tool.poetry]
name = "homeassistant-myskoda"
version = "1.5.0"
version = "1.6.0"
description = "Homeassistant integration for myskoda."
authors = ["Frederick Gnodtke <[email protected]>"]
readme = "README.md"

[tool.poetry.dependencies]
python = "~3.12,<3.13"
beautifulsoup4 = "^4.12.3"
homeassistant = "^2024.10.0b0"
homeassistant = "^2024.10.0"
aiohttp = "^3.10.5"
pyjwt = "^2.9.0"
pyyaml = "^6.0.2"
asyncio = "^3.4.3"
voluptuous = "^0.15.2"
myskoda = "^0.8.2"
myskoda = "^0.8.4"


[tool.poetry.group.dev.dependencies]
Expand Down

0 comments on commit 4dfe322

Please sign in to comment.