From 14d2b3b36e793302b772c5806330bd1dd5f7a909 Mon Sep 17 00:00:00 2001 From: Kirill Markin Date: Sun, 25 May 2025 11:05:22 +0300 Subject: [PATCH] Fix GitHub Actions tests - Remove Python 3.8 from test matrix (incompatible with requires-python >=3.9) - Add proper type annotations for pytest fixtures (capsys, caplog) --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 4c6e38e..6abbfa8 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.8", "3.11", "3.13"] + python-version: ["3.9", "3.11", "3.13"] steps: - uses: actions/checkout@v4