Skip to content

Commit 69826ad

Browse files
committed
appveyor: Fix python PATH for a new pywin32-309.
Pip is unable to install new pywin32 v309 with the following warning: WARNING: The scripts pywin32_postinstall.exe and pywin32_testall.exe are installed in 'C:\Python312-x64\Scripts' which is not on PATH. This now fails all the windows builds. It looks like this directory is generally required for pip and some other packages to work properly, we just didn't hit the issue until it became required for pywin32. Let's add it to the PATH. Acked-by: Alin Gabriel Serdean <aserdean@ovn.org> Signed-off-by: Ilya Maximets <i.maximets@ovn.org>
1 parent 0bdca8b commit 69826ad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

appveyor.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ clone_folder: C:\openvswitch_compile
1010
shallow_clone: true
1111

1212
init:
13-
- ps: $env:PATH ="C:\Python312-x64;"+$env:PATH
13+
- ps: $env:PATH ="C:\Python312-x64;C:\Python312-x64\Scripts;"+$env:PATH
1414
- ps: New-Item -Type HardLink -Path "C:\Python312-x64\python3.exe"
1515
-Value "C:\Python312-x64\python.exe"
1616

0 commit comments

Comments
 (0)