Skip to content

Commit 728465d

Browse files
authored
Merge pull request #252 from IntelPython/backport-gh-234
Backport gh-234
2 parents 3121b76 + e30d914 commit 728465d

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
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-234](https://github.com/IntelPython/mkl_fft/pull/234)
11+
712
## [2.1.1] - 2025-10-09
813

914
### Fixed

conda-recipe/meta.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ requirements:
1818
- {{ stdlib('c') }}
1919
host:
2020
- python
21+
- python-gil # [py>=314]
2122
- pip
2223
- setuptools >=77
2324
- mkl-devel
@@ -26,6 +27,7 @@ requirements:
2627
- wheel >=0.41.3
2728
run:
2829
- python
30+
- python-gil # [py>=314]
2931
- mkl-service
3032
- {{ pin_compatible('numpy-base') }}
3133

@@ -34,7 +36,8 @@ test:
3436
- pytest -v --pyargs mkl_fft
3537
requires:
3638
- pytest
37-
- scipy >=1.10
39+
# This is a temporary python restriction
40+
- scipy >=1.10 # [py<314]
3841
imports:
3942
- mkl_fft
4043
- mkl_fft.interfaces

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ classifiers = [
4343
"Programming Language :: Python :: 3.11",
4444
"Programming Language :: Python :: 3.12",
4545
"Programming Language :: Python :: 3.13",
46+
"Programming Language :: Python :: 3.14",
4647
"Programming Language :: Python :: Implementation :: CPython",
4748
"Topic :: Software Development",
4849
"Topic :: Scientific/Engineering",
@@ -57,7 +58,7 @@ keywords = ["DFTI", "FFT", "Fourier", "MKL"]
5758
license = "BSD-3-Clause"
5859
name = "mkl_fft"
5960
readme = {file = "README.md", content-type = "text/markdown"}
60-
requires-python = ">=3.9,<3.14"
61+
requires-python = ">=3.9,<3.15"
6162

6263
[project.optional-dependencies]
6364
scipy_interface = ["scipy>=1.10"]

0 commit comments

Comments
 (0)