From 43890b754b08bd0d16fe1092936a9cc17bffb066 Mon Sep 17 00:00:00 2001 From: Danilo Bargen Date: Mon, 15 Apr 2024 09:15:56 +0200 Subject: [PATCH] CI: Fix pkg_resources package on Python 3.12 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 971711c..e4881fa 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,6 +29,6 @@ jobs: with: python-version: ${{ matrix.python }} - name: Install dependencies - run: pip install coverage==${{ matrix.coverage}} && pip install . && pip install -r requirements-dev.txt + run: pip install setuptools coverage==${{ matrix.coverage}} && pip install . && pip install -r requirements-dev.txt - name: Run tests run: python -m pytest