-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpixi.toml
69 lines (54 loc) · 1.6 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
67
68
69
[project]
name = "rattler-build-conda-compat"
version = "1.3.4"
description = "A package for exposing rattler-build API for conda-smithy"
authors = ["nichmor <[email protected]>"]
channels = ["conda-forge"]
platforms = ["win-64", "linux-64", "osx-64", "osx-arm64"]
[tasks]
build_sdist = "pixi run python -m build --sdist"
[dependencies]
python = ">=3.8"
python-build = ">=1.2.2.post1,<2"
rattler-build = ">=0.18.1,<1"
conda-build = ">=24.3.0,<25.0"
conda = ">=4.2"
pygithub = ">=2,<3"
[pypi-dependencies]
rattler-build-conda-compat = { path = ".", editable = true }
[feature.tests.dependencies]
pytest = ">=8.2.2,<9"
syrupy = ">=4.6.1,<5"
[feature.tests.tasks]
tests = "pytest --doctest-modules"
snapshot_update = "pytest --snapshot-update tests"
[feature.lint.dependencies]
pre-commit = ">=3.7.1,<4"
pre-commit-hooks = ">=4.6.0,<5"
typos = ">=1.23.1,<2"
mypy = ">=1.10.1,<2"
ruff = ">=0.5.0,<0.6"
[feature.lint.tasks]
pre-commit-install = "pre-commit-install"
pre-commit-run = "pre-commit run"
[feature.type-checking.dependencies]
mypy = ">=1.10.1,<2"
types-requests = ">=2.32.0.20240712,<3"
types-pyyaml = ">=6.0.12.20240311,<6.0.13"
[feature.type-checking.tasks]
type-check = "mypy src"
[feature.py312.dependencies]
python = "3.12.*"
[feature.py311.dependencies]
python = "3.11.*"
[feature.py310.dependencies]
python = "3.10.*"
[feature.py39.dependencies]
python = "3.9.*"
[environments]
py312 = { features = ["py312", "tests"] }
py311 = ["py311", "tests"]
py310 = ["py310", "tests"]
py39 = ["py39", "tests"]
lint = { features = ["lint"], no-default-feature = true }
type-checking = { features = ["type-checking"] }