Skip to content

Commit

Permalink
Merge pull request #343 from California-Planet-Search/next-release
Browse files Browse the repository at this point in the history
Staging v1.4.4 Release
  • Loading branch information
bjfultn authored Mar 8, 2021
2 parents b582fcf + 5bcf9f6 commit f1c0c3e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion radvel/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def _custom_warningfmt(msg, *a, **b):
__all__ = ['model', 'likelihood', 'posterior', 'mcmc', 'prior', 'utils',
'fitting', 'report', 'cli', 'driver', 'gp']

__version__ = '1.4.3'
__version__ = '1.4.4'
__spec__ = __name__
__package__ = __path__[0]

Expand Down
3 changes: 2 additions & 1 deletion radvel/driver.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
import ConfigParser as configparser
else:
import configparser
from configparser import NoSectionError


def plots(args):
Expand Down Expand Up @@ -584,7 +585,7 @@ def report(args):
derived = False
try:
compstats = eval(status.get('ic_compare', 'ic'))
except KeyError:
except (KeyError, NoSectionError):
print("WARNING: Could not find {} model comparison \
in {}.\nPlease make sure that you have run `radvel ic -t {}` (or, e.g., `radvel \
ic -t nplanets e trend jit gp`)\
Expand Down

0 comments on commit f1c0c3e

Please sign in to comment.