From 13b2af8eae9839ec614e4140a9811886e0ec1d74 Mon Sep 17 00:00:00 2001 From: Anton Verburg <47820045+antonverburg@users.noreply.github.com> Date: Sun, 8 Oct 2023 17:24:12 +0200 Subject: [PATCH] Update .devcontainer.json: upgrade to python3.11 (#135) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This should upgrade the dev container to python 3.11 (has been tested on my own PC, seems to work). This would fix https://github.com/ludeeus/integration_blueprint/issues/134 --------- Co-authored-by: Joakim Sørensen --- .devcontainer.json | 2 +- .github/workflows/lint.yml | 2 +- hacs.json | 4 ++-- requirements.txt | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.devcontainer.json b/.devcontainer.json index 9fda616..c70f1f5 100644 --- a/.devcontainer.json +++ b/.devcontainer.json @@ -1,6 +1,6 @@ { "name": "ludeeus/integration_blueprint", - "image": "mcr.microsoft.com/vscode/devcontainers/python:0-3.10-bullseye", + "image": "mcr.microsoft.com/devcontainers/python:3.11-bullseye", "postCreateCommand": "scripts/setup", "forwardPorts": [ 8123 diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 28f9fce..852226c 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -19,7 +19,7 @@ jobs: - name: "Set up Python" uses: actions/setup-python@v4.6.1 with: - python-version: "3.10" + python-version: "3.11" cache: "pip" - name: "Install requirements" diff --git a/hacs.json b/hacs.json index 65f7335..0c12f64 100644 --- a/hacs.json +++ b/hacs.json @@ -2,7 +2,7 @@ "name": "Integration blueprint", "filename": "integration_blueprint.zip", "hide_default_branch": true, - "homeassistant": "2023.3.0", + "homeassistant": "2023.8.0", "render_readme": true, "zip_release": true -} \ No newline at end of file +} diff --git a/requirements.txt b/requirements.txt index bb09464..ad6f856 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ colorlog==6.7.0 -homeassistant==2023.2.0 +homeassistant==2023.8.0 pip>=21.0,<23.2 ruff==0.0.267