Skip to content

Commit 135747f

Browse files
committed
install twine before checking wheel
1 parent 69fe0b2 commit 135747f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/wheel.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,9 @@ jobs:
101101
cp -f dist/*.tar.gz wheelhouse/
102102
103103
- name: Validate artifact
104-
run: twine check --strict python/wheelhouse/*
104+
run: |
105+
python -m pip install twine
106+
twine check --strict python/wheelhouse/*
105107
106108
- name: Upload artifact
107109
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)