Skip to content

Commit 5de523b

Browse files
authored
Merge pull request #135 from IntelPython/backport-gh-119
Backport gh-119
2 parents 1896c90 + cfd15f8 commit 5de523b

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [dev] (MM/DD/YYYY)
8+
9+
### Added
10+
* Enabled support of Python 3.14 [gh-119](https://github.com/IntelPython/mkl_umath/pull/119)
11+
712
## [0.3.0] - 2025-10-06
813

914
### Added

conda-recipe/meta.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,14 @@ requirements:
2626
- cython
2727
- scikit-build
2828
- python
29+
- python-gil # [py>=314]
2930
- mkl-devel
3031
- tbb-devel
3132
- numpy-base
3233
- wheel >=0.41.3
3334
run:
3435
- python
36+
- python-gil # [py>=314]
3537
- mkl-service
3638
- {{ pin_compatible('intel-cmplr-lib-rt') }}
3739
- {{ pin_compatible('numpy-base') }}

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ classifiers = [
5050
"Programming Language :: Python :: 3.11",
5151
"Programming Language :: Python :: 3.12",
5252
"Programming Language :: Python :: 3.13",
53+
"Programming Language :: Python :: 3.14",
5354
"Programming Language :: Python :: Implementation :: CPython",
5455
"Topic :: Software Development",
5556
"Topic :: Scientific/Engineering",
@@ -64,7 +65,7 @@ keywords = ["mkl_umath"]
6465
license = "BSD-3-Clause"
6566
name = "mkl_umath"
6667
readme = {file = "README.md", content-type = "text/markdown"}
67-
requires-python = ">=3.9,<3.14"
68+
requires-python = ">=3.9,<3.15"
6869

6970

7071
[project.optional-dependencies]

0 commit comments

Comments
 (0)