We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f78a338 commit 30f58f5Copy full SHA for 30f58f5
.github/workflows/win_test.yml
@@ -20,10 +20,10 @@ defaults:
20
jobs:
21
build:
22
strategy:
23
- fail-fast: false
+ #fail-fast: false
24
matrix:
25
-# env: ['py313']
26
- env: ['py310', 'py311', 'py312', 'py313']
+ env: ['py313']
+# env: ['py310', 'py311', 'py312', 'py313']
27
runs-on: 'windows-latest'
28
steps:
29
- name: Get conda
@@ -36,7 +36,8 @@ jobs:
36
37
# configure conda
38
- name: config python
39
- if [ ${{ matrix.env }} == 'py313' ]; then
40
- npver=2.2
41
- fi
42
- run: conda install numpy={$npver} scipy requests pytest
+ run: |
+ if [ "${{ matrix.env }}" == "py313" ]; then
+ npver=2.2
+ fi
43
+ conda install numpy={$npver} scipy requests pytest
0 commit comments