Skip to content

Commit 326d6a5

Browse files
committed
Cannot build conda package with python 3.14 through GitHub w/f due to dependency conflict with numpy and MKL
1 parent ec4bf4b commit 326d6a5

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/conda-package.yml

Lines changed: 5 additions & 5 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.14'
19+
python-ver-test-all-dtypes: '3.13'
2020
test-env-name: 'test'
2121
rerun-tests-on-failure: 'true'
2222
rerun-tests-max-attempts: 2
@@ -29,7 +29,7 @@ jobs:
2929
strategy:
3030
fail-fast: false
3131
matrix:
32-
python: ['3.10', '3.11', '3.12', '3.13', '3.14']
32+
python: ['3.10', '3.11', '3.12', '3.13']
3333
os: [ubuntu-22.04, windows-2022]
3434

3535
permissions:
@@ -128,7 +128,7 @@ jobs:
128128
strategy:
129129
fail-fast: false
130130
matrix:
131-
python: ['3.10', '3.11', '3.12', '3.13', '3.14']
131+
python: ['3.10', '3.11', '3.12', '3.13']
132132
os: [ubuntu-latest]
133133

134134
env:
@@ -261,7 +261,7 @@ jobs:
261261
strategy:
262262
fail-fast: false
263263
matrix:
264-
python: ['3.10', '3.11', '3.12', '3.13', '3.14']
264+
python: ['3.10', '3.11', '3.12', '3.13']
265265
os: [windows-2022]
266266

267267
env:
@@ -410,7 +410,7 @@ jobs:
410410
strategy:
411411
fail-fast: false
412412
matrix:
413-
python: ['3.10', '3.11', '3.12', '3.13', '3.14']
413+
python: ['3.10', '3.11', '3.12', '3.13']
414414
os: [ubuntu-22.04, windows-2022]
415415

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

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
strategy:
3939
fail-fast: false
4040
matrix:
41-
python: ['3.10', '3.11', '3.12', '3.13', '3.14']
41+
python: ['3.10', '3.11', '3.12', '3.13']
4242
runner: [ubuntu-22.04, ubuntu-24.04, windows-2022]
4343

4444
steps:

0 commit comments

Comments
 (0)