Skip to content

Commit

Permalink
Change deprecited np.object into object.
Browse files Browse the repository at this point in the history
  • Loading branch information
nennigb committed Nov 14, 2024
1 parent 9e4e840 commit 8017cf2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions eastereig/charpol.py
Original file line number Diff line number Diff line change
Expand Up @@ -630,9 +630,9 @@ def _jacobian_utils(self):
self._dlda_prod = np.cumprod(DA, 0)

# Create Coefficients used nu_i derivatives
self._der_coef = np.empty((N, N), dtype=np.object)
self._da_slice = np.empty((N, N), dtype=np.object)
self._da_shape = np.empty((N, N), dtype=np.object)
self._der_coef = np.empty((N, N), dtype=object)
self._da_slice = np.empty((N, N), dtype=object)
self._da_shape = np.empty((N, N), dtype=object)
# Loop of the derivative of P, fill J raws
for row in range(0, N):
# loop over the nu variables, fill column
Expand Down

0 comments on commit 8017cf2

Please sign in to comment.