From 4ad633a9d016e83eab0645e47867fee65f302b05 Mon Sep 17 00:00:00 2001 From: Danilo Bargen Date: Mon, 15 Apr 2024 09:13:15 +0200 Subject: [PATCH 1/3] CI: Update actions/checkout --- .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 9545831..af19bf1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: - '6.0' name: Python ${{ matrix.python }} on coverage ${{ matrix.coverage }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Setup python ${{ matrix.python }} uses: actions/setup-python@v5 with: From 00756f59c452341eb402e2bb16f6fdc75186897c Mon Sep 17 00:00:00 2001 From: Danilo Bargen Date: Mon, 15 Apr 2024 09:12:46 +0200 Subject: [PATCH 2/3] CI: Test with coverage 6 and 7 --- .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 af19bf1..971711c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,8 +19,8 @@ jobs: - '3.12' - 'pypy3.10' coverage: - - '5.5' - '6.0' + - '7.0' name: Python ${{ matrix.python }} on coverage ${{ matrix.coverage }} steps: - uses: actions/checkout@v4 From 8620bc9c0a264eeadca1a05d1507a33e97b9b11c Mon Sep 17 00:00:00 2001 From: Danilo Bargen Date: Mon, 15 Apr 2024 09:15:56 +0200 Subject: [PATCH 3/3] 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