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 01429d5 commit 138390fCopy full SHA for 138390f
.github/workflows/build-test-windows.yml
@@ -46,7 +46,11 @@ jobs:
46
run: |
47
cd ${{ env.NEW_WORKSPACE }}
48
49
- Invoke-BatchFile "C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Auxiliary\Build\vcvarsall.bat"
+ cmd /c '"C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Auxiliary\Build\vcvarsall.bat" x64 && set' | ForEach-Object {
50
+ if ($_ -match '^(.*?)=(.*)$') {
51
+ [Environment]::SetEnvironmentVariable($matches[1], $matches[2])
52
+ }
53
54
55
cd python
56
pip install -U wheel pybind11 certifi cython cmake setuptools>=65.6.1
0 commit comments