From 607c7386d7d8ceec9a1b7b45398a4c7fa32c83fb Mon Sep 17 00:00:00 2001 From: Dominic Kempf Date: Thu, 8 Feb 2024 16:05:31 +0100 Subject: [PATCH] Restrict tested Python versions --- .github/workflows/ci.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a4bad6e..588141b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,7 +25,11 @@ jobs: strategy: matrix: os: [ubuntu-latest, macos-latest, windows-latest] - python-version: ["3.8", "3.9", "3.10"] + # We test on the oldest and newest supported Python versions + # Unfortenately, we can't test on the latest Python version, as the + # pytest-virtualenv plugin does not support it yet, see + # https://github.com/man-group/pytest-plugins/issues/220 + python-version: ["3.8", "3.11"] steps: - name: Checking out the cookie cutter repository