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

Commit aee296f

Browse files
author
Kevin Michel
committed
Merge remote-tracking branch 'upstream/master'
2 parents 077c351 + 87945f3 commit aee296f

File tree

2 files changed

+14
-4
lines changed

2 files changed

+14
-4
lines changed

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@ Conda Buildpack
33

44
This is a [Heroku Buildpack](https://devcenter.heroku.com/articles/buildpacks) for [Conda](http://conda.pydata.org/), the Python distribution for scientific computing by Continuum Analytics.
55

6+
-----------------------
7+
8+
**Note:** Heroku now recommends using their beta Docker support to achieve [similar results](https://github.com/heroku-examples/python-miniconda).
9+
10+
-----------------------
11+
612
This buildpack enables the installation of binary packages through the
713
open source [conda](http://conda.pydata.org/) application. Conda is
814
recognized as being core to Continuum's Anaconda Scientific Python distro

bin/steps/conda_compile

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
11
if [ ! -d /app/.heroku/miniconda ]; then
2-
puts-step "Preparing Python/Miniconda Environment (3.5.2)"
3-
curl -Os http://repo.continuum.io/miniconda/Miniconda-3.7.3-Linux-x86_64.sh
4-
bash Miniconda-3.7.3-Linux-x86_64.sh -p /app/.heroku/miniconda/ -b | indent
5-
rm -fr Miniconda-3.7.3-Linux-x86_64.sh
2+
puts-step "Preparing Python/Miniconda Environment"
3+
curl -Os https://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh
4+
bash Miniconda-latest-Linux-x86_64.sh -p /app/.heroku/miniconda/ -b | indent
5+
rm -fr Miniconda-latest-Linux-x86_64.sh
66

77
conda install pip --yes | indent
88
fi
99

10+
echo "nomkl" > $HOME/.heroku/miniconda/conda-meta/pinned
11+
echo "added pinned file in $HOME/.heroku/miniconda/conda-meta/pinned"
12+
conda install nomkl
13+
1014

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

0 commit comments

Comments
 (0)