Skip to content

Commit

Permalink
Update config.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
tsalo committed Jan 17, 2024
1 parent b0a122b commit 02116bb
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,13 @@ jobs:
name: Generate environment
command: |
conda create -n py38_env python=3.8 pip -yq
conda install -c conda-forge -y datalad
# Add nodejs and the validator
conda install nodejs
npm install -g yarn && \
npm install -g bids-validator
source activate py38_env
pip install -e .[tests]
- run:
Expand All @@ -37,6 +44,13 @@ jobs:
name: Generate environment
command: |
conda create -n py39_env python=3.9 pip -yq
conda install -c conda-forge -y datalad
# Add nodejs and the validator
conda install nodejs
npm install -g yarn && \
npm install -g bids-validator
source activate py39_env
pip install -e .[tests]
- run:
Expand All @@ -57,6 +71,13 @@ jobs:
name: Generate environment
command: |
conda create -n py310_env python=3.10 pip -yq
conda install -c conda-forge -y datalad
# Add nodejs and the validator
conda install nodejs
npm install -g yarn && \
npm install -g bids-validator
source activate py310_env
pip install -e .[tests]
- run:
Expand All @@ -77,6 +98,13 @@ jobs:
name: Generate environment
command: |
conda create -n py311_env python=3.11 pip -yq
conda install -c conda-forge -y datalad
# Add nodejs and the validator
conda install nodejs
npm install -g yarn && \
npm install -g bids-validator
source activate py311_env
pip install -e .[tests]
- run:
Expand Down

0 comments on commit 02116bb

Please sign in to comment.