Skip to content

Commit

Permalink
Fix np.integer deprecation
Browse files Browse the repository at this point in the history
  • Loading branch information
ischoegl committed Jun 21, 2020
1 parent c15b447 commit 0f2fd88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion interfaces/cython/cantera/base.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ cdef class _SolutionBase:
self.base.setThermo(self._thermo)
self.base.setKinetics(self._kinetics)

self._selected_species = np.ndarray(0, dtype=np.integer)
self._selected_species = np.ndarray(0, dtype=np.uint64)

def __init__(self, *args, **kwargs):
if isinstance(self, Transport):
Expand Down

0 comments on commit 0f2fd88

Please sign in to comment.