diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index fea279c..ea15a0d 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -1,6 +1,6 @@ { "name": "moonraker-home-assistant", - "image": "mcr.microsoft.com/devcontainers/python:3.13", + "image": "mcr.microsoft.com/devcontainers/python:dev-3.13-bookworm", "postCreateCommand": "scripts/setup", "forwardPorts": [8123], "customizations": { diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 60f570b..6b0da14 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -32,7 +32,7 @@ jobs: - name: "Set up Python" uses: actions/setup-python@v5 with: - python-version: "3.12" + python-version: "3.13" cache: "pip" - name: "Install requirements" @@ -50,7 +50,7 @@ jobs: - name: Setup Python uses: "actions/setup-python@v5" with: - python-version: "3.12" + python-version: "3.13" - name: Install requirements run: python3 -m pip install -r requirements.txt - name: Run tests