Skip to content

Commit

Permalink
Bump dependencies to HA 2024.12, which'll move us to Python 3.13. (#210)
Browse files Browse the repository at this point in the history
  • Loading branch information
torbennehmer authored Dec 18, 2024
2 parents 0de17d5 + dd68df0 commit e2e875c
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 7 deletions.
4 changes: 1 addition & 3 deletions .devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "torbennehmer/hacs-e3dc",
"image": "mcr.microsoft.com/devcontainers/python:3.12",
"image": "mcr.microsoft.com/devcontainers/python:3.13",
"postCreateCommand": "scripts/setup",
"forwardPorts": [
8124
Expand Down Expand Up @@ -40,8 +40,6 @@
"python.editor.formatOnSave": true,
"python.formatting.blackPath": "/usr/local/py-utils/bin/black",
"python.formatting.provider": "black",
"python.linting.enabled": true,
"python.linting.pylintEnabled": true,
"python.pythonPath": "/usr/bin/python3",
"terminal.integrated.defaultProfile.linux": "zsh",
"terminal.integrated.profiles.linux": {
Expand Down
2 changes: 1 addition & 1 deletion custom_components/e3dc_rscp/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@
"pye3dc==0.9.2"
],
"ssdp": [],
"version": "3.7.0",
"version": "3.9.0-beta.1",
"zeroconf": []
}
2 changes: 1 addition & 1 deletion hacs.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"filename": "hacs-e3dc_rscp.zip",
"hide_default_branch": true,
"homeassistant": "2024.9.0",
"homeassistant": "2024.12.0",
"name": "E3DC Remote Storage Control Protocol (Git)",
"render_readme": true,
"zip_release": true
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
homeassistant>=2024.9.0
homeassistant>=2024.12.0
colorlog==6.9.0
pip>=24.1.1,<24.4
ruff==0.8.1
Expand Down
2 changes: 1 addition & 1 deletion scripts/develop
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ fi
## This let's us have the structure we want <root>/custom_components/integration_blueprint
## while at the same time have Home Assistant configuration inside <root>/config
## without resulting to symlinks.
export PYTHONPATH="${PYTHONPATH}:/home/vscode/.local/lib/python3.10/site-packages/:${PWD}/custom_components"
export PYTHONPATH="${PYTHONPATH}:/home/vscode/.local/lib/python3.13/site-packages/:${PWD}/custom_components"

# Start Home Assistant
hass --config "${PWD}/config" --debug

0 comments on commit e2e875c

Please sign in to comment.