mirror of
https://github.com/actions/python-versions.git
synced 2025-04-04 14:29:38 +00:00
* 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.
90 lines
3.2 KiB
Python
90 lines
3.2 KiB
Python
import sysconfig
|
|
import sys
|
|
import platform
|
|
import os
|
|
|
|
# Define variables
|
|
os_type = platform.system()
|
|
version = sys.argv[1]
|
|
nativeVersion = sys.argv[2]
|
|
architecture = sys.argv[3]
|
|
hw_architecture = architecture.replace('-freethreaded', '')
|
|
|
|
versions=version.split(".")
|
|
version_major=int(versions[0])
|
|
version_minor=int(versions[1])
|
|
|
|
pkg_installer = os_type == 'Darwin' and ((version_major == 3 and version_minor >= 11) or (hw_architecture == "arm64"))
|
|
|
|
lib_dir_path = sysconfig.get_config_var('LIBDIR')
|
|
ld_library_name = sysconfig.get_config_var('LDLIBRARY')
|
|
|
|
is_shared = sysconfig.get_config_var('Py_ENABLE_SHARED')
|
|
have_libreadline = sysconfig.get_config_var("HAVE_LIBREADLINE")
|
|
is_free_threaded = sysconfig.get_config_var('Py_GIL_DISABLED')
|
|
|
|
### Define expected variables
|
|
if os_type == 'Linux': expected_ld_library_extension = 'so'
|
|
if os_type == 'Darwin': expected_ld_library_extension = 'dylib'
|
|
if is_free_threaded:
|
|
framework_name = 'PythonT.framework'
|
|
else:
|
|
framework_name = 'Python.framework'
|
|
|
|
if pkg_installer:
|
|
expected_lib_dir_path = f'/Library/Frameworks/{framework_name}/Versions/{version_major}.{version_minor}/lib'
|
|
else:
|
|
expected_lib_dir_path = f'{os.getenv("AGENT_TOOLSDIRECTORY")}/Python/{version}/{architecture}/lib'
|
|
|
|
# Check modules
|
|
### Validate libraries path
|
|
if lib_dir_path != expected_lib_dir_path:
|
|
print('Invalid libraries location: %s; Expected: %s' % (lib_dir_path, expected_lib_dir_path))
|
|
exit(1)
|
|
|
|
### Validate shared libraries
|
|
if is_shared:
|
|
print('%s was built with shared extensions' % ld_library_name)
|
|
|
|
### Validate libpython extension
|
|
ld_library_extension = ld_library_name.split('.')[-1]
|
|
if ld_library_extension != expected_ld_library_extension:
|
|
print('Invalid extension: %s; Expected %s' % (ld_library_extension, expected_ld_library_extension))
|
|
exit(1)
|
|
else:
|
|
print('%s was built without shared extensions' % ld_library_name)
|
|
if not pkg_installer:
|
|
exit(1)
|
|
|
|
### Validate macOS
|
|
if os_type == 'Darwin':
|
|
### Validate openssl links
|
|
if version_major == 3 and version_minor < 7:
|
|
expected_ldflags = '-L/usr/local/opt/openssl@3/lib'
|
|
ldflags = sysconfig.get_config_var('LDFLAGS')
|
|
|
|
if not expected_ldflags in ldflags:
|
|
print('Invalid ldflags: %s; Expected: %s' % (ldflags, expected_ldflags))
|
|
exit(1)
|
|
else:
|
|
expected_openssl_includes = '-I/usr/local/opt/openssl@3/include'
|
|
expected_openssl_ldflags ='-L/usr/local/opt/openssl@3/lib'
|
|
|
|
openssl_includes = sysconfig.get_config_var('OPENSSL_INCLUDES')
|
|
openssl_ldflags = sysconfig.get_config_var('OPENSSL_LDFLAGS')
|
|
|
|
if openssl_includes != expected_openssl_includes:
|
|
print('Invalid openssl_includes: %s; Expected: %s' % (openssl_includes, expected_openssl_includes))
|
|
if not pkg_installer:
|
|
exit(1)
|
|
if openssl_ldflags != expected_openssl_ldflags:
|
|
print('Invalid openssl_ldflags: %s; Expected: %s' % (openssl_ldflags, expected_openssl_ldflags))
|
|
if not pkg_installer:
|
|
exit(1)
|
|
|
|
### Validate libreadline
|
|
if sys.version_info < (3, 12):
|
|
if not have_libreadline:
|
|
print('Missing libreadline')
|
|
exit(1)
|