From 1374c6d667e434fa00f0a3f54c60df0f4700ce73 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 8 Oct 2024 13:14:33 +0000 Subject: [PATCH] Apply updates from cookiecutter This automated commit applies the latest updates from our cookiecutters [1] to this repo. [1]: https://github.com/hypothesis/cookiecutters --- .github/workflows/ci.yml | 9 +++++---- pyproject.toml | 5 ----- 2 files changed, 5 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e72271d..af1b7e0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -62,9 +62,9 @@ jobs: env: COVERAGE_FILE: .coverage.${{ matrix.python-version }} - name: Upload coverage file - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: - name: coverage + name: coverage-python${{ matrix.python-version}} path: .coverage.* include-hidden-files: true Coverage: @@ -77,9 +77,10 @@ jobs: with: python-version: '3.12' - name: Download coverage files - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: - name: coverage + pattern: coverage-python* + merge-multiple: true - run: python -m pip install 'tox<4' - run: tox -e coverage Functests: diff --git a/pyproject.toml b/pyproject.toml index a351c09..89bb707 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -158,8 +158,3 @@ module= [ "tests.*", ] ignore_errors = true - - -[tool.hdev] -project_name = "dependabot-alerts" -project_type = "library"