Add libpython run dependency for Python 3.14 on Windows - #262
Closed
antonwolfy wants to merge 2 commits into
Closed
Conversation
conda-forge python-feedstock moved python*.dll out of the python package into the separate libpython package for Python 3.14+ on Windows. The extension modules link python314.dll, so libpython must be declared in run, scoped to [win and py>=314].
antonwolfy
requested review from
jharlow-intel,
ndgrigorian,
vlad-perevezentsev and
xaleryb
as code owners
August 30, 2026 19:17
Collaborator
Author
|
Not needed as it was resolved in the python feedstock |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds
libpython # [win and py>=314]to therunrequirements inconda-recipe-cf/meta.yaml.Background
conda-forge python-feedstock PR #894 split the shared Python library into a separate
libpythonoutput, and PR #907 relocatedpython*.dllfrom thepythonpackage intolibpythonon Windows for Python 3.14+.The
_ufuncs/_patch_numpyextension modules linkpython314.dll(unavoidable on Windows), and neither thepythonnorlibpythonoutput carries a run-export that credits it, solibpythonmust be declared explicitly. Without it the conda build fails the overlinking check onwin_64_python3.14.Scoped to
[win and py>=314]: thelibpythonshared-library output exists only for Python 3.14+; on 3.13 and earlierpython313.dllis still shipped inside thepythonpackage, so those builds are unaffected.This mirrors the corresponding conda-forge feedstock change (conda-forge/mkl_umath-feedstock#4).