This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author ned.deily
Recipients hroncok, koobs, ned.deily, serhiy.storchaka, vstinner
Date 2019-06-04.04:47:05
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1559623625.64.0.0441436820219.issue36707@roundup.psfhosted.org>
In-reply-to
Content
> One question I have is, can/does SOABI flag removal affect any third party package/extension builds in any way, particularly affecting the names of files they produce?

Yep, the default file names of C extension modules differ on most/all? Unix-y platforms (certainly vanilla Linux and macOS) because the SOABI is included in the file name.

$ /tmp/py38/bin/python3.7 -m pip install --no-binary :all: psutil
$ ls /tmp/py37/lib/python3.7/site-packages/psutil/*.so
/tmp/py37/lib/python3.7/site-packages/psutil/_psutil_linux.cpython-37m-i386-linux-gnu.so
/tmp/py37/lib/python3.7/site-packages/psutil/_psutil_posix.cpython-37m-i386-linux-gnu.so

$ /tmp/py38/bin/python3.8 -m pip install --no-binary :all: psutil
$ ls /tmp/py38/lib/python3.8/site-packages/psutil/*.so
/tmp/py38/lib/python3.8/site-packages/psutil/_psutil_linux.cpython-38-i386-linux-gnu.so
/tmp/py38/lib/python3.8/site-packages/psutil/_psutil_posix.cpython-38-i386-linux-gnu.so
History
Date User Action Args
2019-06-04 04:47:05ned.deilysetrecipients: + ned.deily, vstinner, serhiy.storchaka, koobs, hroncok
2019-06-04 04:47:05ned.deilysetmessageid: <1559623625.64.0.0441436820219.issue36707@roundup.psfhosted.org>
2019-06-04 04:47:05ned.deilylinkissue36707 messages
2019-06-04 04:47:05ned.deilycreate