Commit 1c28f5a0 by Calen Pennington

Move Mysql and scipi to requirements/post.txt, because they require the contents…

Move Mysql and scipi to requirements/post.txt, because they require the contents of requirements.txt to be completely installed
parent ef17e936
...@@ -170,6 +170,7 @@ end ...@@ -170,6 +170,7 @@ end
desc "Install all python prerequisites for the lms and cms" desc "Install all python prerequisites for the lms and cms"
task :install_python_prereqs do task :install_python_prereqs do
sh('pip install -r requirements/base.txt') sh('pip install -r requirements/base.txt')
sh('pip install --exists-action w -r requirements/post.txt')
# Check for private-requirements.txt: used to install our libs as working dirs, # Check for private-requirements.txt: used to install our libs as working dirs,
# or personal-use tools. # or personal-use tools.
if File.file?("requirements/private.txt") if File.file?("requirements/private.txt")
......
...@@ -3,6 +3,7 @@ ...@@ -3,6 +3,7 @@
beautifulsoup4==4.1.3 beautifulsoup4==4.1.3
beautifulsoup==3.2.1 beautifulsoup==3.2.1
boto==2.6.0 boto==2.6.0
distribute==0.6.28
django-celery==3.0.11 django-celery==3.0.11
django-countries==1.5 django-countries==1.5
django-followit==0.0.3 django-followit==0.0.3
...@@ -22,11 +23,9 @@ feedparser==5.1.3 ...@@ -22,11 +23,9 @@ feedparser==5.1.3
fs==0.4.0 fs==0.4.0
GitPython==0.3.2.RC1 GitPython==0.3.2.RC1
glob2==0.3 glob2==0.3
http://sympy.googlecode.com/files/sympy-0.7.1.tar.gz
lxml==3.0.1 lxml==3.0.1
mako==0.7.3 mako==0.7.3
Markdown==2.2.1 Markdown==2.2.1
MySQL-python==1.2.4c1
networkx==1.7 networkx==1.7
nltk==2.0.4 nltk==2.0.4
numpy==1.6.2 numpy==1.6.2
...@@ -43,10 +42,10 @@ python-openid==2.2.5 ...@@ -43,10 +42,10 @@ python-openid==2.2.5
pytz==2012h pytz==2012h
PyYAML==3.10 PyYAML==3.10
requests==0.14.2 requests==0.14.2
scipy==0.11.0
Shapely==1.2.16 Shapely==1.2.16
sorl-thumbnail==11.12 sorl-thumbnail==11.12
South==0.7.6 South==0.7.6
sympy==0.7.1
xmltodict==0.4.1 xmltodict==0.4.1
# Used for debugging # Used for debugging
......
# This must be installed after distribute 0.6.28
MySQL-python==1.2.4c1
# This must be installed after numpy
scipy==0.11.0
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