Skip to content

Commit 4cf2f5c

Browse files
committed
wip
1 parent 40c40b6 commit 4cf2f5c

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

Diff for: .github/workflows/kit.yml

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

294294
- name: "List distributions"
295+
env:
296+
EXPECTED: 77
295297
run: |
296298
ls -alR
297-
echo "Number of dists, there should be 72:"
299+
echo "Number of dists, there should be $EXPECTED:"
298300
ls -1 coverage-* | wc -l
301+
files=$(ls coverage-* 2>/dev/null | wc -l) && [ "$files" -eq $EXPECTED ] || exit 1
299302
300303
- name: "Sign artifacts"
301304
uses: sigstore/gh-action-sigstore-python@f514d46b907ebcd5bedc05145c03b69c1edd8b46 # v3.0.0

Diff for: 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)