Skip to content

Commit 366a860

Browse files
authored
add support for python 13 (#72)
1 parent 2da024a commit 366a860

File tree

4 files changed

+15
-6
lines changed

4 files changed

+15
-6
lines changed

.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.9 fails - gh-issue#56
17+
python: ["3.10", "3.11", "3.12", "3.13"] # 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"]
24+
python: ['3.9', '3.10', '3.11', '3.12', '3.13']
2525

2626
steps:
2727
- name: Cancel Previous Runs
@@ -78,7 +78,7 @@ jobs:
7878

7979
strategy:
8080
matrix:
81-
python: ['3.9', '3.10', '3.11', '3.12']
81+
python: ['3.9', '3.10', '3.11', '3.12', '3.13']
8282
env:
8383
conda-bld: C:\Miniconda\conda-bld\win-64\
8484

@@ -127,7 +127,7 @@ jobs:
127127

128128
strategy:
129129
matrix:
130-
python: ['3.9', '3.10', '3.11', '3.12']
130+
python: ['3.9', '3.10', '3.11', '3.12', '3.13']
131131
experimental: [false]
132132
runner: [ubuntu-latest]
133133
continue-on-error: ${{ matrix.experimental }}
@@ -201,7 +201,7 @@ jobs:
201201

202202
strategy:
203203
matrix:
204-
python: ['3.9', '3.10', '3.11', '3.12']
204+
python: ['3.9', '3.10', '3.11', '3.12', '3.13']
205205
experimental: [false]
206206
runner: [windows-2019]
207207
continue-on-error: ${{ matrix.experimental }}

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,18 @@
11
`mkl-service` changelog
22
=======================
33

4+
[dev] (MM/DD/YY)
5+
================
6+
7+
Migrated from `setup.py` to `pyproject.toml`
8+
9+
Added support for python 3.13
10+
411
2.3.0
512
=====
613

714
Fixed CI to actually execute tests. Populated CBWR constants to match MKL headers.
15+
816
Added tests checking that `cbwr_set` and `cbwr_get` round-trip.
917

1018
2.2.0

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.10",
4444
"Programming Language :: Python :: 3.11",
4545
"Programming Language :: Python :: 3.12",
46+
"Programming Language :: Python :: 3.13",
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.13"
61+
requires-python = ">=3.9,<3.14"
6162

6263
[project.optional-dependencies]
6364
test = ["pytest"]

0 commit comments

Comments
 (0)