GH-107956: install build-details.json (PEP 739)#130069
Conversation
Signed-off-by: Filipe Laíns <lains@riseup.net>
|
🤖 New build scheduled with the buildbot fleet by @FFY00 for commit beff7fb 🤖 Results will be shown at: https://buildbot.python.org/all/#/grid?branch=refs%2Fpull%2F30617%2Fmerge If you want to schedule another build, you need to add the 🔨 test-with-buildbots label again. |
Signed-off-by: Filipe Laíns <lains@riseup.net>
Signed-off-by: Filipe Laíns <lains@riseup.net>
|
🤖 New build scheduled with the buildbot fleet by @FFY00 for commit 36d08e6 🤖 Results will be shown at: https://buildbot.python.org/all/#/grid?branch=refs%2Fpull%2F30617%2Fmerge If you want to schedule another build, you need to add the 🔨 test-with-buildbots label again. |
Signed-off-by: Filipe Laíns <lains@riseup.net>
Signed-off-by: Filipe Laíns <lains@riseup.net>
Signed-off-by: Filipe Laíns <lains@riseup.net>
Signed-off-by: Filipe Laíns <lains@riseup.net>
|
🤖 New build scheduled with the buildbot fleet by @FFY00 for commit 8b6eb32 🤖 Results will be shown at: https://buildbot.python.org/all/#/grid?branch=refs%2Fpull%2F30617%2Fmerge If you want to schedule another build, you need to add the 🔨 test-with-buildbots label again. |
Signed-off-by: Filipe Laíns <lains@riseup.net>
|
🤖 New build scheduled with the buildbot fleet by @FFY00 for commit abd4de1 🤖 Results will be shown at: https://buildbot.python.org/all/#/grid?branch=refs%2Fpull%2F30617%2Fmerge If you want to schedule another build, you need to add the 🔨 test-with-buildbots label again. |
Signed-off-by: Filipe Laíns <lains@riseup.net>
|
🤖 New build scheduled with the buildbot fleet by @FFY00 for commit 4dd2f58 🤖 Results will be shown at: https://buildbot.python.org/all/#/grid?branch=refs%2Fpull%2F30617%2Fmerge If you want to schedule another build, you need to add the 🔨 test-with-buildbots label again. |
Signed-off-by: Filipe Laíns <lains@riseup.net>
|
🤖 New build scheduled with the buildbot fleet by @FFY00 for commit 6122c55 🤖 Results will be shown at: https://buildbot.python.org/all/#/grid?branch=refs%2Fpull%2F30617%2Fmerge If you want to schedule another build, you need to add the 🔨 test-with-buildbots label again. |
|
|
The buildbot failure seems unrelated. |
| exit 1 ; \ | ||
| fi | ||
|
|
||
| build-details.json: pybuilddir.txt |
There was a problem hiding this comment.
The target path here is wrong so this gets re-run for every invocation of make.
| # | ||
| # We only want to set abi.extension_suffix and stable_abi_suffix if | ||
| # extension modules are supported. | ||
| if has_dynamic_library: |
There was a problem hiding this comment.
This logic is wrong. Whether libpython.so is shipped and must be linked against is very much not the same as whether extension modules are supported. The default builds on Linux and macOS do not require linking against libpython. On a regular 3.14 install on 64-bit Linux:
>>> import sysconfig
>>> sysconfig.get_config_var('LDLIBRARY')
'libpython3.14t.a'
>>> sysconfig.get_config_var('LIBPYTHON')
''I'll open a new issue.
Uh oh!
There was an error while loading. Please reload this page.