Skip to content

Commit 4ce89c6

Browse files
authored
Merge pull request #64 from zestysoft/feature-branch
Update dependencies
2 parents f0d95b3 + 69fea9f commit 4ce89c6

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed

.github/workflows/format_and_lint.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@ jobs:
1515
if: github.actor != 'github-actions[bot]'
1616
steps:
1717
- name: Checkout code
18-
uses: actions/checkout@v3
18+
uses: actions/checkout@v4
1919
with:
2020
fetch-depth: 0
2121

2222
- name: Set up Python
23-
uses: actions/setup-python@v4
23+
uses: actions/setup-python@v5
2424
with:
25-
python-version: '3.12'
25+
python-version: '3.13'
2626

2727
- name: Install dependencies
2828
run: |
@@ -58,7 +58,7 @@ jobs:
5858
5959
- name: Push changes
6060
if: steps.commit_changes.outputs.changes == 'true'
61-
uses: ad-m/github-push-action@v0.6.0
61+
uses: ad-m/github-push-action@v0.8.0
6262
with:
6363
github_token: ${{ secrets.GITHUB_TOKEN }}
6464
branch: ${{ steps.determine_branch.outputs.branch }}
@@ -69,14 +69,14 @@ jobs:
6969

7070
strategy:
7171
matrix:
72-
python-version: ["3.12"]
72+
python-version: ["3.13"]
7373

7474
steps:
7575
- name: Checkout repository
7676
uses: actions/checkout@v4
7777

7878
- name: Set up Python ${{ matrix.python-version }}
79-
uses: actions/setup-python@v4
79+
uses: actions/setup-python@v5
8080
with:
8181
python-version: ${{ matrix.python-version }}
8282

.github/workflows/release-on-version-bump.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
PREV_VERSION: ''
1717
steps:
1818
- name: Checkout code
19-
uses: actions/checkout@v3
19+
uses: actions/checkout@v4
2020
with:
2121
fetch-depth: 0 # Fetch all history
2222

.python-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.12
1+
3.13

custom_components/sensus_analytics/manifest.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"domain": "sensus_analytics",
33
"name": "Sensus Analytics Integration",
4-
"version": "1.7.0",
4+
"version": "1.7.1",
55
"documentation": "https://github.com/zestysoft/sensus_analytics_integration",
66
"dependencies": [],
77
"codeowners": ["@zestysoft"],
88
"requirements": [
9-
"aiohttp>=3.8.1",
10-
"homeassistant>=2024.11.3"
9+
"aiohttp>=3.12.14",
10+
"homeassistant>=2025.12.0"
1111
],
1212
"iot_class": "cloud_polling",
1313
"config_flow": true

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
aiohttp==3.12.14
2-
homeassistant==2024.11.3
1+
aiohttp==3.13.2
2+
homeassistant==2025.12.0

0 commit comments

Comments
 (0)