From: Raphael Michel Date: Wed, 22 Jan 2025 15:27:40 +0000 (+0100) Subject: Fix dependencies for CI X-Git-Tag: 2025.1.0~9 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=383593f741fff9dbbac95896c91917c577e0927c;p=thirdparty%2Fpython-drafthorse.git Fix dependencies for CI --- 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