Skip to content

Commit

Permalink
Fix np.float_ to np.float64 while using numpy >= 2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Geoo Chi committed Sep 29, 2024
1 parent 1dcb812 commit 4d90ee5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions manim/utils/iterables.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@

T = TypeVar("T")
U = TypeVar("U")
F = TypeVar("F", np.float_, np.int_)
F = TypeVar("F", np.float64, np.int_)
H = TypeVar("H", bound=Hashable)


Expand Down Expand Up @@ -311,8 +311,8 @@ def resize_array(nparray: npt.NDArray[F], length: int) -> npt.NDArray[F]:


def resize_preserving_order(
nparray: npt.NDArray[np.float_], length: int
) -> npt.NDArray[np.float_]:
nparray: npt.NDArray[np.float64], length: int
) -> npt.NDArray[np.float64]:
"""Extends/truncates nparray so that ``len(result) == length``.
The elements of nparray are duplicated to achieve the desired length
(favours earlier elements).
Expand Down

0 comments on commit 4d90ee5

Please sign in to comment.