Skip to content

Commit 0bad812

Browse files
committed
wip
1 parent 40c40b6 commit 0bad812

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

.github/workflows/kit.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -292,10 +292,15 @@ jobs:
292292
merge-multiple: true
293293

294294
- name: "List distributions"
295+
env:
296+
# PYVERSIONS: changing the list of versions will change the number of
297+
# expected distributions.
298+
EXPECTED: 63
295299
run: |
296300
ls -alR
297-
echo "Number of dists, there should be 72:"
301+
echo "Number of dists, there should be $EXPECTED:"
298302
ls -1 coverage-* | wc -l
303+
files=$(ls coverage-* 2>/dev/null | wc -l) && [ "$files" -eq $EXPECTED ] || exit 1
299304
300305
- name: "Sign artifacts"
301306
uses: sigstore/gh-action-sigstore-python@f514d46b907ebcd5bedc05145c03b69c1edd8b46 # v3.0.0

CHANGES.rst

+4-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,10 @@ upgrading your version of coverage.py.
2323
Unreleased
2424
----------
2525

26-
Nothing yet.
26+
- We now ship a py3-none-any.whl wheel file. Thanks, `Russell Keith-Magee
27+
<pull 1914_>`_.
28+
29+
.. _pull 1914: https://github.com/nedbat/coveragepy/pull/1914
2730

2831

2932
.. start-releases

0 commit comments

Comments
 (0)