File tree Expand file tree Collapse file tree 3 files changed +8
-5
lines changed
templates/.github/workflows Expand file tree Collapse file tree 3 files changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -1211,7 +1211,7 @@ jobs:
12111211 - name : install dependencies (gdb)
12121212 if : >
12131213 !matrix.cibw_build && matrix.os == 'ubuntu'
1214- run : >
1214+ run : |
12151215 sudo apt-get install gdb
12161216 echo 0 | sudo tee /proc/sys/kernel/yama/ptrace_scope
12171217 - name : cibw build and test
@@ -1248,7 +1248,9 @@ jobs:
12481248 - name : check wheel
12491249 if : >
12501250 !matrix.cibw_ft && matrix.cibw_build
1251- run : twine check wheelhouse/*.whl
1251+ run : |
1252+ python -mpip install --progress-bar=off twine
1253+ twine check wheelhouse/*.whl
12521254 - name : upload wheel
12531255 uses : actions/upload-artifact@v4
12541256 if : matrix.cibw_build
Original file line number Diff line number Diff line change @@ -2,4 +2,3 @@ virtualenv>=20.4.7
22pip >= 19.1.1
33setuptools >= 18.0.1
44tox
5- twine
Original file line number Diff line number Diff line change 8585 - name : install dependencies (gdb)
8686 if : >
8787 !matrix.cibw_build && matrix.os == 'ubuntu'
88- run : >
88+ run : |
8989 sudo apt-get install gdb
9090 echo 0 | sudo tee /proc/sys/kernel/yama/ptrace_scope
9191 - name : cibw build and test
@@ -122,7 +122,9 @@ jobs:
122122 - name : check wheel
123123 if : >
124124 !matrix.cibw_ft && matrix.cibw_build
125- run : twine check wheelhouse/*.whl
125+ run : |
126+ python -mpip install --progress-bar=off twine
127+ twine check wheelhouse/*.whl
126128 - name : upload wheel
127129 uses : actions/upload-artifact@v4
128130 if : matrix.cibw_build
You can’t perform that action at this time.
0 commit comments