Skip to content

Commit 673f117

Browse files
wheel
1 parent e032021 commit 673f117

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/workflows/cmake.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -84,10 +84,9 @@ jobs:
8484
- name: Build Python Windows
8585
if: ${{ runner.os == 'Windows' }}
8686
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/ .
87+
py -3.8 -m pip wheel -v -w ${{ github.workspace }}/build/ .
88+
py -3.9 -m pip wheel -v -w ${{ github.workspace }}/build/ .
89+
py -3.10 -m pip wheel -v -w ${{ github.workspace }}/build/ .
9190
9291
- name: Package
9392
run: |

0 commit comments

Comments
 (0)