From 5a835317641e4ee4cbc42d4f0c4632651d1d80a4 Mon Sep 17 00:00:00 2001
From: Lawrence Hudson <quicklizard@googlemail.com>
Date: Tue, 10 May 2016 14:53:20 +0100
Subject: [PATCH] Pin dependecies installed via conda

---
 DevelopingOnMacOSX.md  | 4 ++--
 DevelopingOnWindows.md | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/DevelopingOnMacOSX.md b/DevelopingOnMacOSX.md
index 036dd96..a1c00ad 100644
--- a/DevelopingOnMacOSX.md
+++ b/DevelopingOnMacOSX.md
@@ -24,7 +24,7 @@ conda update --yes conda
 # Inselect env
 
 ```
-conda create --yes --name inselect pillow pyside
+conda create --yes --name inselect pillow=3.2.0 qt=4.8.7 pyside=1.2.1 numpy=1.10.1 scipy==0.17.0 scikit-learn=0.17.1
 source activate inselect
 ```
 
@@ -44,7 +44,7 @@ extremely problematic by introducing many `dylib` dependencies that are
 troublesome to freeze.
 ```
 conda install --yes -c https://conda.binstar.org/jjhelmus opencv=2.4.10
-conda install --yes numpy
+conda install --yes numpy=1.10.1
 ```
 
 ## setuptools
diff --git a/DevelopingOnWindows.md b/DevelopingOnWindows.md
index 49be4d1..cbaa549 100644
--- a/DevelopingOnWindows.md
+++ b/DevelopingOnWindows.md
@@ -25,7 +25,7 @@ follows:
 
 ```
 conda update --yes conda
-conda create --yes --name inselect pillow pyside pywin32 numpy scikit-learn
+conda create --yes --name inselect pillow=3.2.0 qt=4.8.7 pyside=1.2.1 pywin32=220 numpy=1.11.0 scipy==0.17.0 scikit-learn=0.17.1
 activate inselect
 python -m pip install --upgrade pip
 pip install -r requirements.txt
@@ -92,7 +92,7 @@ follows:
 
 ```
 conda update --yes conda
-conda create --yes --name inselect pillow pyside pywin32 numpy scikit-learn
+conda create --yes --name inselect pillow=3.2.0 qt=4.8.7 pyside=1.2.1 pywin32=220 numpy=1.11.0 scipy==0.17.0 scikit-learn=0.17.1
 activate inselect
 python -m pip install --upgrade pip
 pip install -r requirements.txt