AdriJD / beamconv

Code library to simulate CMB detector data with realistic optics-related contributions
MIT License
10 stars 10 forks source link

replace np.int/np.float by just int/float #19

Closed mreineck closed 1 year ago

mreineck commented 1 year ago

This change is necessary when using recent numpy releases, since np.int and np.float have been obsoleted.

mreineck commented 1 year ago

Analogous: np.complex -> np.complex_

AdriJD commented 1 year ago

Thank you!