I am using Heroku to deploy my Flask application.
Inside my application I am trying to import numpy. This works fine on my localhost, however when I deploy to Heroku the build never completes.
When I check my Heroku logs it is clear that it cannot find numpy.
I have tried putting numpy into my requirments.txt with different version numbers but none seems to work.
I've also tried adding a buildpack which includes numpy, following an example on like this: https://github.com/kennethreitz/conda-buildpack
On the official Heroku python build pack it says: "Some Python packages with obscure C dependencies (e.g. scipy) are not compatible"
Is it possible to import numpy somehow though?
numpydependencies, and include all of them in yourrequirements.txtas well?