Skip to content

Commit 5c4b7f2

Browse files
committed
show what's the packages versions
1 parent d544000 commit 5c4b7f2

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/main.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,16 @@ jobs:
1616
- name: Install pypa/build
1717
# We need a recent version of `packaging`, otherwise we encounter this bug:
1818
# https://github.com/pypa/twine/issues/1216
19-
run: >-
19+
run: |
2020
python3 -m pip install --user build twine packaging>=25.0
21+
python3 -m pip freeze
2122
- name: Build a binary wheel and a source tarball
2223
run: python3 -m build
2324
- name: Check the distribution files with `twine`
24-
run: twine check --strict dist/*
25+
run: |
26+
which twine
27+
twine --version
28+
twine check --strict dist/*
2529
- name: Upload artifact
2630
id: artifact-upload-step
2731
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)