Skip to content

Commit f835198

Browse files
committed
Enable Python 3.14
1 parent c89ff0b commit f835198

4 files changed

Lines changed: 12 additions & 6 deletions

File tree

.github/workflows/build-with-clang.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414

1515
strategy:
1616
matrix:
17-
python: ["3.10", "3.11", "3.12", "3.13"] # 3.9 fails - gh-issue#56
17+
python: ["3.10", "3.11", "3.12", "3.13", "3.14"] # 3.9 fails - gh-issue#56
1818

1919
env:
2020
ONEAPI_ROOT: /opt/intel/oneapi

.github/workflows/conda-package.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121

2222
strategy:
2323
matrix:
24-
python: ['3.9', '3.10', '3.11', '3.12', '3.13']
24+
python: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
2525

2626
steps:
2727
- name: Cancel Previous Runs
@@ -90,7 +90,7 @@ jobs:
9090

9191
strategy:
9292
matrix:
93-
python: ['3.9', '3.10', '3.11', '3.12', '3.13']
93+
python: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
9494

9595
steps:
9696
- name: Cancel Previous Runs
@@ -152,7 +152,7 @@ jobs:
152152

153153
strategy:
154154
matrix:
155-
python: ['3.9', '3.10', '3.11', '3.12', '3.13']
155+
python: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
156156
experimental: [false]
157157
runner: [ubuntu-latest]
158158
continue-on-error: ${{ matrix.experimental }}
@@ -226,7 +226,7 @@ jobs:
226226

227227
strategy:
228228
matrix:
229-
python: ['3.9', '3.10', '3.11', '3.12', '3.13']
229+
python: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
230230
experimental: [false]
231231
runner: [windows-latest]
232232
continue-on-error: ${{ matrix.experimental }}

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-100](https://github.com/IntelPython/mkl-service/pull/100)
11+
712
## [2.5.2] (07/01/2025)
813

914
### Fixed

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 :: Utilities",
@@ -57,7 +58,7 @@ keywords = ["MKL"]
5758
license = "BSD-3-Clause"
5859
name = "mkl-service"
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
test = ["pytest"]

0 commit comments

Comments
 (0)