dftlibs / numgrid

Numerical integration grid for molecules.
Mozilla Public License 2.0
47 stars 14 forks source link

pip installing numgrid tries to install an older version of numpy (1.16.3) by removing the existing version #37

Closed manassharma07 closed 4 years ago

manassharma07 commented 4 years ago

Is it possible to make the requirements not dependent on the NumPy version.

When I pip installed numgrid, it downloaded an older version of NumPy and installed that after removing the newer version I already had.

bast commented 4 years ago

This is a good suggestion. I have learned later that for libraries like this one, one should be careful with pinning library dependencies. I will fix that shortly by not pinning numpy and cffi dependencies, and publish a new version.

manassharma07 commented 4 years ago

Thanks for replying and such a great library!

bast commented 4 years ago

Fixed in 29f94b78522f8a5e2e083cdc8f2aaafa24e96ed8. New package is out: https://pypi.org/project/numgrid/1.1.2/

Thanks again for the good suggestion!