From 8ecce29dcc1599c45b1c4619ae7686c2b8b4eb3f Mon Sep 17 00:00:00 2001 From: Jourdelune Date: Sun, 2 Jun 2024 13:12:32 +0200 Subject: [PATCH] [fix] ignore aeneas package --- .github/workflows/pylint.yml | 2 -- .pylintc | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index d6a9dec..0df1f5d 100644 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/pylint.yml @@ -18,8 +18,6 @@ jobs: run: | python -m pip install --upgrade pip pip install pylint - sudo pip install numpy - pip install numpy && pip install aeneas pip install -r .pylint_requirements.txt - name: Analysing the code with pylint run: | diff --git a/.pylintc b/.pylintc index 48f344d..d395a63 100644 --- a/.pylintc +++ b/.pylintc @@ -63,7 +63,7 @@ ignore-patterns=^\.# # (useful for modules/projects where namespaces are manipulated during runtime # and thus existing member attributes cannot be deduced by static analysis). It # supports qualified module names, as well as Unix pattern matching. -ignored-modules= +ignored-modules=aeneas # Python code to execute, usually for sys.path manipulation such as # pygtk.require().