mirror of
https://github.com/actions/python-versions.git
synced 2025-04-05 06:49:39 +00:00
Support building free-threaded CPython (#319)
* Support building free-threaded CPython Add support for Python's free threading build mode where the global interpreter lock is disabled. The packages are marked using a suffix on the architecture, like 'x64-freethreaded' or 'arm64-freethreaded'. * Match '-freethreaded' in arch * Use type 'string' instead of 'str' * On Linux, only delete Python installations with the same architecture. This matches the macOS behavior and allows users to install both the free-threading and default builds at the same time.
This commit is contained in:
@ -54,13 +54,13 @@ class WinPythonBuilder : PythonBuilder {
|
||||
#>
|
||||
|
||||
$ArchitectureExtension = ""
|
||||
if ($this.Architecture -eq "x64") {
|
||||
if ($this.GetHardwareArchitecture() -eq "x64") {
|
||||
if ($this.Version -ge "3.5") {
|
||||
$ArchitectureExtension = "-amd64"
|
||||
} else {
|
||||
$ArchitectureExtension = ".amd64"
|
||||
}
|
||||
}elseif ($this.Architecture -eq "arm64") {
|
||||
} elseif ($this.GetHardwareArchitecture() -eq "arm64") {
|
||||
$ArchitectureExtension = "-arm64"
|
||||
}
|
||||
|
||||
@ -113,6 +113,7 @@ class WinPythonBuilder : PythonBuilder {
|
||||
|
||||
$variablesToReplace = @{
|
||||
"{{__ARCHITECTURE__}}" = $this.Architecture;
|
||||
"{{__HARDWARE_ARCHITECTURE__}}" = $this.GetHardwareArchitecture();
|
||||
"{{__VERSION__}}" = $this.Version;
|
||||
"{{__PYTHON_EXEC_NAME__}}" = $pythonExecName
|
||||
}
|
||||
|
Reference in New Issue
Block a user