Skip to content

Commit 1f9aeba

Browse files
committed
Fix dependencies
1 parent 26c0e87 commit 1f9aeba

File tree

4 files changed

+35
-9
lines changed

4 files changed

+35
-9
lines changed

.github/workflows/python_check.yml

+26-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,31 @@ jobs:
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
python-version: ["3.11"]
16+
include:
17+
- home-assistant: "2023.1.0"
18+
python-version: "3.10"
19+
- home-assistant: "2023.2.0"
20+
python-version: "3.10"
21+
- home-assistant: "2023.3.0"
22+
python-version: "3.10"
23+
- home-assistant: "2023.4.0"
24+
python-version: "3.10"
25+
- home-assistant: "2023.5.0"
26+
python-version: "3.10"
27+
- home-assistant: "2023.6.0"
28+
python-version: "3.10"
29+
- home-assistant: "2023.7.0"
30+
python-version: "3.10"
31+
- home-assistant: "2023.7.0"
32+
python-version: "3.11"
33+
- home-assistant: "2023.8.0"
34+
python-version: "3.11"
35+
- home-assistant: "2023.9.0"
36+
python-version: "3.11"
37+
- home-assistant: "2023.10.0"
38+
python-version: "3.11"
39+
- home-assistant: "2023.11.0"
40+
python-version: "3.11"
1741

1842
steps:
1943
- uses: actions/checkout@v3
@@ -23,6 +47,7 @@ jobs:
2347
python-version: ${{ matrix.python-version }}
2448
- name: Install dependencies
2549
run: |
50+
python -m pip install homeassistant~=${{ matrix.home-assistant }}
2651
python -m pip install --upgrade pip
2752
python -m pip install -r requirements.txt
2853
python -m pip install -r requirements_dev.txt

custom_components/speedport/manifest.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@
1212
"iot_class": "local_polling",
1313
"issue_tracker": "https://github.com/Andre0512/speedport/issues",
1414
"requirements": [
15-
"speedport-api==0.5.6"
15+
"speedport-api==0.5.8",
16+
"pytz>=2023.3"
1617
],
1718
"version": "0.3.3"
1819
}

requirements.txt

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
1-
speedport-api==0.5.6
2-
homeassistant~=2023.10
3-
pytz~=2023.3
1+
speedport-api==0.5.8
2+
pytz>=2023.3

requirements_dev.txt

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
black~=23.9
2-
flake8~=6.1
3-
mypy~=1.6
4-
pylint~=3.0
1+
black>=22.12
2+
flake8>=6.0
3+
mypy>=0.991
4+
pylint>=2.15
5+
setuptools>=62.3

0 commit comments

Comments
 (0)