Closed charlesbmi closed 2 years ago
When I pip install dpca on Python 3.8, it does not install the dependencies (numexpr, etc.), because the requires keyword has been deprecated and updated to install_requires: https://setuptools.pypa.io/en/latest/references/keywords.html
pip install dpca
numexpr
requires
install_requires
This PR fixes this and also adds numpy and scipy to the install_requires list.
numpy
scipy
Thanks a lot! I am going to go ahead and merge it now. As you can see, this project is not under active development anymore...
When I
pip install dpca
on Python 3.8, it does not install the dependencies (numexpr
, etc.), because therequires
keyword has been deprecated and updated toinstall_requires
: https://setuptools.pypa.io/en/latest/references/keywords.htmlThis PR fixes this and also adds
numpy
andscipy
to theinstall_requires
list.