Skip to content

Commit

Permalink
minor fixes before release 0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
leewujung committed Feb 16, 2019
1 parent 657482d commit 8b52d20
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions echopype/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
from __future__ import absolute_import, division, print_function
from .version import __version__ # noqa
from . import convert
from . import model
1 change: 1 addition & 0 deletions echopype/model/ek60.py
Original file line number Diff line number Diff line change
Expand Up @@ -353,6 +353,7 @@ def get_MVBS(self, source='Sv', MVBS_range_bin_size=None, MVBS_ping_size=None, s
drop({'add_idx', 'range_bin_bins'})

# Set MVBS attributes
MVBS.name = 'MVBS'
MVBS = MVBS.to_dataset()
MVBS['noise_est_range_bin_size'] = ('frequency', self.MVBS_range_bin_size)
MVBS.attrs['noise_est_ping_size'] = self.MVBS_ping_size
Expand Down
2 changes: 1 addition & 1 deletion echopype/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# Format expected by setup.py and doc/source/conf.py: string of form "X.Y.Z"
_version_major = 0
_version_minor = 1
_version_micro = 1 # use '' for first of series, number for 1 and above
_version_micro = 2 # use '' for first of series, number for 1 and above
_version_extra = ''
# _version_extra = '' # Uncomment this for full releases

Expand Down

0 comments on commit 8b52d20

Please sign in to comment.