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 2a3a93d commit 8f62f2aCopy full SHA for 8f62f2a
unittests/allplatformstests.py
@@ -3098,7 +3098,10 @@ def test_python_build_config_extensions(self):
3098
'libpython': {
3099
'dynamic': sysconfig.get_config_var('LDLIBRARY'),
3100
'static': sysconfig.get_config_var('LIBRARY'),
3101
- 'link_extensions': True,
+ # set it to False on PyPy, since dylib is optional, but also
3102
+ # the value is currently wrong:
3103
+ # https://github.com/pypy/pypy/issues/5249
3104
+ 'link_extensions': '__pypy__' not in sys.builtin_module_names,
3105
},
3106
'c_api': {
3107
'headers': sysconfig.get_path('include'),
0 commit comments