From cb51a5bc342e30e7f34c42bd698f2f0df7a47670 Mon Sep 17 00:00:00 2001 From: "Komarova, Evseniia" Date: Tue, 14 Oct 2025 15:28:58 +0200 Subject: [PATCH] Add 3.14 python --- CHANGELOG.md | 5 +++++ conda-recipe/meta.yaml | 2 ++ pyproject.toml | 3 ++- 3 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 656cc09..3488834 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). +## [dev] (MM/DD/YYYY) + +### Added +* Enabled support of Python 3.14 [gh-119](https://github.com/IntelPython/mkl_umath/pull/119) + ## [0.3.0] - 2025-10-06 ### Added diff --git a/conda-recipe/meta.yaml b/conda-recipe/meta.yaml index 9f8a1e2..38ea112 100644 --- a/conda-recipe/meta.yaml +++ b/conda-recipe/meta.yaml @@ -26,12 +26,14 @@ requirements: - cython - scikit-build - python + - python-gil # [py>=314] - mkl-devel - tbb-devel - numpy-base - wheel >=0.41.3 run: - python + - python-gil # [py>=314] - mkl-service - {{ pin_compatible('intel-cmplr-lib-rt') }} - {{ pin_compatible('numpy-base') }} diff --git a/pyproject.toml b/pyproject.toml index bf9cd2e..55691e0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -50,6 +50,7 @@ classifiers = [ "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", + "Programming Language :: Python :: 3.14", "Programming Language :: Python :: Implementation :: CPython", "Topic :: Software Development", "Topic :: Scientific/Engineering", @@ -64,7 +65,7 @@ keywords = ["mkl_umath"] license = "BSD-3-Clause" name = "mkl_umath" readme = {file = "README.md", content-type = "text/markdown"} -requires-python = ">=3.9,<3.14" +requires-python = ">=3.9,<3.15" [project.optional-dependencies]