From 656ad969fbc276972e651e98e11568f0532cccf6 Mon Sep 17 00:00:00 2001 From: Anton Volkov Date: Sun, 30 Aug 2026 21:16:50 +0200 Subject: [PATCH] Add libpython run dependency for Python 3.14 on Windows 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]. --- conda-recipe-cf/meta.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/conda-recipe-cf/meta.yaml b/conda-recipe-cf/meta.yaml index 54bc235d..e8bc76a4 100644 --- a/conda-recipe-cf/meta.yaml +++ b/conda-recipe-cf/meta.yaml @@ -36,6 +36,7 @@ requirements: run: - python - python-gil # [py>=314] + - libpython # [win and py>=314] - {{ pin_compatible('mkl') }} - {{ pin_compatible('numpy') }} - {{ pin_compatible('intel-cmplr-lib-rt') }}