Skip to content

Commit 4da9c0c

Browse files
committed
Add a comment to the GH workflows about identified python 3.14 limitation
1 parent 326d6a5 commit 4da9c0c

File tree

5 files changed

+5
-3
lines changed

5 files changed

+5
-3
lines changed

.github/workflows/conda-package.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +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
3233
python: ['3.10', '3.11', '3.12', '3.13']
3334
os: [ubuntu-22.04, windows-2022]
3435

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +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
4142
python: ['3.10', '3.11', '3.12', '3.13']
4243
runner: [ubuntu-22.04, ubuntu-24.04, windows-2022]
4344

environments/build_conda_pkg.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ name: Build DPNP conda package
22
channels:
33
- conda-forge
44
dependencies:
5-
- python=3.13
5+
- python=3.13 # no python 3.14 support by conda-build
66
- conda-build=25.9.0

environments/building_docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Building docs specific packages
22
channels:
33
- conda-forge
44
dependencies:
5-
- python=3.13
5+
- python=3.13 # no dpctl package on PyPI with enabled python 3.14 support
66
- cupy
77
- sphinx
88
- sphinx_rtd_theme

environments/create_conda_channel.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ name: Create conda channel with DPNP package
22
channels:
33
- conda-forge
44
dependencies:
5-
- python=3.13
5+
- python=3.13 # no python 3.14 support by conda-index
66
- conda-index=0.7.0

0 commit comments

Comments
 (0)