File tree Expand file tree Collapse file tree 1 file changed +9
-8
lines changed Expand file tree Collapse file tree 1 file changed +9
-8
lines changed Original file line number Diff line number Diff line change 5
5
machine :
6
6
image : ubuntu-2004:202201-02
7
7
working_directory : /home/circleci/src/CuBIDS
8
+ # Define the matrix for Python versions
9
+ matrix :
10
+ parameters :
11
+ python_version :
12
+ - " 3.8"
13
+ - " 3.9"
14
+ - " 3.10"
15
+ - " 3.11"
8
16
steps :
9
17
- checkout :
10
18
path : /home/circleci/src/CuBIDS
21
29
conda info -a
22
30
23
31
export PATH=/tmp/miniconda/bin:$PATH
24
- conda create -n cubids python=<< matrix .python_version >> pip
32
+ conda create -n cubids python=<< parameters .python_version >> pip
25
33
source activate cubids
26
34
conda install -c conda-forge -y datalad
27
35
@@ -63,13 +71,6 @@ workflows:
63
71
build_test_deploy :
64
72
jobs :
65
73
- run_pytests :
66
- # Define the matrix for Python versions
67
- matrix :
68
- python_version :
69
- - " 3.8"
70
- - " 3.9"
71
- - " 3.10"
72
- - " 3.11"
73
74
filters :
74
75
tags :
75
76
only : /.*/
You can’t perform that action at this time.
0 commit comments