Closed sudarsan2k5 closed 1 year ago
Merging #1432 (711b8c6) into main (c433071) will decrease coverage by
0.01%
. The diff coverage is87.50%
.
I believe there is still some int_div
that I need to replace with floor_div
and have to add the test for deprecation warning so converting this to draft.
Hi @brandonwillard,
I made the below changes
floor_div
with floor_divide
int_div
to floor_divide
int_div
imports and used floor_divide
inplace of ittrue_div_inplace
to true_divide_inplace
for consistencyint_div
and floor_div
Thank you, Now this is working fine
Hi @rlouf I have renamed floor_div
for floor_divide
, added related tests and also renamed to related class name, could you please check if this PR is ready to merge or anything else is still pending? Thanks
Looks good to me. Thank you for contributing @sudarsan2k5, NumPy compatibility is very important.
Addressing #1212
Replaced
floor_div
withfloor_divide
Deprecated
int_div
[x] There is an informative high-level description of the changes.
[x] The description and/or commit message(s) references the relevant GitHub issue(s).
[x]
pre-commit
is installed and set up.[x] The commit messages follow these guidelines.
[x] The commits correspond to relevant logical changes, and there are no commits that fix changes introduced by other commits in the same branch/BR.
[x] There are tests covering the changes introduced in the PR.