Skip to content

Commit

Permalink
updated version in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
giumas committed May 15, 2018
1 parent 7905255 commit 39a637f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions hyo/soundspeed/profile/ray_tracing/tracedprofile.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,10 @@ cdef class TracedProfile:
total_x.append(total_x[-1] + dx)
total_t.append(total_t[-1] + dt)

# logger.debug("z:\n%s" % total_z)
# logger.debug("x:\n%s" % total_x)
# logger.debug("t:\n%s" % total_t)

harm_mean = (total_z[-1] - total_z[0]) / (total_t[-1] - total_t[0])
self.harmonic_means.append(harm_mean)

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def txt_read(*paths):
setup_args = dict()

setup_args['name'] = 'hyo.soundspeed'
setup_args['version'] = '2018.1.20'
setup_args['version'] = '2018.1.39'
setup_args['url'] = 'https://bitbucket.org/ccomjhc/hyo_soundspeed/'
setup_args['license'] = 'LGPLv2.1 or CCOM-UNH Industrial Associate license'
setup_args['author'] = 'Giuseppe Masetti(UNH,CCOM); Barry Gallagher(NOAA,OCS); ' \
Expand Down

0 comments on commit 39a637f

Please sign in to comment.