-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (50 loc) · 1.88 KB
/
Copy pathpyproject.toml
File metadata and controls
54 lines (50 loc) · 1.88 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[tool.uv.workspace]
members = ["packages/*"]
[tool.uv]
# Enforce a uv version that supports the friendly-duration form
# (`"7 days"`) in the static pyproject parser. Older uvs silently parse
# the value as an RFC 3339 date, emit a TOML parse warning, and proceed
# *without* the cooldown — bypassing this security policy. With the
# floor below they fail loudly instead.
required-version = ">=0.11.1"
# Supply-chain cooldown: new PyPI uploads must age 7 days before resolution
# picks them up. Mitigates blast radius of compromised dependencies
# (typosquatting, account takeovers). Internal packages we publish ourselves
# are fast-tracked below.
exclude-newer = "7 days"
dev-dependencies = [
"pytest>=7.0.0",
"pytest-asyncio>=0.23.0",
"ruff>=0.13.1",
"ty>=0.0.1a21",
"pre-commit>=3.5.0"
]
override-dependencies = ["prime-tunnel>=0.1.6"]
[tool.uv.exclude-newer-package]
# Fast-track trusted first-party / partner-published packages past the
# 7-day cooldown so they can be picked up the day they release. Most
# entries below are PrimeIntellect-ai OIDC Trusted Publisher packages
# already in this project's `uv tree` closure. The last two (tasksets,
# harnesses) are partner/contributor packages anticipated to enter the
# closure shortly (e.g. via upcoming verifiers releases); they live
# outside the PrimeIntellect-ai org so listing them here is an explicit
# trust decision — review when bumping.
prime = false
prime-sandboxes = false
prime-tunnel = false
prime-evals = false
verifiers = false
tasksets = false
harnesses = false
[tool.uv.sources]
prime-tunnel = { workspace = true }
verifiers = { git = "https://github.com/PrimeIntellect-ai/verifiers.git", tag = "v0.2.0" }
[tool.pytest.ini_options]
pythonpath = [
"packages/prime/src",
"packages/prime-sandboxes/src",
"packages/prime-evals/src",
]
testpaths = [
"packages/*/tests",
]