Skip to content

Commit 5b9093f

Browse files
committed
Add pandas as hard dependency
1 parent 8da5bea commit 5b9093f

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

readme.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,13 @@ Another option is to clone the repository and install PyMC using `python setup.p
4646

4747
## Dependencies
4848

49-
PyMC is tested on Python 2.7 and 3.3 and depends on Theano, NumPy, SciPy, and Matplotlib (see setup.py for version information).
49+
PyMC is tested on Python 2.7 and 3.3 and depends on Theano, NumPy,
50+
SciPy, Pandas, and Matplotlib (see setup.py for version information).
5051

5152
### Optional
5253

53-
The GLM submodule relies on Pandas and Patsy.
54+
In addtion to the above dependencies, the GLM submodule relies on
55+
Patsy.
5456

5557
[`scikits.sparse`](https://github.com/njsmith/scikits-sparse) enables sparse scaling matrices which are useful for large problems. Installation on Ubuntu is easy:
5658

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
'Operating System :: OS Independent']
2828

2929
install_reqs = ['numpy>=1.7.1', 'scipy>=0.12.0', 'matplotlib>=1.2.1',
30-
'Theano<=0.7.1dev']
30+
'Theano<=0.7.1dev', 'pandas>=0.15.0']
3131

3232
test_reqs = ['nose']
3333
if sys.version_info[0] == 2: # py3 has mock in stdlib

0 commit comments

Comments
 (0)