Add Python 3.14 conda build variant#1275
Open
ruck314 wants to merge 1 commit into
Open
Conversation
Add the cp314 variant to the conda recipe now that conda-forge boost 1.91.0 ships libboost-python cp314 builds. Adds 3.14 to the python and python_abi lists in conda_build_config.yaml, lifts the meta.yaml runtime cap to <3.15, and bumps the conda.yml dev/build environment to match. Verified locally via conda render of the 3.14 variant: the dependency graph solves, pulling libboost-python 1.91.0 py314h3a4f467_0, python 3.14 cp314, and numpy 2.5 py314.
bengineerd
approved these changes
Jun 30, 2026
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.
Description
Add a Python 3.14 (cp314) build variant to the conda package. conda-forge boost 1.91.0 now ships
libboost-pythoncp314 builds (e.g.libboost-python-1.91.0-py314h3a4f467_0on linux-64), which was the original blocker for 3.14 support.conda-recipe/conda_build_config.yaml: add3.14to thepythonlist and3.14 *_cp314topython_abi(zipped, so 5 variants), plus the matching render-check comment.conda-recipe/meta.yaml: lift the runtime cap frompython >=3.10,<3.14to<3.15.conda.yml: bump the dev/build environment cap to<3.15to stay consistent with the recipe.Details
Validated locally with
conda renderof the 3.14 variant — the dependency graph solves, pullingpython 3.14 *_cp314,python_abi 3.14.* *_cp314,libboost-python 1.91.0 py314h3a4f467_0, andnumpy 2.5 py314. cp314/noarch availability also confirmed for the other compiled/runtime deps (p4p 4.2.2, pyqt 5.15.11, pyzmq 27.1.0, pydm noarch). Theconda_build_libCI job will build all 5 variants end-to-end.