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
29 changes: 23 additions & 6 deletions .github/dependabot.yaml
Original file line number Diff line number Diff line change
@@ -1,19 +1,36 @@
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
- package-ecosystem: github-actions
directory: /
schedule:
interval: "monthly"
interval: monthly
groups:
ci-dependencies:
patterns:
- "*"
cooldown:
default-days: 7

- package-ecosystem: "uv"
directory: "/"
- package-ecosystem: uv
directory: /
registries:
- python-cloudsmith
Comment thread
shenanigansd marked this conversation as resolved.
schedule:
interval: "monthly"
interval: monthly
groups:
python-dependencies:
patterns:
- "*"
cooldown:
default-days: 7

- package-ecosystem: pre-commit
directory: /
schedule:
interval: monthly
groups:
pre-commit-dependencies:
patterns:
- "*"
cooldown:
default-days: 7
7 changes: 6 additions & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,12 @@ repos:
args: [ --fix=lf ]
- id: end-of-file-fixer

- repo: https://github.com/astral-sh/uv-pre-commit
rev: e99c5b43aa41681e83d439e6ebf3c82d7f3f6426 # frozen: 0.11.6
hooks:
- id: uv-lock

- repo: https://github.com/zizmorcore/zizmor-pre-commit
rev: 7fc963270df722f37707d47ff41265fe8f460822 # frozen: v1.20.0
rev: ea2eb407b4cbce87cf0d502f36578950494f5ac9 # frozen: v1.23.1
hooks:
- id: zizmor
29 changes: 15 additions & 14 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,31 +17,32 @@ documentation = "https://docs.letsbuilda.dev/imsosorry/"

[dependency-groups]
dev = [
"nox>=2025.5.1",
"prek>=0.2.28",
"ruff>=0.12.1",
"mypy>=1.16.1",
"ty>=0.0.12",
"nox>=2026.4.10",
"prek>=0.3.8",
"ruff>=0.15.10",
"mypy>=1.20.0",
"ty>=0.0.29",
]
tests = [
"pytest>=8.4.1",
"coverage>=7.13.1",
"pytest-randomly>=3.16.0",
"pytest-codspeed>=4.0.0",
"pytest>=9.0.3",
"coverage>=7.13.5",
"pytest-randomly>=4.0.1",
"pytest-codspeed>=4.3.0",
]
docs = [
"sphinx",
"furo>=2024.8.6",
"sphinx-autoapi>=3.6.0",
"sphinx>=8.1.0",
"furo>=2025.12.19",
"sphinx-autoapi>=3.8.0",
"releases>=2.1.1",
]

[build-system]
requires = ["setuptools>=77.0.3"]
requires = ["setuptools>=82"]
build-backend = "setuptools.build_meta"

[tool.uv]
required-version = ">=0.9.25"
# Sync with Dependabot's uv version
Comment thread
shenanigansd marked this conversation as resolved.
required-version = ">=0.10.9"

[tool.ruff]
preview = true
Expand Down
Loading
Loading