* 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.
* fix: always reinstall pip
If the default pip version is also the latest one,
then the `pip` executable will be missing as the default pip
is installed only as `pip3`/`pip3.x`.
In order to always provide a `pip` executable, always reinstall pip.
* chore(ci): change default version to 3.12.3
Default to the latest stable version.
* fix: use `--upgrade` rather than `--ignore-installed` to upgrade pip
This removes left over files when upgrading pip.
* remove all installed python on macOS
The macOS pkg installer does not setup default certificates for OpenSSL.
A script is provided by the macOS pkg installer to setup those using the certifi PyPI package.
Let's run this script as part of the setup template in order to be able to do HTTPS downloads out of the box.
* Download osx packages and setup script
* install from pkg for 3.11 only
* More debug
* More debug
* fix version check
* New-Item build_output.txt
* installationTemplateLocation
* fix version
* fix beta version
* fix building from source
* fix building from source
* fix pkg name
* fix setup.sh
* fix test
* Fix config test with semver
* Fix PYTHON_MAJOR_MINOR
* migrate from .format to interpolation
* add PYTHON_FRAMEWORK_PATH variable
* improve pkg condition