From 4c8c76ec3354882d80f6be58032569af1a74dd0a Mon Sep 17 00:00:00 2001 From: Evseniia <70146207+ekomarova@users.noreply.github.com> Date: Mon, 13 Oct 2025 17:35:36 +0200 Subject: [PATCH 1/2] Explicitly pin to the GIL build metapackage (#111) * Explicitly pin to the GIL build metapackage * `python-gil` is a metapackage which has to be added to the env, but it doesn't replace `python` package --------- Co-authored-by: Anton Volkov --- conda-recipe/meta.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/conda-recipe/meta.yaml b/conda-recipe/meta.yaml index 3509c52..ea420be 100644 --- a/conda-recipe/meta.yaml +++ b/conda-recipe/meta.yaml @@ -19,6 +19,7 @@ requirements: - {{ stdlib('c') }} host: - python + - python-gil # [py>=314] - pip >=25.0 - setuptools >=77 - mkl-devel @@ -27,6 +28,7 @@ requirements: - python-build >=1.2.2 run: - python + - python-gil # [py>=314] - {{ pin_compatible('mkl') }} test: From 1100399bdc818825c05902a512e2350e58d35b4f Mon Sep 17 00:00:00 2001 From: Anton Volkov Date: Fri, 21 Nov 2025 06:38:25 -0600 Subject: [PATCH 2/2] Add to the changelog --- CHANGELOG.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 155c6c1..003f3de 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [2.6.1] (11/XX/2025) + +### Fixed +* Fixed the run-time dependencies of `mkl-service` package to explicitly depend on a non–free-threaded (GIL-enabled) Python [gh-111](github.com/IntelPython/mkl-service/pull/111) + ## [2.6.0] (10/06/2025) ### Added