Skip to content

Commit

Permalink
Python 3.13 support (#10)
Browse files Browse the repository at this point in the history
* py3.13

* feature bit

* v0.3.0
  • Loading branch information
dudanov authored Oct 24, 2024
1 parent 3296838 commit cf4d0bb
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

strategy:
matrix:
python-version: ["3.12"]
python-version: ["3.12", "3.13"]

steps:
- uses: actions/checkout@v4
Expand Down
1 change: 1 addition & 0 deletions pyftms/models/realtime_data/treadmill.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,7 @@ class TreadmillData(RealtimeSpeedData):
default=None,
metadata=model_meta(
format="u3",
features_bit=6,
),
)
"""Steps Count"""
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
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"

Expand Down

0 comments on commit cf4d0bb

Please sign in to comment.