The desisim/test/test_quickspectra.py unit test yields the following non-catastrophic warning based on the nominal desi configuration file, which I've tracked down to when the specsim.observation.Observation._update_model() method is called. Would be nice to fix this.
/Users/ioannis/opt/anaconda3/envs/desi/lib/python3.8/site-packages/astropy/time/utils.py:179: RuntimeWarning: overflow encountered in double_scalars
c = 134217729. * a # 2**27+1.
/Users/ioannis/opt/anaconda3/envs/desi/lib/python3.8/site-packages/astropy/time/utils.py:181: RuntimeWarning: invalid value encountered in double_scalars
ah = c - abig
The
desisim/test/test_quickspectra.py
unit test yields the following non-catastrophic warning based on the nominaldesi
configuration file, which I've tracked down to when thespecsim.observation.Observation._update_model()
method is called. Would be nice to fix this.