Skip to content

Commit ea914e2

Browse files
committed
Merge dev dependency group into project dependencies
This pyproject only describes the local dev environment (package = false; HACS ships the component and manifest.json governs runtime requirements), so the runtime/dev split carried no weight. Collapse the dev tooling into a single dependencies list. uv sync installs the same set as before.
1 parent 284c6dd commit ea914e2

2 files changed

Lines changed: 8 additions & 18 deletions

File tree

pyproject.toml

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,26 +4,24 @@ version = "0.0.0"
44
description = "Home Assistant integration for the Run-Chicken automatic chicken door"
55
readme = "README.md"
66
requires-python = ">=3.14.2"
7+
# This project is not a published package: HACS ships custom_components/run_chicken
8+
# directly and Home Assistant resolves the integration's runtime requirements from
9+
# manifest.json. pyproject only describes the local development environment, so the
10+
# integration's imports and the dev tooling live together in one list.
711
dependencies = [
812
"bleak>=2.0.0",
913
"bleak-retry-connector>=4.4.4",
1014
"bluetooth-sensor-state-data>=1.9.0",
1115
"colorlog>=6.10.1",
1216
"crc8>=0.2.1",
1317
"homeassistant>=2026.6.4",
14-
"sensor-state-data>=2.20.0",
15-
]
16-
17-
[dependency-groups]
18-
dev = [
1918
"pip>=21.3.1",
2019
"pre-commit>=4.5.0",
2120
"ruff>=0.15",
21+
"sensor-state-data>=2.20.0",
2222
"ty>=0.0.51",
2323
]
2424

25-
# This is a Home Assistant / HACS integration, not a Python package: HACS ships
26-
# custom_components/run_chicken directly and never installs a wheel. Tell uv not
27-
# to build or install the project itself; it only manages the dev environment.
25+
# Don't build or install the project itself; uv only manages the dev environment.
2826
[tool.uv]
2927
package = false

uv.lock

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

0 commit comments

Comments
 (0)