From a21ebb765ab22e63a9ca6a0b70f4297c7c66095a Mon Sep 17 00:00:00 2001 From: kigland Date: Fri, 14 Aug 2026 13:34:37 +0800 Subject: [PATCH 1/2] Fix Python 3.8 CI environment setup --- .github/workflows/checks.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index 69691318..a343af83 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -6,7 +6,6 @@ on: - main paths-ignore: - '.devcontainer/**' - - '.github/**' - '.vscode/**' - '.gitignore' - 'README.md' @@ -15,7 +14,6 @@ on: - main paths-ignore: - '.devcontainer/**' - - '.github/**' - '.vscode/**' - '.gitignore' - 'README.md' @@ -47,6 +45,8 @@ jobs: - uses: actions/checkout@v3 - name: Install Poetry uses: snok/install-poetry@v1 + with: + virtualenvs-create: false - name: Set up Python uses: actions/setup-python@v4 with: From 890807737eee58497e0185d2eec95c3ea9b8a60b Mon Sep 17 00:00:00 2001 From: kigland Date: Fri, 14 Aug 2026 13:36:59 +0800 Subject: [PATCH 2/2] Pin virtualenv for Python 3.8 --- .github/workflows/checks.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index a343af83..2c08fb7a 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -45,8 +45,8 @@ jobs: - uses: actions/checkout@v3 - name: Install Poetry uses: snok/install-poetry@v1 - with: - virtualenvs-create: false + - name: Install Python 3.8-compatible virtualenv seeder + run: poetry self add 'virtualenv<20.36' - name: Set up Python uses: actions/setup-python@v4 with: