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 24faf0a commit 88fa2ccCopy full SHA for 88fa2cc
unittests/allplatformstests.py
@@ -3140,6 +3140,9 @@ def test_python_build_config_extensions(self):
3140
if libpc is None:
3141
continue
3142
python_build_config['c_api']['pkgconfig_path'] = libpc
3143
+ # Old Ubuntu versions have incorrect LIBDIR, skip testing non-pkgconfig variant there.
3144
+ elif not os.path.exists(python_build_config['libpython']['dynamic']):
3145
+ continue
3146
3147
with tempfile.NamedTemporaryFile(mode='w', delete=False, encoding='utf-8') as python_build_config_file:
3148
json.dump(python_build_config, fp=python_build_config_file)
0 commit comments