Skip to content

Commit 04f378f

Browse files
committed
Enable python 3.14 for testing of conda package since mkl=2025.3 is now available on conda-forge
1 parent 3a667cd commit 04f378f

File tree

2 files changed

+6
-8
lines changed

2 files changed

+6
-8
lines changed

.github/workflows/conda-package.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ env:
1616
ver-script-part1: "import json; f = open('version.json', 'r'); j = json.load(f); f.close(); "
1717
ver-script-part2: "d = j['dpnp'][0]; print('='.join((d[s] for s in ('version', 'build'))))"
1818
fetch-depth: 1
19-
python-ver-test-all-dtypes: '3.13'
19+
python-ver-test-all-dtypes: '3.14'
2020
test-env-name: 'test'
2121
rerun-tests-on-failure: 'true'
2222
rerun-tests-max-attempts: 2
@@ -29,8 +29,7 @@ jobs:
2929
strategy:
3030
fail-fast: false
3131
matrix:
32-
# Cannot build conda package with python 3.14 due to dependency conflict between stock numpy and Intel MKL
33-
python: ['3.10', '3.11', '3.12', '3.13']
32+
python: ['3.10', '3.11', '3.12', '3.13', '3.14']
3433
os: [ubuntu-22.04, windows-2022]
3534

3635
permissions:
@@ -129,7 +128,7 @@ jobs:
129128
strategy:
130129
fail-fast: false
131130
matrix:
132-
python: ['3.10', '3.11', '3.12', '3.13']
131+
python: ['3.10', '3.11', '3.12', '3.13', '3.14']
133132
os: [ubuntu-latest]
134133

135134
env:
@@ -262,7 +261,7 @@ jobs:
262261
strategy:
263262
fail-fast: false
264263
matrix:
265-
python: ['3.10', '3.11', '3.12', '3.13']
264+
python: ['3.10', '3.11', '3.12', '3.13', '3.14']
266265
os: [windows-2022]
267266

268267
env:
@@ -411,7 +410,7 @@ jobs:
411410
strategy:
412411
fail-fast: false
413412
matrix:
414-
python: ['3.10', '3.11', '3.12', '3.13']
413+
python: ['3.10', '3.11', '3.12', '3.13', '3.14']
415414
os: [ubuntu-22.04, windows-2022]
416415

417416
runs-on: ${{ matrix.os }}

.github/workflows/cron-run-tests.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,7 @@ jobs:
3838
strategy:
3939
fail-fast: false
4040
matrix:
41-
# Cannot build conda package with python 3.14 due to dependency conflict between stock numpy and Intel MKL
42-
python: ['3.10', '3.11', '3.12', '3.13']
41+
python: ['3.10', '3.11', '3.12', '3.13', '3.14']
4342
runner: [ubuntu-22.04, ubuntu-24.04, windows-2022]
4443

4544
steps:

0 commit comments

Comments
 (0)