anhaidgroup / py_stringmatching

A comprehensive and scalable set of string tokenizers and similarity measures in Python
https://sites.google.com/site/anhaidgroup/projects/py_stringmatching
BSD 3-Clause "New" or "Revised" License
135 stars 16 forks source link

Setup requires numpy version incompatible with Python 3.6 #72

Open faph opened 2 years ago

faph commented 2 years ago

Building the wheel for this package is broken for Python 3.6 because the setup_requires specifies numpy as 'numpy >= 1.7.0'. This pulls in numpy 1.21.x which is not supported with Python 3.6. Seems numpy is not resolving this constraint at install time and instead throws a runtime error.

Is it possible to specify a maximum numpy version of 1.20.xas a setup requirements for Python 3.6?