parsing-science / pymc3_models

Apache License 2.0
158 stars 24 forks source link

Installing requirements fails with Python 3.7 #20

Closed rlouf closed 5 years ago

rlouf commented 5 years ago

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.

https://github.com/pandas-dev/pandas/issues/21785

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 5 years ago

I changed the requirements file so that it specifies minimum versions instead of requiring a specific version.

rlouf commented 5 years ago

It works perfectly, thanks!