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 e032021 commit 673f117Copy full SHA for 673f117
.github/workflows/cmake.yml
@@ -84,10 +84,9 @@ jobs:
84
- name: Build Python Windows
85
if: ${{ runner.os == 'Windows' }}
86
run: |
87
- py --list-paths
88
- %AppData%\Python\Python38\python.exe -m pip wheel -v -w ${{ github.workspace }}/build/ .
89
- %AppData%\Python\Python39\python.exe -m pip wheel -v -w ${{ github.workspace }}/build/ .
90
- %AppData%\Python\Python310\python.exe -m pip wheel -v -w ${{ github.workspace }}/build/ .
+ py -3.8 -m pip wheel -v -w ${{ github.workspace }}/build/ .
+ py -3.9 -m pip wheel -v -w ${{ github.workspace }}/build/ .
+ py -3.10 -m pip wheel -v -w ${{ github.workspace }}/build/ .
91
92
- name: Package
93
0 commit comments