From 0bad812b6c6b124d41a4badf3faa5fb91c22e8dc Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Fri, 10 Jan 2025 07:44:03 -0500 Subject: [PATCH] wip --- .github/workflows/kit.yml | 7 ++++++- CHANGES.rst | 5 ++++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/workflows/kit.yml b/.github/workflows/kit.yml index 67fbc3fe2..31ccdc61b 100644 --- a/.github/workflows/kit.yml +++ b/.github/workflows/kit.yml @@ -292,10 +292,15 @@ jobs: merge-multiple: true - name: "List distributions" + env: + # PYVERSIONS: changing the list of versions will change the number of + # expected distributions. + EXPECTED: 63 run: | ls -alR - echo "Number of dists, there should be 72:" + echo "Number of dists, there should be $EXPECTED:" ls -1 coverage-* | wc -l + files=$(ls coverage-* 2>/dev/null | wc -l) && [ "$files" -eq $EXPECTED ] || exit 1 - name: "Sign artifacts" uses: sigstore/gh-action-sigstore-python@f514d46b907ebcd5bedc05145c03b69c1edd8b46 # v3.0.0 diff --git a/CHANGES.rst b/CHANGES.rst index 0f5fee55a..fde2fc772 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -23,7 +23,10 @@ upgrading your version of coverage.py. Unreleased ---------- -Nothing yet. +- We now ship a py3-none-any.whl wheel file. Thanks, `Russell Keith-Magee + `_. + +.. _pull 1914: https://github.com/nedbat/coveragepy/pull/1914 .. start-releases