I noticed the mybinder build was failing. Since no Python version was specified, it was probably defaulting to the latest version or one too new for the packages defined in requirements.txt. The simplest fix is to add a runtime.txt with a Python vesion compatile with the package pinned in requirements.txt. Using Python 3.7 seemsto work.
I noticed the mybinder build was failing. Since no Python version was specified, it was probably defaulting to the latest version or one too new for the packages defined in
requirements.txt
. The simplest fix is to add aruntime.txt
with a Python vesion compatile with the package pinned inrequirements.txt
. Using Python 3.7 seemsto work.