I'm looking for a propper way to install numpy and pandas from a requirements.txt file as a dependency for my heroku django app without getting Timed out compiling Python app (15 minutes)
I know that there are some custom buildpacks like this conda-buildpack but I need it as a pip requirement because some other packages load it as additional dependency.
The solution I found to install numpy and pandas in two different commits leads to the problem that when I delete the heroku cache for some reason I have todo this two commits again.
So I want to ask how I can exceed the 15 minutes heroku compile time? How you guys handle this?