From 3e6a7429af31896e3368c61c82c88d8a88509122 Mon Sep 17 00:00:00 2001 From: jurraca Date: Thu, 12 Dec 2024 17:01:10 +0000 Subject: [PATCH] split out dev package requirements and adjust CI accordingly --- .github/workflows/pylint.yml | 3 +-- requirements-dev.txt | 3 +++ 2 files changed, 4 insertions(+), 2 deletions(-) create mode 100644 requirements-dev.txt diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index 83e4e1d..ae875d3 100644 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/pylint.yml @@ -18,8 +18,7 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install pylint - pip install -r requirements.txt + pip install -r requirements-dev.txt - name: Run Pylint run: | diff --git a/requirements-dev.txt b/requirements-dev.txt new file mode 100644 index 0000000..9dcda9f --- /dev/null +++ b/requirements-dev.txt @@ -0,0 +1,3 @@ +-r requirements.txt +pylint==3.3.1 +pytest==8.3.3