From 2c3730604b91e8790c5f1d6da1637a1ddcc71172 Mon Sep 17 00:00:00 2001 From: Lars Date: Sat, 16 Nov 2024 09:56:26 +0100 Subject: [PATCH] Fixed ruff invocation command for github CI --- .github/workflows/ci.yml | 2 +- noxfile.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index df037692..5f082402 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -32,5 +32,5 @@ jobs: - name: Run lint tests if: ${{ matrix.python-version == '3.12' }} run: | - ruff . + ruff check . mypy segno diff --git a/noxfile.py b/noxfile.py index 5b944765..aa7c8ec3 100644 --- a/noxfile.py +++ b/noxfile.py @@ -15,7 +15,7 @@ import shutil import nox -_PY_VERSIONS = ('3.5', '3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12', 'pypy3') +_PY_VERSIONS = ('3.5', '3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13', 'pypy3') _PY_DEFAULT_VERSION = sys.version[:4] nox.options.sessions = chain([f'test-{version}' for version in _PY_VERSIONS], ['coverage', 'lint'])