Skip to content

Commit d767670

Browse files
committed
Enable python 3.14 for testing of conda package since mkl=2025.3 is now available on conda-forge
1 parent 0945f45 commit d767670

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:
@@ -257,7 +256,7 @@ jobs:
257256
strategy:
258257
fail-fast: false
259258
matrix:
260-
python: ['3.10', '3.11', '3.12', '3.13']
259+
python: ['3.10', '3.11', '3.12', '3.13', '3.14']
261260
os: [windows-2022]
262261

263262
env:
@@ -406,7 +405,7 @@ jobs:
406405
strategy:
407406
fail-fast: false
408407
matrix:
409-
python: ['3.10', '3.11', '3.12', '3.13']
408+
python: ['3.10', '3.11', '3.12', '3.13', '3.14']
410409
os: [ubuntu-22.04, windows-2022]
411410

412411
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)