You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 30, 2022. It is now read-only.
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.
The text was updated successfully, but these errors were encountered:
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.
The text was updated successfully, but these errors were encountered: