Skip to content

Commit

Permalink
RC2 is out! (#75)
Browse files Browse the repository at this point in the history
Co-authored-by: Lysandros Nikolaou <lisandrosnik@gmail.com>
  • Loading branch information
sobolevn and lysnikolaou authored Sep 9, 2024
1 parent 85922f1 commit e8a5a3a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/ci.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
- name: custom python install script
shell: pwsh
run: |
$pythonInstallerUrl = "https://www.python.org/ftp/python/3.13.0/python-3.13.0rc1-amd64.exe"
$pythonInstallerUrl = "https://www.python.org/ftp/python/3.13.0/python-3.13.0rc2-amd64.exe"
Invoke-WebRequest $pythonInstallerUrl -OutFile setup-python.exe
Start-Process "setup-python.exe" -argumentlist "/quiet PrependPath=1 TargetDir=C:\Python313 Include_freethreaded=1" -wait
C:\Python313\python3.13t.exe -m pip install -r requirements.txt
Expand Down
8 changes: 4 additions & 4 deletions docs/installing_cpython.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ and installing the free-threaded binaries is also possible:
On Windows, you can invoke the installer from the command-line prompt:

```powershell
$url = 'https://www.python.org/ftp/python/3.13.0/python-3.13.0rc1-amd64.exe'
$url = 'https://www.python.org/ftp/python/3.13.0/python-3.13.0rc2-amd64.exe'
Invoke-WebRequest -Uri $url -OutFile 'python.exe'
python.exe /quiet Include_freethreaded=1
```
Expand All @@ -53,7 +53,7 @@ and installing the free-threaded binaries is also possible:
downloaded:

```bash
curl -O https://www.python.org/ftp/python/3.13.0/python-3.13.0rc1-macos11.pkg
curl -O https://www.python.org/ftp/python/3.13.0/python-3.13.0rc2-macos11.pkg

# create installer choice changes to customize the install:
# enable the PythonTFramework-3.13 package
Expand All @@ -75,10 +75,10 @@ and installing the free-threaded binaries is also possible:
</plist>
EOF

sudo installer -pkg ./python-3.13.0rc1-macos11.pkg \
sudo installer -pkg ./python-3.13.0rc2-macos11.pkg \
-applyChoiceChangesXML ./choicechanges.plist \
-target /
rm -f python-3.13.0rc1-macos11.pkg
rm -f python-3.13.0rc2-macos11.pkg
```

See also [this Github issue](https://github.com/python/cpython/issues/120098)
Expand Down

0 comments on commit e8a5a3a

Please sign in to comment.