forked from prefix-dev/pixi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpixi.toml
66 lines (56 loc) · 1.56 KB
/
pixi.toml
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
55
56
57
58
59
60
61
62
63
64
65
66
[project]
name = "pixi"
description = "Package management made easy!"
authors = [
"Wolf Vollprecht <[email protected]>",
"Bas Zalmstra <[email protected]>",
"Tim de Jager <[email protected]>",
"Ruben Arts <[email protected]>",
]
channels = ["conda-forge"]
platforms = ["linux-64", "win-64", "osx-64", "osx-arm64"]
[tasks]
build = "cargo build --release"
install = "cargo install --path . --locked"
test = "cargo test"
test-all = "cargo test --all-features"
lint = "pre-commit run --all"
bump = "tbump --only-patch"
[dependencies]
# Dev dependencies
pre-commit = "~=3.3.0"
# Needed for building rattler
rust = "~=1.77.0"
openssl = "3.*"
pkg-config = "0.29.*"
git = "2.42.0.*"
# Needed for the citation
cffconvert = ">=2.0.0,<2.1"
tbump = ">=6.9.0,<6.10"
[target.linux-64.dependencies]
compilers = ">=1.6.0"
[feature.docs.dependencies]
mkdocs = "1.5.3.*"
mkdocs-material = ">=9.5.16"
mdx_truly_sane_lists = ">=1.3,<2"
pillow = ">=9.4.0"
cairosvg = "2.7.1.*"
mike = "2.0.0.*"
mkdocs-redirects = ">=1.2.1,<2"
[feature.docs.tasks]
build-docs = "mkdocs build --strict"
docs = "mkdocs serve"
deploy-latest = "mike deploy --push --update-aliases $RELEASE_VERSION latest"
deploy-dev = "mike deploy --push dev devel"
[feature.schema.tasks]
generate-schema = { cmd = "python model.py > schema.json", cwd = "schema" }
test-schema = { cmd = "pytest -s", depends_on = "generate-schema", cwd = "schema" }
[feature.schema.dependencies]
python = ">=3.11"
pytest = ">=8.0.2,<8.1"
jsonschema = "*"
pydantic = ">=2.6.3,<2.7"
pyyaml = ">=6.0.1,<6.1"
[environments]
docs = ["docs"]
schema = ["schema"]