Skip to content

Commit

Permalink
Merge pull request #156 from California-Planet-Search/next-release
Browse files Browse the repository at this point in the history
Version 1.1.6
  • Loading branch information
bjfultn authored Mar 1, 2018
2 parents 3b7c6ae + c89933b commit d3cf0af
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion radvel/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
__all__=['model', 'likelihood', 'posterior', 'mcmc', 'prior', 'utils',
'fitting', 'report', 'cli', 'driver', 'gp']

__version__ = '1.1.5'
__version__ = '1.1.6'

MODULEDIR, filename = os.path.split(__file__)
DATADIR = os.path.join(sys.prefix, 'radvel_example_data')
Expand Down
4 changes: 4 additions & 0 deletions radvel/posterior.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,10 @@ def writeto(self, filename):
with open(filename, 'wb') as f:
pickle.dump(self, f)

def residuals(self):
"""Overwrite inherited residuals method that does not work"""

return self.likelihood.residuals()

def load(filename):
"""
Expand Down

0 comments on commit d3cf0af

Please sign in to comment.