Skip to content

Commit f08a53e

Browse files
committed
Exclude python 3.14 for building conda-package since no python 3.14 support for numpy-base has been released
1 parent ec7e795 commit f08a53e

File tree

2 files changed

+3
-7
lines changed

2 files changed

+3
-7
lines changed

.github/workflows/build-with-clang.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212

1313
strategy:
1414
matrix:
15-
python: ["3.10", "3.11", "3.12", "3.13", , "3.14"]
15+
python: ["3.10", "3.11", "3.12", "3.13", "3.14"]
1616
numpy_version: ["numpy'>=2'"]
1717
env:
1818
ONEAPI_ROOT: /opt/intel/oneapi

.github/workflows/conda-package.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: ubuntu-latest
2020
strategy:
2121
matrix:
22-
python: ["3.10", "3.11", "3.12", "3.13", "3.14"]
22+
python: ["3.10", "3.11", "3.12", "3.13"] # no python 3.14 support by numpy-base is relased
2323
steps:
2424
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
2525
with:
@@ -66,7 +66,7 @@ jobs:
6666

6767
strategy:
6868
matrix:
69-
python: ["3.10", "3.11", "3.12", "3.13", "3.14"]
69+
python: ["3.10", "3.11", "3.12", "3.13"] # no python 3.14 support by numpy-base is relased
7070
env:
7171
conda-bld: C:\Miniconda\conda-bld\win-64\
7272
steps:
@@ -116,8 +116,6 @@ jobs:
116116
numpy: "2.3"
117117
- python: "3.13"
118118
numpy: "2.3"
119-
- python: "3.14"
120-
numpy: "2.3"
121119
env:
122120
CHANNELS: -c https://software.repos.intel.com/python/conda -c conda-forge --override-channels
123121

@@ -190,8 +188,6 @@ jobs:
190188
numpy: "2.3"
191189
- python: "3.13"
192190
numpy: "2.3"
193-
- python: "3.14"
194-
numpy: "2.3"
195191
env:
196192
CHANNELS: -c https://software.repos.intel.com/python/conda -c conda-forge --override-channels
197193

0 commit comments

Comments
 (0)