20
20
runs-on : ubuntu-latest
21
21
strategy :
22
22
matrix :
23
- python : ['3.9', '3.10', '3.11', '3.12']
23
+ python : ['3.9', '3.10', '3.11', '3.12', '3.13' ]
24
24
steps :
25
25
- name : Cancel Previous Runs
26
26
uses : styfle/cancel-workflow-action@85880fa0301c86cca9da44039ee3bb12d3bedbfa # 0.12.1
@@ -53,10 +53,10 @@ jobs:
53
53
- name : Install conda-build
54
54
run : conda install conda-build python=3.12
55
55
56
- - name : Build conda package with NumPy 2.0
56
+ - name : Build conda package
57
57
run : |
58
58
CHANNELS="-c conda-forge --override-channels"
59
- VERSIONS="--python ${{ matrix.python }} --numpy 2.0 "
59
+ VERSIONS="--python ${{ matrix.python }}"
60
60
TEST="--no-test"
61
61
62
62
conda build \
77
77
78
78
strategy :
79
79
matrix :
80
- python_ver : ['3.9', '3.10', '3.11', '3.12']
81
- numpy : ['numpy"<2"', 'numpy" >=2"']
80
+ python_ver : ['3.9', '3.10', '3.11', '3.12', '3.13' ]
81
+ numpy : ['numpy">=2"']
82
82
experimental : [false]
83
83
runner : [ubuntu-latest]
84
84
continue-on-error : ${{ matrix.experimental }}
@@ -147,7 +147,7 @@ jobs:
147
147
148
148
strategy :
149
149
matrix :
150
- python : ['3.9', '3.10', '3.11', '3.12']
150
+ python : ['3.9', '3.10', '3.11', '3.12', '3.13' ]
151
151
steps :
152
152
- name : Cancel Previous Runs
153
153
uses : styfle/cancel-workflow-action@85880fa0301c86cca9da44039ee3bb12d3bedbfa # 0.12.1
@@ -184,10 +184,10 @@ jobs:
184
184
- name : Setup MSVC
185
185
uses : ilammy/msvc-dev-cmd@0b201ec74fa43914dc39ae48a89fd1d8cb592756 # v1.13.0
186
186
187
- - name : Build conda package with NumPy 2.0
187
+ - name : Build conda package
188
188
run : |
189
189
conda activate
190
- conda build --no-test --python ${{ matrix.python }} --numpy 2.0 - c conda-forge --override-channels conda-recipe-cf
190
+ conda build --no-test --python ${{ matrix.python }} -c conda-forge --override-channels conda-recipe-cf
191
191
192
192
- name : Store conda paths as envs
193
193
shell : bash -l {0}
@@ -209,8 +209,8 @@ jobs:
209
209
210
210
strategy :
211
211
matrix :
212
- python_ver : ['3.9', '3.10', '3.11', '3.12']
213
- numpy : ['numpy"<2"', 'numpy" >=2"']
212
+ python_ver : ['3.9', '3.10', '3.11', '3.12', '3.13' ]
213
+ numpy : ['numpy">=2"']
214
214
experimental : [false]
215
215
runner : [windows-latest]
216
216
continue-on-error : ${{ matrix.experimental }}
0 commit comments