From ca071a2e75b821064ca35fd4c999743a941ee8f1 Mon Sep 17 00:00:00 2001 From: Justus Kuhlmann Date: Mon, 1 Dec 2025 17:59:56 +0100 Subject: [PATCH] add python version 3.10 and 3.11 to matrix, unlock --- .github/workflows/pytest.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pytest.yaml b/.github/workflows/pytest.yaml index b5e9e65..69e3ce7 100644 --- a/.github/workflows/pytest.yaml +++ b/.github/workflows/pytest.yaml @@ -12,6 +12,8 @@ jobs: strategy: matrix: python-version: + - "3.10" + - "3.11" - "3.12" - "3.13" - "3.14" @@ -30,6 +32,6 @@ jobs: python-version: ${{ matrix.python-version }} enable-cache: true - name: Install corrlib - run: uv sync --locked --all-extras --dev --python ${{ matrix.python-version }} + run: uv sync --all-extras --dev --python ${{ matrix.python-version }} - name: Run tests run: uv run pytest tests