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