From 300d4093f33e71a1a1e400010eb1ffaa1637e660 Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Fri, 4 Apr 2025 23:03:24 +0200 Subject: [PATCH] Disable cython-lint --- .github/workflows/tests.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 3da2b63d8..155e37104 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -45,11 +45,12 @@ jobs: run: | python -m pip install flake8==5.0.4 python -m flake8 spacy --count --select=E901,E999,F821,F822,F823,W605 --show-source --statistics - - name: cython-lint - run: | - python -m pip install cython-lint -c requirements.txt - # E501: line too log, W291: trailing whitespace, E266: too many leading '#' for block comment - cython-lint spacy --ignore E501,W291,E266 + # Unfortunately cython-lint isn't working after the shift to Cython 3. + #- name: cython-lint + # run: | + # python -m pip install cython-lint -c requirements.txt + # # E501: line too log, W291: trailing whitespace, E266: too many leading '#' for block comment + # cython-lint spacy --ignore E501,W291,E266 tests: name: Test