We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 87cd2a9 commit 1efc32cCopy full SHA for 1efc32c
.github/workflows/dist.yml
@@ -73,6 +73,11 @@ jobs:
73
WHEEL=$(ls *.whl)
74
python -m pip --disable-pip-version-check install ${WHEEL}[all]
75
76
+ - name: Show installed packages
77
+ shell: bash
78
+ run: |
79
+ python -m pip list
80
+
81
# Only need to test that the wheel installs
82
83
cross-test:
@@ -129,6 +134,11 @@ jobs:
129
134
130
135
/build/venv/bin/cross-pip --disable-pip-version-check install ${WHEEL}[all]
131
136
137
138
139
140
+ /build/venv/bin/cross-python -m pip list
141
132
142
publish:
133
143
runs-on: ubuntu-latest
144
needs: [check, test, cross-test]
0 commit comments