From 383593f741fff9dbbac95896c91917c577e0927c Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Wed, 22 Jan 2025 16:27:40 +0100 Subject: [PATCH] Fix dependencies for CI --- .github/workflows/tests.yml | 4 ++-- requirements_dev.txt | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 29be47f..2a3d452 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -24,7 +24,7 @@ jobs: with: python-version: ${{ matrix.python-version }} - name: Install Dependencies - run: python -m pip install -U pip wheel coverage codecov pytest + run: python -m pip install -U pip wheel setuptools -r requirements_dev.txt - name: Install Dependencies run: python setup.py develop - name: Run tests @@ -43,7 +43,7 @@ jobs: with: python-version: "3.10" - name: Install Dependencies - run: python -m pip install -U pip wheel black isort pytest + run: python -m pip install -U pip wheel setuptools -r requirements_dev.txt - name: Install Dependencies run: python setup.py develop - name: Run black diff --git a/requirements_dev.txt b/requirements_dev.txt index ec0c289..f5bdcea 100644 --- a/requirements_dev.txt +++ b/requirements_dev.txt @@ -3,3 +3,4 @@ pypdf pytest flake8 isort +black -- 2.47.3