Skip to content

Commit fa2e79e

Browse files
authored
Garmin FIT SDK 21.195.0
* Garmin FIT SDK 21.195.0 * Delete setup.cfg * Delete requirements.txt * Update run_tests.yml to use pyproject.toml
1 parent 071b79e commit fa2e79e

15 files changed

Lines changed: 26 additions & 55 deletions

.github/workflows/run_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424

2525
- name: Install requirements
2626
run: |
27-
python3 -m pip install -r requirements.txt
27+
python3 -m pip install .[dev]
2828
- name: Run test suite
2929
run: |
3030
python3 -m pytest

garmin_fit_sdk/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
# Transfer (FIT) Protocol License.
88
###########################################################################################
99
# ****WARNING**** This file is auto-generated! Do NOT edit this file.
10-
# Profile Version = 21.194.0Release
11-
# Tag = production/release/21.194.0-0-g65135fc
10+
# Profile Version = 21.195.0Release
11+
# Tag = production/release/21.195.0-0-g569e7e5
1212
############################################################################################
1313

1414

@@ -22,4 +22,4 @@
2222
from garmin_fit_sdk.stream import Stream
2323
from garmin_fit_sdk.util import FIT_EPOCH_S, convert_timestamp_to_datetime
2424

25-
__version__ = '21.194.0'
25+
__version__ = '21.195.0'

garmin_fit_sdk/accumulator.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
# Transfer (FIT) Protocol License.
88
###########################################################################################
99
# ****WARNING**** This file is auto-generated! Do NOT edit this file.
10-
# Profile Version = 21.194.0Release
11-
# Tag = production/release/21.194.0-0-g65135fc
10+
# Profile Version = 21.195.0Release
11+
# Tag = production/release/21.195.0-0-g569e7e5
1212
############################################################################################
1313

1414

garmin_fit_sdk/bitstream.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
# Transfer (FIT) Protocol License.
88
###########################################################################################
99
# ****WARNING**** This file is auto-generated! Do NOT edit this file.
10-
# Profile Version = 21.194.0Release
11-
# Tag = production/release/21.194.0-0-g65135fc
10+
# Profile Version = 21.195.0Release
11+
# Tag = production/release/21.195.0-0-g569e7e5
1212
############################################################################################
1313

1414

garmin_fit_sdk/crc_calculator.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
# Transfer (FIT) Protocol License.
88
###########################################################################################
99
# ****WARNING**** This file is auto-generated! Do NOT edit this file.
10-
# Profile Version = 21.194.0Release
11-
# Tag = production/release/21.194.0-0-g65135fc
10+
# Profile Version = 21.195.0Release
11+
# Tag = production/release/21.195.0-0-g569e7e5
1212
############################################################################################
1313

1414

garmin_fit_sdk/decoder.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
# Transfer (FIT) Protocol License.
88
###########################################################################################
99
# ****WARNING**** This file is auto-generated! Do NOT edit this file.
10-
# Profile Version = 21.194.0Release
11-
# Tag = production/release/21.194.0-0-g65135fc
10+
# Profile Version = 21.195.0Release
11+
# Tag = production/release/21.195.0-0-g569e7e5
1212
############################################################################################
1313

1414

garmin_fit_sdk/fit.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
# Transfer (FIT) Protocol License.
88
###########################################################################################
99
# ****WARNING**** This file is auto-generated! Do NOT edit this file.
10-
# Profile Version = 21.194.0Release
11-
# Tag = production/release/21.194.0-0-g65135fc
10+
# Profile Version = 21.195.0Release
11+
# Tag = production/release/21.195.0-0-g569e7e5
1212
############################################################################################
1313

1414

garmin_fit_sdk/hr_mesg_utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
# Transfer (FIT) Protocol License.
88
###########################################################################################
99
# ****WARNING**** This file is auto-generated! Do NOT edit this file.
10-
# Profile Version = 21.194.0Release
11-
# Tag = production/release/21.194.0-0-g65135fc
10+
# Profile Version = 21.195.0Release
11+
# Tag = production/release/21.195.0-0-g569e7e5
1212
############################################################################################
1313

1414

garmin_fit_sdk/profile.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@
55
# Transfer (FIT) Protocol License.
66
###########################################################################################
77
# ****WARNING**** This file is auto-generated! Do NOT edit this file.
8-
# Profile Version = 21.194.0Release
9-
# Tag = production/release/21.194.0-0-g65135fc
8+
# Profile Version = 21.195.0Release
9+
# Tag = production/release/21.195.0-0-g569e7e5
1010
############################################################################################
1111

1212

1313
Profile = {
1414
'version': {
1515
'major': 21,
16-
'minor': 194,
16+
'minor': 195,
1717
'patch': 0,
1818
'type': "Release"
1919
},
@@ -22990,6 +22990,7 @@
2299022990
'340': 'peloton',
2299122991
'341': 'carv',
2299222992
'342': 'tissot',
22993+
'345': 'real_velo',
2299322994
'5759': 'actigraphcorp',
2299422995
},
2299522996
'garmin_product': {

garmin_fit_sdk/stream.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
# Transfer (FIT) Protocol License.
1212
###########################################################################################
1313
# ****WARNING**** This file is auto-generated! Do NOT edit this file.
14-
# Profile Version = 21.194.0Release
15-
# Tag = production/release/21.194.0-0-g65135fc
14+
# Profile Version = 21.195.0Release
15+
# Tag = production/release/21.195.0-0-g569e7e5
1616
############################################################################################
1717

1818

0 commit comments

Comments
 (0)