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

Commit 26d2f33

Browse files
committed
ci: Exempt internal Apify packages from install cooldown
1 parent 7edfa75 commit 26d2f33

2 files changed

Lines changed: 11 additions & 1 deletion

File tree

pyproject.toml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,9 +117,15 @@ python-version = "3.10"
117117
include = ["src", "tests", "scripts", "docs", "website"]
118118

119119
[tool.uv]
120-
# Minimal defense against supply-chain atatcks.
120+
# Minimal defense against supply-chain attacks.
121121
exclude-newer = "24 hours"
122122

123+
[tool.uv.exclude-newer-package]
124+
# Allow internal Apify packages to install immediately.
125+
apify-client = false
126+
apify_fingerprint_datapoints = false
127+
crawlee = false
128+
123129
# Run tasks with: uv run poe <task>
124130
[tool.poe.tasks]
125131
clean = "rm -rf .coverage .pytest_cache .ruff_cache .ty_cache build dist htmlcov"

renovate.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,10 @@
2121
"automerge": true,
2222
"automergeType": "branch"
2323
},
24+
{
25+
"matchPackageNames": ["@apify/*", "@crawlee/*", "apify", "apify-client", "apify-shared", "apify-fingerprint-datapoints", "crawlee", "got-scraping"],
26+
"minimumReleaseAge": "0 days"
27+
},
2428
{
2529
"matchUpdateTypes": ["lockFileMaintenance"],
2630
"minimumReleaseAgeBehaviour": "timestamp-optional"

0 commit comments

Comments
 (0)