LSSTDESC / tables_io

A small package to provide tools to read / write and convert tabular data for DESC

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Crashing with astropy 5.1

eacharles opened this issue · comments

Reading a fits file with astropy 5.1 causes this crash:

/Users/echarles/miniconda3/envs/rail_test/lib/python3.8/site-packages/astropy/table/row.py(76)eq()
-> return self.as_void() == other

This is trivially fixed by added a break statement in ioUtils.read()

        if defName in odict:
            odict = odict[defName]
            break

fixed with #48