Skip to content

Commit d421fcb

Browse files
committed
Temporarily use dev version number
1 parent 9854329 commit d421fcb

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

astroquery/heasarc/core.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717

1818

1919
def 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:

astroquery/utils/commons.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,10 @@ def FK4CoordGenerator(*args, **kwargs):
5959
ASTROPY_LT_4_1 = not minversion('astropy', '4.1')
6060
ASTROPY_LT_4_3 = not minversion('astropy', '4.3')
6161
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')
6366

6467

6568
@deprecated('0.4.4', alternative='astroquery.query.BaseQuery._request')

0 commit comments

Comments
 (0)