From d0772e2088e4a5564d6f79953a4fef9b674e9492 Mon Sep 17 00:00:00 2001 From: Declan <5962877+dec1@users.noreply.github.com> Date: Thu, 20 Jun 2024 18:26:43 +0200 Subject: [PATCH] try python 3.11 --- .github/workflows/ci.yaml | 4 ++-- prj/script/common.cmd | 2 +- prj/script/common.sh | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 3baaaaa..d262c28 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -21,10 +21,10 @@ jobs: - name: Check out the repository uses: actions/checkout@v4 - - name: Set up Python 3.12 + - name: Set up Python 3.11 uses: actions/setup-python@v5 with: - python-version: '3.12' + python-version: '3.11' - name: Set up dependencies (Linux) if: runner.os == 'Linux' diff --git a/prj/script/common.cmd b/prj/script/common.cmd index 1feb395..7544aee 100644 --- a/prj/script/common.cmd +++ b/prj/script/common.cmd @@ -5,4 +5,4 @@ REM define (relative) paths set script_dir=%~dp0 set venv_dir=%script_dir%\..\venv set pip_reqs_dir=%script_dir%\..\pip_reqs -set py_ver="3.12" +set py_ver="3.11" diff --git a/prj/script/common.sh b/prj/script/common.sh index 0e07f18..1cfcf1f 100755 --- a/prj/script/common.sh +++ b/prj/script/common.sh @@ -3,4 +3,4 @@ script_dir=$(dirname "$0") venv_dir=${script_dir}/../venv pip_reqs_dir=${script_dir}/../pip_reqs -py_ver="3.12" +py_ver="3.11"