You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In _generic_abi() (which is used on non-CPython), the abi tag is equivalent to the SOABI sysconfig value. But this is "cpython-38-x86_64-linux-gnu" on CPython. The equivalent code path for CPython goes to _cpython_abis() which does not use SOABI at all. Currently, PyPy must keep its SOABI to "pypy38-pp73" in order to allow pip to function. The EXTSUFFIX is "".pypy38-pp73-x86_64-linux-gnu.so". This was fixed for wheel in pypa/wheel#372 and should be fixed here as well.