Fix np.integer deprecation

This commit is contained in:
Ingmar Schoegl
2020-06-24 13:55:38 -04:00
committed by Bryan W. Weber
parent c15b447f48
commit 64924d263e
+1 -1
View File
@@ -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):