Installing requirements fails with Python 3.7
rlouf opened this issue · 2 comments
rlouf commented
I tried to re-build the library after upgrading to Python 3.7, and the compilation of pandas and numpy fail. After some investigation it turns out the version of numpy and pandas specified int the requirements.txt
rely on an outdated version of Cython.
It's easily fixed by bumping the version of pandas and numpy. Are there any particular reasons to keep the curent versions?
parsing-science commented
I changed the requirements file so that it specifies minimum versions instead of requiring a specific version.
rlouf commented
It works perfectly, thanks!