From d64e5d19235a42fc1c5001a0116a07da60e702cd Mon Sep 17 00:00:00 2001 From: lebaudantoine Date: Mon, 3 Mar 2025 17:22:42 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B(CI)=20sync=20CI=20Python=20version?= =?UTF-8?q?=20with=20Docker=20image=20Python=20version?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Update CI environment to use the same Python version as our Docker image. Issue surfaced when upgrading IPython to v9, which requires Python 11. Ensures consistent runtime behavior between CI tests and production. --- .github/workflows/meet.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/meet.yml b/.github/workflows/meet.yml index 86d5ff8b..5f4ed1ce 100644 --- a/.github/workflows/meet.yml +++ b/.github/workflows/meet.yml @@ -81,7 +81,7 @@ jobs: - name: Install Python uses: actions/setup-python@v5 with: - python-version: "3.10" + python-version: "3.12" - name: Install development dependencies run: pip install --user .[dev] - name: Check code formatting with ruff @@ -144,7 +144,7 @@ jobs: - name: Install Python uses: actions/setup-python@v5 with: - python-version: "3.10" + python-version: "3.12" - name: Install development dependencies run: pip install --user .[dev] @@ -238,7 +238,7 @@ jobs: - name: Install Python uses: actions/setup-python@v5 with: - python-version: "3.10" + python-version: "3.12" - name: Install development dependencies working-directory: src/backend