Skip to content

Commit cf4d0bb

Browse files
authored
Python 3.13 support (#10)
* py3.13 * feature bit * v0.3.0
1 parent 3296838 commit cf4d0bb

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/pytest.yml

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

1717
strategy:
1818
matrix:
19-
python-version: ["3.12"]
19+
python-version: ["3.12", "3.13"]
2020

2121
steps:
2222
- uses: actions/checkout@v4

pyftms/models/realtime_data/treadmill.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,7 @@ class TreadmillData(RealtimeSpeedData):
149149
default=None,
150150
metadata=model_meta(
151151
format="u3",
152+
features_bit=6,
152153
),
153154
)
154155
"""Steps Count"""

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[tool.poetry]
22
name = "pyftms"
3-
version = "0.2.28"
3+
version = "0.3.0"
44
description = "PyFTMS - Python Fitness Machine Service client library."
55
authors = ["Sergey V. DUDANOV <sergey.dudanov@gmail.com>"]
66
readme = "README.md"
77

88
[tool.poetry.dependencies]
9-
python = ">=3.12,<3.13"
9+
python = ">=3.12,<3.14"
1010
bleak = ">=0.21.0"
1111
bleak-retry-connector = "3.6.0"
1212

0 commit comments

Comments
 (0)