From 01d68e3da00fb1cc549634f978767216ed4766b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20August=C3=BDn?= Date: Mon, 10 Nov 2025 17:30:43 +0100 Subject: [PATCH 1/2] ci: pytest 9 added to test matrix --- .github/workflows/tests.yaml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 349ba24..858eaa8 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -8,8 +8,12 @@ jobs: strategy: matrix: python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"] - pytest-version: [4, 5, 6, 7, 8] - + pytest-version: [4, 5, 6, 7, 8, 9] + exclude: + - python-version: "3.8" + pytest-version: 9 + - python-version: "3.9" + pytest-version: 9 steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} From b358bc00df833acb38c7c008c9ae91b8f9a32ccf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20August=C3=BDn?= Date: Mon, 10 Nov 2025 17:35:10 +0100 Subject: [PATCH 2/2] ci: publish made in Python 3.10 --- .github/workflows/build-and-publish.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-and-publish.yaml b/.github/workflows/build-and-publish.yaml index d62188d..4ac4674 100644 --- a/.github/workflows/build-and-publish.yaml +++ b/.github/workflows/build-and-publish.yaml @@ -15,7 +15,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-python@v2 with: - python-version: 3.9 + python-version: 3.10 - name: Install dependencies run: | python -m pip install --upgrade pip build twine