dgasmith / opt_einsum

⚡️Optimizing einsum functions in NumPy, Tensorflow, Dask, and more with contraction order optimization.
https://dgasmith.github.io/opt_einsum/
MIT License
822 stars 67 forks source link

Setup.py says install requires Numpy >= 1.7 #223

Closed chabazite closed 6 months ago

chabazite commented 6 months ago

Hi thank you for this wonderful package. It looks like setup.py shows install_requires as v1.7 or greater, I believe the latest version for Numpy is v1.26.0. This may be a typo.

install_requires=[ 'numpy>=1.7', ],

jcmgray commented 6 months ago

I think this is just a common confusion of reading the current version as a decimal number whereas it really does mean (1, 26, 0) which is > (1, 7, 0).