File tree Expand file tree Collapse file tree 6 files changed +16
-15
lines changed Expand file tree Collapse file tree 6 files changed +16
-15
lines changed Original file line number Diff line number Diff line change @@ -21,9 +21,8 @@ echo "inside $0"
21
21
pip install -I git+https://github.com/pypa/pip@42102e9deaea99db08b681d06906c2945f6f95e2#egg=pip
22
22
pv=" ${TRAVIS_PYTHON_VERSION: 0: 1} "
23
23
[ " $pv " == " 2" ] && pv=" "
24
- [ " $pv " == " 2" ] && DISTRIBUTE_VERSION=" ==0.6.35"
25
24
26
- pip install -I distribute ${DISTRIBUTE_VERSION}
25
+ pip install -I -U setuptools
27
26
pip install wheel
28
27
29
28
# comment this line to disable the fetching of wheel files
@@ -40,16 +39,13 @@ if [ -n "$LOCALE_OVERRIDE" ]; then
40
39
fi
41
40
42
41
time pip install $PIP_ARGS -r ci/requirements-${TRAVIS_PYTHON_VERSION}${JOB_TAG} .txt
42
+ time sudo apt-get install libatlas-base-dev gfortran
43
43
44
44
# Optional Deps
45
45
if [ x" $FULL_DEPS " == x" true" ]; then
46
46
echo " Installing FULL_DEPS"
47
- # for pytables gets the lib as well
47
+ # for pytables gets the lib as well
48
48
time sudo apt-get $APT_ARGS install libhdf5-serial-dev
49
- time sudo apt-get $APT_ARGS install python${pv} -bs4
50
- time sudo apt-get $APT_ARGS install python${pv} -scipy
51
-
52
- time sudo apt-get $APT_ARGS remove python${pv} -lxml
53
49
54
50
# fool statsmodels into thinking pandas was already installed
55
51
# so it won't refuse to install itself.
Original file line number Diff line number Diff line change @@ -12,5 +12,7 @@ xlrd==0.9.2
12
12
patsy==0.1.0
13
13
html5lib==1.0b2
14
14
lxml==3.2.1
15
- scikits.timeseries== 0.91.3
15
+ http://downloads.sourceforge.net/project/pytseries/ scikits.timeseries/ 0.91.3/scikits.timeseries-0.91.3.tar.gz?r=
16
16
MySQL-python==1.2.4
17
+ scipy==0.10.0
18
+ beautifulsoup4==4.2.1
Original file line number Diff line number Diff line change @@ -12,3 +12,5 @@ matplotlib==1.2.1
12
12
patsy==0.1.0
13
13
html5lib==1.0b2
14
14
lxml==3.2.1
15
+ scipy==0.10.0
16
+ beautifulsoup4==4.2.1
Original file line number Diff line number Diff line change @@ -10,3 +10,5 @@ tables==3.0.0
10
10
matplotlib==1.2.1
11
11
patsy==0.1.0
12
12
lxml==3.2.1
13
+ scipy==0.12.0
14
+ beautifulsoup4==4.2.1
Original file line number Diff line number Diff line change @@ -10,3 +10,5 @@ tables==3.0.0
10
10
matplotlib==1.2.1
11
11
patsy==0.1.0
12
12
lxml==3.2.1
13
+ scipy==0.12.0
14
+ beautifulsoup4==4.2.1
Original file line number Diff line number Diff line change @@ -18,12 +18,13 @@ apt-add-repository ppa:fkrull/deadsnakes -y
18
18
apt-get update
19
19
20
20
# install some deps and virtualenv
21
- apt-get install python-pip libfreetype6-dev libpng12-dev -y
21
+ apt-get install python-pip libfreetype6-dev libpng12-dev libhdf5-serial-dev \
22
+ g++ libatlas-base-dev gfortran -y
22
23
pip install virtualenv
23
- apt-get install libhdf5-serial-dev g++ -y
24
24
apt-get build-dep python-lxml -y
25
25
26
26
export PYTHONIOENCODING=' utf-8'
27
+ export VIRTUALENV_DISTRIBUTE=0
27
28
28
29
function generate_wheels() {
29
30
# get the requirements file
@@ -50,11 +51,7 @@ function generate_wheels() {
50
51
51
52
# install pip setuptools
52
53
pip install -I --download-cache /tmp ' git+https://github.com/pypa/pip@42102e9d#egg=pip'
53
- DISTRIBUTE_VERSION=
54
- if [ " ${PY_MAJOR} " == " 2" ]; then
55
- DISTRIBUTE_VERSION=" ==0.6.35"
56
- fi
57
- pip install -I --download-cache /tmp distribute${DISTRIBUTE_VERSION}
54
+ pip install -I -U --download-cache /tmp setuptools
58
55
pip install -I --download-cache /tmp wheel
59
56
60
57
# make the dir if it doesn't exist
You can’t perform that action at this time.
0 commit comments