Skip to content

Commit e3e7a36

Browse files
authored
Update python-config-test.py
1 parent 88b9e8c commit e3e7a36

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

tests/sources/python-config-test.py

+8-2
Original file line numberDiff line numberDiff line change
@@ -8,25 +8,31 @@
88
version = sys.argv[1]
99
nativeVersion = sys.argv[2]
1010
architecture = sys.argv[3]
11+
hw_architecture = architecture.replace('-freethreaded', '')
1112

1213
versions=version.split(".")
1314
version_major=int(versions[0])
1415
version_minor=int(versions[1])
1516

16-
pkg_installer = os_type == 'Darwin' and ((version_major == 3 and version_minor >= 11) or (architecture == "arm64"))
17+
pkg_installer = os_type == 'Darwin' and ((version_major == 3 and version_minor >= 11) or (hw_architecture == "arm64"))
1718

1819
lib_dir_path = sysconfig.get_config_var('LIBDIR')
1920
ld_library_name = sysconfig.get_config_var('LDLIBRARY')
2021

2122
is_shared = sysconfig.get_config_var('Py_ENABLE_SHARED')
2223
have_libreadline = sysconfig.get_config_var("HAVE_LIBREADLINE")
24+
is_free_threaded = sysconfig.get_config_var('Py_GIL_DISABLED')
2325

2426
### Define expected variables
2527
if os_type == 'Linux': expected_ld_library_extension = 'so'
2628
if os_type == 'Darwin': expected_ld_library_extension = 'dylib'
29+
if is_free_threaded:
30+
framework_name = 'PythonT.framework'
31+
else:
32+
framework_name = 'Python.framework'
2733

2834
if pkg_installer:
29-
expected_lib_dir_path = f'/Library/Frameworks/Python.framework/Versions/{version_major}.{version_minor}/lib'
35+
expected_lib_dir_path = f'/Library/Frameworks/{framework_name}/Versions/{version_major}.{version_minor}/lib'
3036
else:
3137
expected_lib_dir_path = f'{os.getenv("AGENT_TOOLSDIRECTORY")}/Python/{version}/{architecture}/lib'
3238

0 commit comments

Comments
 (0)