Skip to content

Commit

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

__version__ = '1.3.4'
__version__ = '1.3.5'
__spec__ = __name__
__package__ = __path__[0]

Expand Down
10 changes: 7 additions & 3 deletions radvel/driver.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,13 @@ def plots(args):
if ptype == 'rv':
args.plotkw['uparams'] = post.uparams
args.plotkw['status'] = status
saveto = os.path.join(
args.outputdir,conf_base+'_rv_multipanel.pdf'
)
if 'saveplot' not in args.plotkw:
saveto = os.path.join(
args.outputdir,conf_base+'_rv_multipanel.pdf'
)
else:
saveto = args.plotkw['saveplot']
args.plotkw.pop('saveplot')
P, _ = radvel.utils.initialize_posterior(config_file)
if hasattr(P, 'bjd0'):
args.plotkw['epoch'] = P.bjd0
Expand Down

0 comments on commit b512512

Please sign in to comment.