We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 488f89e commit 1ed1dc1Copy full SHA for 1ed1dc1
1 file changed
packaging/windows/win_cli_builder.ps1
@@ -88,16 +88,16 @@ Expand-Archive -Path python.zip -DestinationPath $CLI_PATH
88
89
# We need to expand this to make virtualenv work
90
pushd "$CLI_PATH"
91
- Expand-Archive -Path python36.zip
92
- rm_rf python36.zip
+ Expand-Archive -Path python311.zip
+ rm_rf python311.zip
93
mkdir Lib
94
- move python36\* Lib
95
- rmdir python36
+ move python311\* Lib
+ rmdir python311
96
popd
97
98
99
Write-Host "Adding pip to embedded python"
100
-Set-Content -Path "$CLI_PATH\python36._pth" -Value ".
+Set-Content -Path "$CLI_PATH\python311._pth" -Value ".
101
.\Lib
102
.\Lib\site-packages
103
0 commit comments