Skip to content

Commit

Permalink
Update PyPlumIO to 0.5.9.
Browse files Browse the repository at this point in the history
  • Loading branch information
denpamusic committed Nov 26, 2023
1 parent 8c81c48 commit b62b38b
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install pyplumio==0.5.8 pytest-homeassistant-custom-component psutil-home-assistant fnv-hash-fast aiohttp_cors mypy pylint flake8 flake8-pyproject black
python -m pip install pyplumio==0.5.9 pytest-homeassistant-custom-component psutil-home-assistant fnv-hash-fast aiohttp_cors mypy pylint flake8 flake8-pyproject black
- name: Check typing
run: |
Expand Down
2 changes: 1 addition & 1 deletion custom_components/plum_ecomax/config_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from homeassistant.data_entry_flow import FlowResult
from homeassistant.exceptions import HomeAssistantError
import homeassistant.helpers.config_validation as cv
from pyplumio.connection import Connection
from pyplumio import Connection
from pyplumio.const import ProductType
from pyplumio.devices import AddressableDevice
from pyplumio.exceptions import ConnectionFailedError
Expand Down
2 changes: 1 addition & 1 deletion custom_components/plum_ecomax/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"pyplumio"
],
"requirements": [
"pyplumio==0.5.8"
"pyplumio==0.5.9"
],
"version": "0.4.1-beta.3"
}
2 changes: 1 addition & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from unittest.mock import AsyncMock, Mock, patch

from homeassistant.core import HomeAssistant
from pyplumio.connection import Connection
from pyplumio import Connection
from pyplumio.const import DeviceState, ProductType, UnitOfMeasurement
from pyplumio.devices.ecomax import EcoMAX
from pyplumio.devices.mixer import Mixer
Expand Down
3 changes: 1 addition & 2 deletions tests/test_connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@
from homeassistant.core import HomeAssistant
from homeassistant.exceptions import ConfigEntryNotReady
from homeassistant.helpers.entity import DeviceInfo
from pyplumio import SerialConnection, TcpConnection
from pyplumio.connection import Connection
from pyplumio import Connection, SerialConnection, TcpConnection
from pyplumio.const import FrameType
from pyplumio.devices.ecomax import EcoMAX
import pytest
Expand Down

0 comments on commit b62b38b

Please sign in to comment.