From d63017d2c0c85ccc31bd3eff049146faa0f5b91f Mon Sep 17 00:00:00 2001 From: Justus Kuhlmann Date: Mon, 1 Dec 2025 17:57:06 +0100 Subject: [PATCH] add python version 3.10 and 3.11 to matrix --- .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 92e0958..5af9010 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 --locked --all-extras --dev --python ${{ matrix.python-version }} - name: Run tests run: uv run pytest tests