Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
replace uses of numpy.long with int (#365)
Summary: Pull Request resolved: #365 `numpy.long` is long deprecated and removed from numpy-1.24.0. This replaces all uses with equivalent type `int`. Using the following oneliner: ``` fbgr '\bnp\.long\b' -lsf '.*\.py$' | xargs perl -pi -e 's,\bnp\.long\b,int,g' ``` Reviewed By: florazzz Differential Revision: D50723330 fbshipit-source-id: 50a85e728f8f700613268144f51e86415d99a30c
- Loading branch information