From b035b96decb219f1e8cc042c2a7083aae22a6e98 Mon Sep 17 00:00:00 2001 From: Anthony LC Date: Mon, 18 Nov 2024 12:39:37 +0100 Subject: [PATCH] =?UTF-8?q?=E2=AC=86=EF=B8=8F(CI)=20bump=20python=20versio?= =?UTF-8?q?n=20in=20backend=20test?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit We were testing the backend with python 3.10.0, but actually the backend was running with python 3.12.6. We bump the python version in the backend test to match the running version of the backend. --- .github/workflows/impress.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/impress.yml b/.github/workflows/impress.yml index 0c5b38cf..896f07ef 100644 --- a/.github/workflows/impress.yml +++ b/.github/workflows/impress.yml @@ -107,7 +107,9 @@ jobs: - name: Install Python uses: actions/setup-python@v3 with: - python-version: "3.10" + python-version: "3.12.6" + - name: Upgrade pip and setuptools + run: pip install --upgrade pip setuptools - name: Install development dependencies run: pip install --user .[dev] - name: Check code formatting with ruff @@ -199,7 +201,7 @@ jobs: - name: Install Python uses: actions/setup-python@v3 with: - python-version: "3.10" + python-version: "3.12.6" - name: Install development dependencies run: pip install --user .[dev]