quandl / quandl-python

MIT License
1.38k stars 338 forks source link

Update requirements.txt #31

Closed femtotrader closed 8 years ago

femtotrader commented 9 years ago

Currently requirements.txt only allows for numpy 1.7.1 and pandas 0.11. Users with newer versions are therefore forced to install older versions of these modules. Requirements.txt should be changed from:

numpy==1.7.1
pandas==0.11

to:

numpy>=1.7.1
pandas>=0.11

This saves users from having to recompile an old version of numpy, if they already have a newer version installed.

femtotrader commented 9 years ago

Should fix https://github.com/quandl/Python/issues/23