File tree 1 file changed +8
-2
lines changed
1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change 8
8
version = sys .argv [1 ]
9
9
nativeVersion = sys .argv [2 ]
10
10
architecture = sys .argv [3 ]
11
+ hw_architecture = architecture .replace ('-freethreaded' , '' )
11
12
12
13
versions = version .split ("." )
13
14
version_major = int (versions [0 ])
14
15
version_minor = int (versions [1 ])
15
16
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" ))
17
18
18
19
lib_dir_path = sysconfig .get_config_var ('LIBDIR' )
19
20
ld_library_name = sysconfig .get_config_var ('LDLIBRARY' )
20
21
21
22
is_shared = sysconfig .get_config_var ('Py_ENABLE_SHARED' )
22
23
have_libreadline = sysconfig .get_config_var ("HAVE_LIBREADLINE" )
24
+ is_free_threaded = sysconfig .get_config_var ('Py_GIL_DISABLED' )
23
25
24
26
### Define expected variables
25
27
if os_type == 'Linux' : expected_ld_library_extension = 'so'
26
28
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'
27
33
28
34
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'
30
36
else :
31
37
expected_lib_dir_path = f'{ os .getenv ("AGENT_TOOLSDIRECTORY" )} /Python/{ version } /{ architecture } /lib'
32
38
You can’t perform that action at this time.
0 commit comments