File tree Expand file tree Collapse file tree 1 file changed +8
-6
lines changed
Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -11,10 +11,10 @@ jobs:
1111 uses : actions/checkout@v4
1212
1313 - name : Download python-3.13 standalone
14- shell : cmd
14+ # shell: cmd
1515 run : |
16- curl -L -o python-3.13-embed.zip https://github.com/indygreg/python-build-standalone/releases/download/20240421/cpython-3.13.0b1+20240421-x86_64-pc-windows-msvc-shared-install_only.zip
17-
16+ # curl -L -o python-3.13-embed.zip https://github.com/indygreg/python-build-standalone/releases/download/20240421/cpython-3.13.0b1+20240421-x86_64-pc-windows-msvc-shared-install_only.zip
17+ curl -L -o python-3.13-embed.zip https://github.com/astral-sh/python-build-standalone/releases/download/20250807/cpython-3.13.6+20250807-x86_64-pc-windows-msvc-install_only_stripped.tar.gz
1818 - name : Show downloaded file info
1919 shell : pwsh
2020 run : |
@@ -26,10 +26,12 @@ jobs:
2626 Start-Sleep -Seconds 2
2727
2828 - name : Extract python-3.13-embed.zip
29- shell : pwsh
29+ # shell: pwsh
3030 run : |
31- New-Item -ItemType Directory -Path dotpython
32- Expand-Archive -Path python-3.13-embed.zip -DestinationPath dotpython
31+ #New-Item -ItemType Directory -Path dotpython
32+ #Expand-Archive -Path python-3.13-embed.zip -DestinationPath dotpython
33+ mkdir dotpython
34+ tar -xf python-3.13-embed.zip -C dotpython
3335
3436 - name : List dotpython contents (for debugging)
3537 shell : pwsh
You can’t perform that action at this time.
0 commit comments