Skip to content

Commit

Permalink
Merge pull request simpeg#693 from simpeg/bug_fix_invProblem
Browse files Browse the repository at this point in the history
Bug in `get_dpred` in `invProblem.py`
  • Loading branch information
lheagy committed Apr 21, 2018
2 parents b40db4a + 307d398 commit 7c87593
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[bumpversion]
current_version = 0.8.1
current_version = 0.8.2
files = setup.py SimPEG/__init__.py docs/conf.py

2 changes: 1 addition & 1 deletion SimPEG/InvProblem.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ def get_dpred(self, m, f):
dpred += [objfct.survey.dpred(m, f=f[i])]
else:
dpred += []
return dpred
return dpred

@Utils.timeIt
def evalFunction(self, m, return_g=True, return_H=True):
Expand Down
2 changes: 1 addition & 1 deletion SimPEG/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
from SimPEG import Inversion
from SimPEG import Tests

__version__ = '0.8.1'
__version__ = '0.8.2'
__author__ = 'SimPEG Team'
__license__ = 'MIT'
__copyright__ = '2013 - 2017, SimPEG Team, https://simpeg.xyz'
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@
# built documents.
#
# The short X.Y version.
version = '0.8.1'
version = '0.8.2'
# The full version, including alpha/beta/rc tags.
release = '0.8.1'
release = '0.8.2'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

setup(
name="SimPEG",
version="0.8.1",
version="0.8.2",
packages=find_packages(),
install_requires=[
'numpy>=1.7',
Expand Down

0 comments on commit 7c87593

Please sign in to comment.