Skip to content

Commit ff3e603

Browse files
authored
Add 3.14 python (#79)
1 parent 24f1fc1 commit ff3e603

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-79](https://github.com/IntelPython/mkl_random/pull/79)
11+
712
## [1.3.0] (10/06/2025)
813

914
### Changed

conda-recipe/meta.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ requirements:
1919
- {{ stdlib('c') }}
2020
host:
2121
- python
22+
- python-gil # [py>=314]
2223
- setuptools >=77
2324
- mkl-devel
2425
- cython
@@ -27,6 +28,7 @@ requirements:
2728
- wheel >=0.41.3
2829
run:
2930
- python
31+
- python-gil # [py>=314]
3032
- {{ pin_compatible('mkl', min_pin="x.x", max_pin="x") }}
3133
- {{ pin_compatible('numpy-base', min_pin="x.x", max_pin="x") }}
3234

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",
@@ -59,7 +60,7 @@ keywords = ["MKL", "VSL", "true randomness", "pseudorandomness",
5960
license = "BSD-3-Clause"
6061
name = "mkl_random"
6162
readme = {file = "README.md", content-type = "text/markdown"}
62-
requires-python = ">=3.9,<3.14"
63+
requires-python = ">=3.9,<3.15"
6364

6465
[project.optional-dependencies]
6566
test = ["pytest"]

0 commit comments

Comments
 (0)