From b5442a0d946a35b171a80912568a2c4c89d4440d Mon Sep 17 00:00:00 2001 From: scito Date: Sun, 13 Oct 2024 11:11:07 +0200 Subject: [PATCH] test python 3.13 in CI --- .github/workflows/ci.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9a0940d..6953604 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,7 +20,7 @@ jobs: strategy: matrix: - python-version: ["3.12", "3.11", "3.10", "3.9", "3.8"] + python-version: ["3.13", "3.12", "3.11", "3.10", "3.9", "3.8"] platform: [ubuntu-latest, macos-latest, windows-latest] # exclude: @@ -52,7 +52,6 @@ jobs: flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide flake8 . --count --exit-zero --max-complexity=10 --max-line-length=200 --statistics - if: matrix.python-version != '3.7' - name: Type checking with mypy run: | mypy --install-types --non-interactive src/*.py tests/*.py