Skip to content

Commit

Permalink
Temporarily use dev version number
Browse files Browse the repository at this point in the history
  • Loading branch information
bsipocz committed Mar 25, 2022
1 parent 9854329 commit d421fcb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
1 change: 0 additions & 1 deletion astroquery/heasarc/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@


def Table_read(*args, **kwargs):
# why does if commons.ASTROPY_LT_5_0 not work on Windows?
if commons.ASTROPY_LT_5_1:
return Table.read(*args, **kwargs)
else:
Expand Down
5 changes: 4 additions & 1 deletion astroquery/utils/commons.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,10 @@ def FK4CoordGenerator(*args, **kwargs):
ASTROPY_LT_4_1 = not minversion('astropy', '4.1')
ASTROPY_LT_4_3 = not minversion('astropy', '4.3')
ASTROPY_LT_5_0 = not minversion('astropy', '5.0')
ASTROPY_LT_5_1 = not minversion('astropy', '5.1')

ASTROPY_LT_5_1 = not minversion('astropy', '5.1dev197')
# Update the line above once 5.1 is released
# ASTROPY_LT_5_1 = not minversion('astropy', '5.1')


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

0 comments on commit d421fcb

Please sign in to comment.