Skip to content

Commit 4673aec

Browse files
committed
Update config.yml
1 parent d903380 commit 4673aec

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

.circleci/config.yml

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@ jobs:
55
machine:
66
image: ubuntu-2004:202201-02
77
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"
816
steps:
917
- checkout:
1018
path: /home/circleci/src/CuBIDS
@@ -21,7 +29,7 @@ jobs:
2129
conda info -a
2230
2331
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
2533
source activate cubids
2634
conda install -c conda-forge -y datalad
2735
@@ -63,13 +71,6 @@ workflows:
6371
build_test_deploy:
6472
jobs:
6573
- 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"
7374
filters:
7475
tags:
7576
only: /.*/

0 commit comments

Comments
 (0)