From 3ace1c78ce0c89b146d26947ee31c5e65fc6934f Mon Sep 17 00:00:00 2001 From: Thomas Carmet <8408330+tcarmet@users.noreply.github.com> Date: Mon, 2 Dec 2024 14:03:44 -0800 Subject: [PATCH] Downgrade python 3.12 to 3.11 (#198) Fixes #195 --- .devcontainer/devcontainer.json | 2 +- .github/workflows/tests.yaml | 2 +- Dockerfile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index ee8d0f2..7568532 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -1,6 +1,6 @@ { "name": "Python 3", - "image": "mcr.microsoft.com/devcontainers/python:0-3.10", + "image": "mcr.microsoft.com/devcontainers/python:0-3.11", "features": { "ghcr.io/devcontainers/features/github-cli:1": { "version": "latest" diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 6c5cc3d..55c7532 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -21,7 +21,7 @@ jobs: run: pip install poetry - uses: actions/setup-python@v4 with: - python-version: "3.10" + python-version: "3.11" cache: poetry - name: Install dependencies run: poetry install diff --git a/Dockerfile b/Dockerfile index 2b0d643..30e47c8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.12 +FROM python:3.11 EXPOSE 8000