Skip to content
Open
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
10 changes: 10 additions & 0 deletions .github/dependabot.yml
Copy link
Contributor

Choose a reason for hiding this comment

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

Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
version: 2
updates:
- package-ecosystem: "uv"
directory: "/"
schedule:
interval: "daily"
Copy link
Contributor

Choose a reason for hiding this comment

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

Daily is a little bit much imo! i'd rather have it every 2 weeks or even monthly?

open-pull-requests-limit: 25
commit-message:
prefix: "deps"
6 changes: 5 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ build-backend = "hatchling.build"

[tool.hatch.version]
source = "vcs"
# fallback version when building outside a VCS context (dependabot)
fallback-version = "0.0.0"

[project]
name = "dbt-score"
Expand Down Expand Up @@ -31,7 +33,9 @@ dependencies = [
"tomli>=1.1.0; python_version<'3.11'",
]
requires-python = ">=3.10"
readme = "README.md"
# Dependabot’s uv updater doesn’t check out the whole repo.
# It builds a minimal temp dir where the actual README.md file may not be present.
readme = {text = "See the project README on GitHub.", content-type = "text/markdown"}
license = {text = "MIT"}

[project.scripts]
Expand Down