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

Replace aliases removed from numpy 1.24 (#80) #84

Closed zware closed 1 year ago

zware commented 1 year ago

numpy v1.23 and before still contained numpy.int and numpy.float, which were aliases for the builtin int and float objects. numpy v1.24.0 removed these aliases, and this commit simply switches to the builtins.

Fixes #80.