Skip to content

Commit

Permalink
small bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandergagliano committed Mar 28, 2024
1 parent a76d1cf commit 9ebd756
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion astro_ghost/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '2.0.19'
__version__ = '2.1.0'
3 changes: 2 additions & 1 deletion astro_ghost/ghostHelperFunctions.py
Original file line number Diff line number Diff line change
Expand Up @@ -887,7 +887,8 @@ def findNewHosts(transientName, transientCoord, snClass, verbose=False, starcut=
with open(path+"/dictionaries/" + "Final_Dictionary.p", 'wb') as fp:
dump(final_dict, fp)

host_DF = checkSimbadHierarchy(host_DF, verbose=verbose)
if len(host_DF) > 0:
host_DF = checkSimbadHierarchy(host_DF, verbose=verbose)

#a few final cleaning steps
#first, add back in some features
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

from setuptools import setup

version = "2.0.19"
version = "2.1.0"

VERSION_TEMPLATE = """
Note that we need to fall back to the hard-coded version if either
Expand Down

0 comments on commit 9ebd756

Please sign in to comment.