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 17
17
18
18
19
19
def Table_read (* args , ** kwargs ):
20
- # why does if commons.ASTROPY_LT_5_0 not work on Windows?
21
20
if commons .ASTROPY_LT_5_1 :
22
21
return Table .read (* args , ** kwargs )
23
22
else :
Original file line number Diff line number Diff line change @@ -59,7 +59,10 @@ def FK4CoordGenerator(*args, **kwargs):
59
59
ASTROPY_LT_4_1 = not minversion ('astropy' , '4.1' )
60
60
ASTROPY_LT_4_3 = not minversion ('astropy' , '4.3' )
61
61
ASTROPY_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')
63
66
64
67
65
68
@deprecated ('0.4.4' , alternative = 'astroquery.query.BaseQuery._request' )
You can’t perform that action at this time.
0 commit comments