rougier / numpy-100

100 numpy exercises (with solutions)
MIT License
12.17k stars 5.74k forks source link

Specify Python version 3.7 to ensure build #207

Closed xofbd closed 11 months ago

xofbd commented 11 months ago

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.

rougier commented 11 months ago

Thanks!