Skip to content

Commit 066ca6c

Browse files
committed
specific numpy for each python
1 parent 0fc3b6e commit 066ca6c

File tree

1 file changed

+34
-8
lines changed

1 file changed

+34
-8
lines changed

.github/workflows/conda-package.yml

Lines changed: 34 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -108,10 +108,23 @@ jobs:
108108

109109
strategy:
110110
matrix:
111-
python: ["3.9", "3.10", "3.11", "3.12"]
112-
numpy: ['1.26']
113-
experimental: [false]
114-
runner: [ubuntu-latest]
111+
include:
112+
- python: '3.9'
113+
numpy: '1.26'
114+
experimental: [false]
115+
runner: [ubuntu-latest]
116+
- python: '3.10'
117+
numpy: '2.2'
118+
experimental: [false]
119+
runner: [ubuntu-latest]
120+
- python: '3.11'
121+
numpy: '2.2'
122+
experimental: [false]
123+
runner: [ubuntu-latest]
124+
- python: '3.12'
125+
numpy: '2.2'
126+
experimental: [false]
127+
runner: [ubuntu-latest]
115128
continue-on-error: ${{ matrix.experimental }}
116129
env:
117130
CHANNELS: -c https://software.repos.intel.com/python/conda -c conda-forge --override-channels
@@ -176,10 +189,23 @@ jobs:
176189

177190
strategy:
178191
matrix:
179-
python: ["3.9", "3.10", "3.11", "3.12"]
180-
numpy: ['1.26']
181-
experimental: [false]
182-
runner: [windows-latest]
192+
include:
193+
- python: '3.9'
194+
numpy: '1.26'
195+
experimental: [false]
196+
runner: [ubuntu-latest]
197+
- python: '3.10'
198+
numpy: '2.2'
199+
experimental: [false]
200+
runner: [ubuntu-latest]
201+
- python: '3.11'
202+
numpy: '2.2'
203+
experimental: [false]
204+
runner: [ubuntu-latest]
205+
- python: '3.12'
206+
numpy: '2.2'
207+
experimental: [false]
208+
runner: [ubuntu-latest]
183209
continue-on-error: ${{ matrix.experimental }}
184210
env:
185211
CHANNELS: -c https://software.repos.intel.com/python/conda -c conda-forge --override-channels

0 commit comments

Comments
 (0)