Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
---
version: 2
updates:
- package-ecosystem: "pip"
directory: "/"
schedule:
interval: "daily"
allow:
- dependency-name: "esphome"
Copy link

Copilot AI Dec 20, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The allow configuration restricts Dependabot to only update the "esphome" package, meaning "pillow" (also present in requirements.txt) will not receive automated updates. If this is intentional and pillow should be manually managed, consider adding a comment explaining why. If pillow should also be updated, either remove the allow section entirely or add pillow to the allowed dependencies list.

Suggested change
- dependency-name: "esphome"
- dependency-name: "esphome"
- dependency-name: "pillow"

Copilot uses AI. Check for mistakes.
commit-message:
prefix: "deps"
include: "scope"
labels:
- "dependencies"
- "automated"
open-pull-requests-limit: 5
4 changes: 4 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[project]
Copy link

Copilot AI Dec 20, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

According to PEP 621, the [project] table requires a name field. While some tools may tolerate its absence, this incomplete configuration could cause issues with pip or other Python packaging tools. Consider either adding a minimal project name (e.g., name = "esphome-config-sprinkler") or using a different approach to constrain Python versions for Dependabot, such as configuring it directly in the Dependabot configuration file or using a minimal setup.py.

Suggested change
[project]
[project]
name = "esphome-config-sprinkler"

Copilot uses AI. Check for mistakes.
# ESPHome doesn't allow Python 3.14, which Dependabot attempts to use - constrain
# the Python version correspondingly.
requires-python = ">=3.11.0,<3.14"