-
Notifications
You must be signed in to change notification settings - Fork 3
/
pixi.toml
73 lines (66 loc) Β· 1.79 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
# 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 <[email protected]>", "Pavel Zwerschke <[email protected]>"]
channels = ["conda-forge"]
platforms = ["linux-64", "osx-arm64", "osx-64", "win-64"]
[dependencies]
python = ">=3.9"
polars = ">=0.14.24,<0.21"
[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.pl014.dependencies]
polars = "0.14.*"
[feature.pl015.dependencies]
polars = "0.15.*"
[feature.pl016.dependencies]
polars = "0.16.*"
[feature.pl017.dependencies]
polars = "0.17.*"
[feature.pl018.dependencies]
polars = "0.18.*"
[feature.pl019.dependencies]
polars = "0.19.*"
[feature.pl020.dependencies]
polars = "0.20.*"
[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"]
pl014 = ["pl014", "py310", "test"]
pl015 = ["pl015", "py310", "test"]
pl016 = ["pl016", "py310", "test"]
pl017 = ["pl017", "py310", "test"]
pl018 = ["pl018", "py310", "test"]
pl019 = ["pl019", "py310", "test"]
pl020 = ["pl020", "py310", "test"]
py39 = ["py39", "test"]
py310 = ["py310", "test"]
py311 = ["py311", "test"]
py312 = ["py312", "test"]
lint = ["lint"]