Skip to content

Commit 905b407

Browse files
committed
Removed pandas dependencies from other files.
1 parent 03a02e5 commit 905b407

4 files changed

+3
-8
lines changed

precise-bootstrap.sh

+1-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@ apt-get update
77
# installation
88
apt-get install -y python-setuptools python-pip
99
# main dependencies
10-
apt-get install -y python-numpy python-scipy python-matplotlib python-pandas
11-
pip install pandas==0.12.0
10+
apt-get install -y python-numpy python-scipy python-matplotlib
1211
# testing
1312
apt-get install -y python-nose python-coverage
1413
# documentation

saucy-bootstrap.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ apt-get update
77
# installation
88
apt-get install -y python-setuptools
99
# main dependencies
10-
apt-get install -y python-numpy python-scipy python-matplotlib python-pandas
10+
apt-get install -y python-numpy python-scipy python-matplotlib
1111
# testing
1212
apt-get install -y python-nose python-coverage
1313
# documentation

setup.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,7 @@
1414
packages=find_packages(),
1515
install_requires=['numpy>=1.6.0',
1616
'scipy>=0.9.0',
17-
'matplotlib>=1.1.0',
18-
'pandas>=0.12.0'],
17+
'matplotlib>=1.1.0'],
1918
extras_require={'doc': ['sphinx>=1.1.0',
2019
'numpydoc>=0.4']},
2120
tests_require=['nose>1.3.0'],

ubuntu-precise-requirements.txt

-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,8 @@
1-
Cython==0.15.1
21
Sphinx==1.1.3
32
coverage==3.4
43
ipython==0.12.1
54
matplotlib==1.1.1
65
nose==1.1.2
76
numpy==1.6.1
87
numpydoc==0.4
9-
# pandas 0.7.0 is the default in precise, major upgrade needed
10-
pandas==0.12.0
118
scipy==0.9.0

0 commit comments

Comments
 (0)