Skip to content
This repository was archived by the owner on Aug 3, 2026. It is now read-only.

Commit 7edfa75

Browse files
committed
Add minimal package age and rennovate update
1 parent 1f96468 commit 7edfa75

2 files changed

Lines changed: 13 additions & 2 deletions

File tree

pyproject.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,10 @@ python-version = "3.10"
116116
[tool.ty.src]
117117
include = ["src", "tests", "scripts", "docs", "website"]
118118

119+
[tool.uv]
120+
# Minimal defense against supply-chain atatcks.
121+
exclude-newer = "24 hours"
122+
119123
# Run tasks with: uv run poe <task>
120124
[tool.poe.tasks]
121125
clean = "rm -rf .coverage .pytest_cache .ruff_cache .ty_cache build dist htmlcov"

renovate.json

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88
"lockFileMaintenance": {
99
"enabled": true,
1010
"automerge": true,
11-
"automergeType": "branch"
11+
"automergeType": "pr",
12+
"schedule": ["* 0-5 * * 1"]
1213
},
1314
"packageRules": [
1415
{
@@ -19,7 +20,13 @@
1920
"groupSlug": "dev-dependencies",
2021
"automerge": true,
2122
"automergeType": "branch"
23+
},
24+
{
25+
"matchUpdateTypes": ["lockFileMaintenance"],
26+
"minimumReleaseAgeBehaviour": "timestamp-optional"
2227
}
2328
],
24-
"schedule": ["before 7am every weekday"]
29+
"minimumReleaseAge": "1 day",
30+
"internalChecksFilter": "strict",
31+
"schedule": ["* 0-5 * * 2-5"]
2532
}

0 commit comments

Comments
 (0)