mirror of
https://github.com/Cantera/cantera.git
synced 2026-08-19 01:14:44 -05:00
Fix np.integer deprecation
This commit is contained in:
committed by
Bryan W. Weber
parent
c15b447f48
commit
64924d263e
@@ -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):
|
||||
|
||||
Reference in New Issue
Block a user