diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index e06f6c78c0..51102b9d08 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -16,7 +16,7 @@ jobs: strategy: matrix: - python-version: ["3.12"] + python-version: ["3.12", "3.13"] steps: - uses: actions/checkout@v4 diff --git a/pyftms/models/realtime_data/treadmill.py b/pyftms/models/realtime_data/treadmill.py index 6b2dfa426a..2506d01f95 100644 --- a/pyftms/models/realtime_data/treadmill.py +++ b/pyftms/models/realtime_data/treadmill.py @@ -149,6 +149,7 @@ class TreadmillData(RealtimeSpeedData): default=None, metadata=model_meta( format="u3", + features_bit=6, ), ) """Steps Count""" diff --git a/pyproject.toml b/pyproject.toml index e0ec2ecdf1..fda06abc9b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "pyftms" -version = "0.2.28" +version = "0.3.0" description = "PyFTMS - Python Fitness Machine Service client library." authors = ["Sergey V. DUDANOV "] readme = "README.md" [tool.poetry.dependencies] -python = ">=3.12,<3.13" +python = ">=3.12,<3.14" bleak = ">=0.21.0" bleak-retry-connector = "3.6.0"