We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 08fcc9e commit 2e99e99Copy full SHA for 2e99e99
tests/sources/python-config-test.py
@@ -27,9 +27,9 @@
27
if os_type == 'Darwin': expected_ld_library_extension = 'dylib'
28
29
if pkg_installer:
30
- expected_lib_dir_path = f'/Library/Frameworks/Python.framework/Versions/{version_major}.{version_minor}/lib'
+ expected_lib_dir_path = '/Library/Frameworks/Python.framework/Versions/{0}.{1}/lib'.format(version_major, version_minor)
31
else:
32
- expected_lib_dir_path = f'{os.getenv("AGENT_TOOLSDIRECTORY")}/Python/{version}/x64/lib'
+ expected_lib_dir_path = '{os.getenv("AGENT_TOOLSDIRECTORY")}/Python/{0}/x64/lib'.format(version)
33
34
# Check modules
35
### Validate libraries path
@@ -81,4 +81,4 @@
81
if sys.version_info < (3, 12):
82
if not have_libreadline:
83
print('Missing libreadline')
84
- exit(1)
+ exit(1)
0 commit comments