From 6f06207a8eac00eaf03eb143abc97d57baedf0d1 Mon Sep 17 00:00:00 2001 From: Richard Holmes Date: Tue, 12 Mar 2024 13:51:50 +0000 Subject: [PATCH] Fix Versions 3.12 --- .devcontainer-template.json | 4 +++- .github/workflows/push-main.yml | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.devcontainer-template.json b/.devcontainer-template.json index 1ac276a..59f2329 100644 --- a/.devcontainer-template.json +++ b/.devcontainer-template.json @@ -1,10 +1,12 @@ /* Copy this file to .devcontainer.json if using PODMAN, instead of DOCKER, uncomment the runArgs section + + NOTE: 3.12 may not work with debugging yet. */ { "name": "sHedC/python-masterthermconnect", - "image": "mcr.microsoft.com/devcontainers/python:1-3.13", + "image": "mcr.microsoft.com/devcontainers/python:1-3.12", "postCreateCommand": "pip install --upgrade pip && pip install --user -r requirements.txt && python3 -m pip install -e .", "customizations": { "vscode": { diff --git a/.github/workflows/push-main.yml b/.github/workflows/push-main.yml index 0a69ac8..3383eb8 100644 --- a/.github/workflows/push-main.yml +++ b/.github/workflows/push-main.yml @@ -15,7 +15,7 @@ jobs: strategy: matrix: os: [macos-latest, windows-latest, ubuntu-latest] - python-version: ["3.10", "3.11", "3.12", "3.13.0-alpha.3"] + python-version: ["3.10", "3.11", "3.12", "3.13.0-alpha.4"] steps: - uses: actions/checkout@v4