-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpixi.toml
More file actions
64 lines (57 loc) Β· 1.47 KB
/
pixi.toml
File metadata and controls
64 lines (57 loc) Β· 1.47 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
55
56
57
58
59
60
61
62
63
64
# TODO: move to pyproject.toml when pixi supports it
# https://github.com/prefix-dev/pixi/issues/79
[project]
name = "polarify"
description = "Simplifying conditional Polars Expressions with Python π π»ββοΈ"
authors = [
"Bela Stoyan <bela.stoyan@quantco.com>",
"Pavel Zwerschke <pavel.zwerschke@quantco.com>",
]
channels = ["conda-forge"]
platforms = ["linux-64", "osx-arm64", "osx-64", "win-64"]
[dependencies]
python = ">=3.9"
polars = ">=0.14.24,<2"
[tasks]
postinstall = "pip install --no-build-isolation --no-deps --disable-pip-version-check -e ."
[feature.py39.dependencies]
python = "3.9.*"
[feature.py310.dependencies]
python = "3.10.*"
[feature.py311.dependencies]
python = "3.11.*"
[feature.py312.dependencies]
python = "3.12.*"
[feature.py313.dependencies]
python = "3.13.*"
[feature.pl014.dependencies]
polars = "0.14.*"
[feature.pl1.dependencies]
polars = "1.*"
[host-dependencies]
python = "*"
pip = "*"
hatchling = "*"
[feature.test.dependencies]
pytest = "*"
pytest-md = "*"
pytest-emoji = "*"
hypothesis = "*"
pytest-cov = "*"
[feature.test.tasks]
test = "pytest"
coverage = "pytest --cov=polarify --cov-report=xml"
[feature.lint.dependencies]
pre-commit = "*"
[feature.lint.tasks]
lint = "pre-commit run --all"
[environments]
default = ["test", "py313", "pl1"]
pl014 = ["pl014", "py310", "test"]
pl1 = ["pl1", "py310", "test"]
py39 = ["py39", "test"]
py310 = ["py310", "test"]
py311 = ["py311", "test"]
py312 = ["py312", "test"]
py313 = ["py313", "test"]
lint = ["lint"]