Commit 552cb20a authored by Andrew Gibiansky's avatar Andrew Gibiansky

changed some dependency orderings

parent f1bfd08a
{
"metadata": {
"name": ""
},
"nbformat": 3,
"nbformat_minor": 0,
"worksheets": [
{
"cells": [
{
"cell_type": "code",
"collapsed": false,
"input": [
"import \n"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"no Python documentation found for 'PATH'\n",
"\n"
]
}
],
"prompt_number": 4
},
{
"cell_type": "code",
"collapsed": false,
"input": [],
"language": "python",
"metadata": {},
"outputs": []
}
],
"metadata": {}
}
]
}
\ No newline at end of file
No preview for this file type
...@@ -203,8 +203,10 @@ installIPython = void . shellyNoDir $ do ...@@ -203,8 +203,10 @@ installIPython = void . shellyNoDir $ do
installPipDependencies :: Sh () installPipDependencies :: Sh ()
installPipDependencies = withTmpDir $ \tmpDir -> installPipDependencies = withTmpDir $ \tmpDir ->
mapM_ (installDependency tmpDir) mapM_ (installDependency tmpDir)
[ ("pyzmq", "14.0.1") [
, ("MarkupSafe", "0.18") -- This cannot go first in the dependenc list, because its setup.py is broken. ("pyzmq", "14.0.1")
, ("setuptools", "2.0.2") -- This cannot go first in the dependenc list, because its setup.py is broken.
, ("MarkupSafe", "0.18") -- Neither can this
, ("tornado","3.1.1") , ("tornado","3.1.1")
, ("jinja2","2.7.1") , ("jinja2","2.7.1")
] ]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment