Skip to content
This repository was archived by the owner on Jul 28, 2024. It is now read-only.

Commit d12a0c2

Browse files
authored
Support for Home Assistant 2023.8.1 - Bump dependencies (#18)
* Bump dependencies * Deprecate python3.10 * Bump more dependencies
1 parent 82b19c6 commit d12a0c2

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

.github/workflows/lint.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Set up Python
1818
uses: actions/setup-python@v4
1919
with:
20-
python-version: "3.10"
20+
python-version: "3.11"
2121
cache: pip
2222

2323
- name: Install requirements

.github/workflows/pytest.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
python-version: ["3.10", "3.11"]
14+
python-version: ["3.11"]
1515

1616
steps:
1717
- uses: actions/checkout@v3

.ruff.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# The contents of this file is based on https://github.com/home-assistant/core/blob/dev/pyproject.toml
22

3-
target-version = "py310"
3+
target-version = "py311"
44

55
select = [
66
"B007", # Loop control variable {name} not used within loop body

custom_components/matrix/manifest.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
"iot_class": "cloud_push",
77
"issue_tracker": "https://github.com/PaarthShah/matrix-nio-hacs/issues",
88
"loggers": ["matrix_client"],
9-
"requirements": ["matrix-nio==0.21.2", "Pillow==10.0.0"],
10-
"version": "v1.0.2"
9+
"requirements": ["matrix-nio==0.21.2", "Pillow>=10.0.0"],
10+
"version": "v1.0.3"
1111
}

hacs.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "Matrix Nio",
33
"filename": "matrix-nio-hacs.zip",
44
"hide_default_branch": true,
5-
"homeassistant": "2023.6.0",
5+
"homeassistant": "2023.8.1",
66
"render_readme": true,
77
"zip_release": true
88
}

requirements.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
colorlog==6.7.0
2-
homeassistant>=2023.7.2
2+
homeassistant==2023.8.1
33
pip>=21.0,<23.2
4-
ruff==0.0.278
4+
ruff==0.0.282
55
matrix-nio==0.21.2
6-
Pillow==10.0.0
6+
Pillow>=10.0.0

requirements_test.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
-r requirements.txt
22
pytest>=7.3.1
3-
pytest-homeassistant-custom-component==0.13.44
3+
pytest-homeassistant-custom-component==0.13.50

0 commit comments

Comments
 (0)