Skip to content

Commit

Permalink
Merge branch 'release/v3.6.13'
Browse files Browse the repository at this point in the history
  • Loading branch information
Sander Roosendaal committed Nov 23, 2024
2 parents 1ee3df1 + 5ea7da9 commit 0b4ed17
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build/lib/rowingdata/rowingdata.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from six.moves import range
from six.moves import input

__version__ = "3.6.11"
__version__ = "3.6.12"

from collections import Counter

Expand Down
5 changes: 5 additions & 0 deletions rowingdata/otherparsers.py
Original file line number Diff line number Diff line change
Expand Up @@ -471,6 +471,11 @@ def __init__(self, readfile):
self.df[' Stroke500mPace (sec/500m)'] = pace
self.df[' ElapsedTime (sec)'] = elapsed_time

try:
self.df['cadence'] = self.df['cadence'] + self.df['fractional_cadence']
except KeyError: # pragma: no cover
pass

hrname = 'heart_rate'
spmname = 'cadence'

Expand Down
2 changes: 1 addition & 1 deletion rowingdata/rowingdata.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from six.moves import range
from six.moves import input

__version__ = "3.6.12"
__version__ = "3.6.13"

from collections import Counter

Expand Down

0 comments on commit 0b4ed17

Please sign in to comment.