From 8e633d9f8c69bfe66d67728b65464b00f33f0bfc Mon Sep 17 00:00:00 2001 From: Julien M Date: Fri, 20 Jan 2023 18:46:08 +0100 Subject: [PATCH 1/2] Align tests on minimal Python version set in packaging --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 335a568f..6c2499f0 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -23,7 +23,7 @@ jobs: strategy: matrix: os: [macos-latest, ubuntu-22.04, windows-latest] - python-version: ["3.8", "3.9", "3.10", "3.11"] + python-version: ["3.10", "3.11"] runs-on: ${{ matrix.os }} steps: @@ -56,7 +56,7 @@ jobs: strategy: matrix: os: [macos-latest, ubuntu-22.04, windows-latest] - python-version: ["3.8", "3.9", "3.10", "3.11"] + python-version: ["3.10", "3.11"] runs-on: ${{ matrix.os }} steps: From 19f57f43658606622a45e4b32b23e717e4f8ea2c Mon Sep 17 00:00:00 2001 From: Julien M Date: Fri, 20 Jan 2023 18:46:19 +0100 Subject: [PATCH 2/2] Apply minimal Python version --- docs/development/windows.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/development/windows.md b/docs/development/windows.md index 4df698f2..9938c2ef 100644 --- a/docs/development/windows.md +++ b/docs/development/windows.md @@ -6,7 +6,7 @@ Tested on: ## Requirements -- Python 3.8+ installed with the Windows MSI installer (version from the Windows store is not working) +- Python 3.10+ installed with the Windows MSI installer (version from the Windows store is not working) ## Enable remote scripts (for virtual environment) @@ -21,7 +21,7 @@ Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser ```powershell # create a virtual env -py -3.8 -m venv .venv +py -3.10 -m venv .venv # enable virtual env .\.venv\Scripts\activate