Skip to content

Commit df8b38a

Browse files
authored
chore: drop Python 3.9, add Python 3.13 and 3.14 (#72)
* chore: drop Python 3.9, add Python 3.13 and 3.14 * chore: update lock
1 parent 2d59007 commit df8b38a

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- uses: actions/checkout@v3
1818
- uses: actions/setup-python@v4
1919
with:
20-
python-version: "3.9"
20+
python-version: "3.13"
2121
- uses: pre-commit/action@v3.0.0
2222

2323
# Make sure commit messages follow the conventional commits convention:
@@ -36,10 +36,11 @@ jobs:
3636
fail-fast: false
3737
matrix:
3838
python-version:
39-
- "3.9"
4039
- "3.10"
4140
- "3.11"
4241
- "3.12"
42+
- "3.13"
43+
- "3.14"
4344
os:
4445
- ubuntu-latest
4546
runs-on: ${{ matrix.os }}

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ repos:
4040
rev: v3.19.1
4141
hooks:
4242
- id: pyupgrade
43-
args: [--py39-plus]
43+
args: [--py310-plus]
4444
- repo: https://github.com/astral-sh/ruff-pre-commit
4545
rev: v0.11.8
4646
hooks:

poetry.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ packages = [
2222
"Changelog" = "https://github.com/bluetooth-devices/mopeka-iot-ble/blob/main/CHANGELOG.md"
2323

2424
[tool.poetry.dependencies]
25-
python = "^3.9"
25+
python = "^3.10"
2626
home-assistant-bluetooth = ">=1.3.0"
2727
sensor-state-data = ">=2.2.0"
2828
bluetooth-sensor-state-data = ">=1.5.0"

0 commit comments

Comments
 (0)