Commit b2cc9698 by Eric Fischer

proof-of-concept

parent 436dc763
......@@ -9,8 +9,6 @@ install-system:
# not used by travis
install-node:
sudo add-apt-repository -y ppa:chris-lea/node.js
sudo apt-get update -qq
sudo apt-get install -qq nodejs
install-wheels:
......@@ -82,4 +80,4 @@ test-a11y:
update-npm-requirements:
npm update --silent
cp ./node_modules/backgrid/lib/backgrid*.js $(STATIC_JS)/lib/backgrid/
cp ./node_modules/backgrid/lib/backgrid*.css $(STATIC_CSS)/lib/backgrid/
\ No newline at end of file
cp ./node_modules/backgrid/lib/backgrid*.css $(STATIC_CSS)/lib/backgrid/
......@@ -3,9 +3,7 @@ g++
gcc
git
gfortran
libblas3gf
libblas-dev
liblapack3gf
liblapack-dev
libatlas-base-dev
libfontconfig1
......@@ -13,9 +11,10 @@ libmysqlclient-dev
libxml2-dev
libxslt1-dev
nodejs
npm
python2.7
python2.7-dev
python-mysqldb
python-pip
python-software-properties
rubygems
\ No newline at end of file
rubygems
......@@ -9,10 +9,8 @@ cd `dirname $BASH_SOURCE` && cd ..
pip install --upgrade pip
pip install wheel
WHEELHOUSE="scripts/data/wheelhouse"
# Ensure that numpy is installed first; otherwise scipy won't be able to install
pip install --use-wheel --no-index --upgrade --find-links=$WHEELHOUSE numpy
pip install --use-wheel --no-index --upgrade numpy
# Then install everything else
pip install --use-wheel --no-index --upgrade --find-links=$WHEELHOUSE -r requirements/wheels.txt
pip install --use-wheel --no-index --upgrade -r requirements/wheels.txt
#!/usr/bin/env bash
# Create "wheel" archives of the requirements for running the test suite.
# http://pip.readthedocs.org/en/latest/reference/pip_wheel.html
# Run this whenever you update requirements to speed up test jobs in Travis.
# Since the archives contain binary distributions, however,
# you MUST run the script within an Ubuntu 12.04 box.
cd `dirname $BASH_SOURCE` && cd ..
pip install --upgrade pip
pip install wheel
WHEELHOUSE="scripts/data/wheelhouse"
pip wheel --wheel-dir=$WHEELHOUSE -r requirements/wheels.txt
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