Skip to content

Commit a91a386

Browse files
authored
Fixed missing requirements and devcontainer build script issues.
1 parent 86ea17d commit a91a386

File tree

4 files changed

+6
-2
lines changed

4 files changed

+6
-2
lines changed

.vscode/settings.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,9 @@
5353
"**/.mypy_cache/**",
5454
"**/.ruff_cache/**"
5555
],
56+
"python.analysis.extraPaths": [
57+
"/usr/local/python/3.13.3/lib/python3.13/site-packages"
58+
],
5659
"files.exclude": {
5760
"build": true,
5861
"dist": true,

.vscode/tasks.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
{
6262
"label": "Install pyalarmdotcomajax (editable)",
6363
"type": "shell",
64-
"command": "pip install --editable ../pyalarmdotcomajax --config-settings editable_mode=strict",
64+
"command": "pip install --editable ../pyalarmdotcomajax",
6565
"group": "build"
6666
}
6767
]

requirements-dev.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ pytest>=8.3.5
33
pytest-asyncio >= 1.0.0
44
tomli>=2.2.1
55
tomli_w>=1.2.0
6-
types-requests==2.32.0.20250602 # Required to prevent dependency conflict with Home Assistant over urllib3
6+
types-requests==2.31.0.6 # Freeze at 2.31.0.6 to prevent dependency conflict with Home Assistant over urllib3
77
types-PyYAML >= 6.0.12.20250516
88
setuptools-scm>=8.3.1
99
pathspec >= 0.12.1

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@ phonenumbers >= 9.0.5
55
typer >= 0.16.0
66
python-dateutil~=2.9.0.post0
77
pyhumps~=3.8.0
8+
rich>=14.0.0

0 commit comments

Comments
 (0)