File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 1717
1818
1919def Table_read (* args , ** kwargs ):
20- # why does if commons.ASTROPY_LT_5_0 not work on Windows?
2120 if commons .ASTROPY_LT_5_1 :
2221 return Table .read (* args , ** kwargs )
2322 else :
Original file line number Diff line number Diff line change @@ -59,7 +59,10 @@ def FK4CoordGenerator(*args, **kwargs):
5959ASTROPY_LT_4_1 = not minversion ('astropy' , '4.1' )
6060ASTROPY_LT_4_3 = not minversion ('astropy' , '4.3' )
6161ASTROPY_LT_5_0 = not minversion ('astropy' , '5.0' )
62- ASTROPY_LT_5_1 = not minversion ('astropy' , '5.1' )
62+
63+ ASTROPY_LT_5_1 = not minversion ('astropy' , '5.1dev197' )
64+ # Update the line above once 5.1 is released
65+ # ASTROPY_LT_5_1 = not minversion('astropy', '5.1')
6366
6467
6568@deprecated ('0.4.4' , alternative = 'astroquery.query.BaseQuery._request' )
You can’t perform that action at this time.
0 commit comments