-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #720 from canton7/bugfix/ha-2025.1.0
Fix breakage caused by HA 2025.1.0
- Loading branch information
Showing
12 changed files
with
65 additions
and
112 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "FoxESS - Modbus", | ||
"hacs": "1.20.0", | ||
"homeassistant": "2023.7.0", | ||
"homeassistant": "2025.1.0", | ||
"render_readme": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,24 @@ | ||
pip>=21.0,<23.2 | ||
homeassistant==2023.7.0 | ||
# pip>=21.0,<23.2 | ||
homeassistant==2025.1.0 | ||
|
||
# Testing | ||
pytest-homeassistant-custom-component==0.13.42 # Matching version for 2023.7.0 | ||
pytest-homeassistant-custom-component==0.13.201 # Matching version for 2025.1.0 | ||
psutil-home-assistant # Not sure why this is needed? | ||
fnv_hash_fast # Or this? | ||
pytest-asyncio | ||
|
||
colorlog==6.7.0 | ||
pre-commit==3.3.3 | ||
black==23.3.0 | ||
black==23.9.0 | ||
ruff==0.0.275 | ||
# These are duplicated in .pre-commit-config.yaml | ||
reorder-python-imports==3.10.0 | ||
mypy==1.4.1 | ||
homeassistant-stubs==2023.7.0 # Matching HA version | ||
mypy==1.5.1 | ||
# Currently not avaiable, see https://github.com/KapJI/homeassistant-stubs/issues/510 | ||
# homeassistant-stubs==2025.1.0 # Matching HA version | ||
types-python-slugify==8.0.0.2 | ||
voluptuous-stubs==0.1.1 | ||
# For mypy. Keep in sync with manifest.json and https://github.com/home-assistant/core/blob/master/requirements_all.txt. | ||
# If changed, make sure subclasses in modbus_client are still valid! | ||
pymodbus==3.5.4 | ||
pymodbus==3.7.4 | ||
pyserial==3.5 |