From 35d47ecd1ca9d145ba21457a266c523f32f6032e Mon Sep 17 00:00:00 2001 From: Alessandro Candido Date: Tue, 7 Feb 2023 12:05:24 +0100 Subject: [PATCH] Add pylint dep --- .github/workflows/rules.yml | 1 + setup.py | 3 +++ 2 files changed, 4 insertions(+) diff --git a/.github/workflows/rules.yml b/.github/workflows/rules.yml index e087400..4b2cb05 100644 --- a/.github/workflows/rules.yml +++ b/.github/workflows/rules.yml @@ -18,4 +18,5 @@ jobs: os: ${{ matrix.os }} python-version: ${{ matrix.python-version }} environment: "qibotn" + pip-extras: "analysis,tests" secrets: inherit diff --git a/setup.py b/setup.py index 532723b..08b5515 100644 --- a/setup.py +++ b/setup.py @@ -34,6 +34,9 @@ setup( "pytest-cov>=4.0.0", "pytest-env>=0.8.1", ], + "analysis": [ + "pylint>=2.16.0", + ], }, python_requires=">=3.7.0", long_description=LONG_DESCRIPTION,