-
Notifications
You must be signed in to change notification settings - Fork 9
/
pixi.toml
123 lines (106 loc) · 2.93 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
[project]
name = "plateau"
channels = ["conda-forge"]
platforms = ["osx-arm64", "osx-64", "linux-64", "linux-aarch64", "win-64"]
[tasks]
postinstall = "pip install --no-build-isolation --no-deps --disable-pip-version-check -e ."
[dependencies]
python = ">=3.10"
dask = ">=2022.5.1"
decorator = "*"
msgpack-python = ">=0.5.2"
numpy = ">1.23,<2"
pandas = ">=2"
pyarrow = ">=15"
simplejson = "*"
minimalkv = ">=1.4.2"
toolz = "*"
urlquote = ">=1.1.3"
zstandard = "*"
attrs = "*"
click = "*"
prompt-toolkit = "*"
pyyaml = "*"
[host-dependencies]
pip = "*"
setuptools = ">=61"
setuptools-scm = "*"
wheel = "*"
[feature.test.dependencies]
pytest = ">=6"
pytest-cov = "*"
pytest-mock = "*"
pytest-xdist = ">=3.6.1,<4"
freezegun = "*"
mypy = "*"
distributed = ">=2022.5.1"
pytz = "*"
cloudpickle = "*"
hypothesis = "*"
[feature.test.tasks]
test = "pytest"
test-coverage = "pytest --cov=plateau --cov-report=xml --cov-report=term-missing"
[feature.build.dependencies]
python-build = "*"
twine = "*"
[feature.build.tasks]
build-wheel = "python -m build --no-isolation ."
check-wheel = "twine check dist/*"
[feature.lint.dependencies]
pre-commit = "*"
insert-license-header = "*"
docformatter = "*"
ruff = "*"
prettier = "*"
taplo = "*"
pre-commit-hooks = "*"
typos = "*"
[feature.lint.tasks]
pre-commit-install = "pre-commit install"
pre-commit-run = "pre-commit run -a"
[feature.benchmark.dependencies]
asv = "*"
libmambapy = "*"
conda = "*"
[feature.docs.dependencies]
sphinx = "*"
jinja2 = "<3.1"
sphinx_rtd_theme = "*"
IPython = "*"
[feature.docs.tasks]
# Run task `postinstall` before building docs in docs environment
docs = "cd docs && make html"
readthedocs = "rm -rf $READTHEDOCS_OUTPUT/html && cp -r docs/_build/html $READTHEDOCS_OUTPUT/html"
[feature.py310.dependencies]
python = "3.10.*"
[feature.py311.dependencies]
python = "3.11.*"
[feature.py312.dependencies]
python = "3.12.*"
# We only support the four most recent versions of pyarrow
[feature.pyarrow15_0_2.dependencies]
pyarrow = "=15.0.2"
[feature.pyarrow16_1.dependencies]
pyarrow = "=16.1.0"
[feature.pyarrow17_0.dependencies]
pyarrow = "=17.0.0"
[feature.pyarrow18_1.dependencies]
pyarrow = "=18.1.0"
[environments]
default = ["test"]
py310-pyarrow15-0-2 = ["py310", "pyarrow15_0_2", "test"]
py310-pyarrow16-1 = ["py310", "pyarrow16_1", "test"]
py310-pyarrow17-0 = ["py310", "pyarrow17_0", "test"]
py310-pyarrow18-1 = ["py310", "pyarrow18_1", "test"]
py311-pyarrow15-0-2 = ["py311", "pyarrow15_0_2", "test"]
py311-pyarrow16-1 = ["py311", "pyarrow16_1", "test"]
py311-pyarrow17-0 = ["py311", "pyarrow17_0", "test"]
py311-pyarrow18-1 = ["py311", "pyarrow18_1", "test"]
py312-pyarrow15-0-2 = ["py312", "pyarrow15_0_2", "test"]
py312-pyarrow16-1 = ["py312", "pyarrow16_1", "test"]
py312-pyarrow17-0 = ["py312", "pyarrow17_0", "test"]
py312-pyarrow18-1 = ["py312", "pyarrow18_1", "test"]
build = ["build"]
benchmark = ["benchmark", "test"]
docs = ["docs", "test"]
lint = { features = ["lint"], no-default-feature = true }