Skip to content
This repository was archived by the owner on Nov 13, 2020. It is now read-only.

Allow conda channels to be added from conda-channels.txt #20

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions bin/steps/conda_compile
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ if [ ! -d /app/.heroku/miniconda ]; then
conda install pip --yes | indent
fi

if [ -f conda-channels.txt ]; then
puts-step "Installing conda channels"
cat conda-channels.txt | xargs -I {} conda config --add channels {}
fi

if [ -f conda-requirements.txt ]; then
puts-step "Installing dependencies using Conda"
Expand Down