-
-
Notifications
You must be signed in to change notification settings - Fork 19.8k
Expand file tree
/
Copy pathpixi.toml
More file actions
159 lines (136 loc) · 4.28 KB
/
pixi.toml
File metadata and controls
159 lines (136 loc) · 4.28 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
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
# Cannot define these sections in pyproject.toml yet due to
# https://github.com/prefix-dev/pixi/issues/1801
[workspace]
channels = ["conda-forge"]
platforms = ["linux-64", "linux-aarch64", "osx-64", "osx-arm64", "win-64"]
name = "pandas"
[dependencies]
# Build dependencies
versioneer = ">=0.29"
cython = ">3.1.0,<4.0.0a0"
meson = ">=1.2.3,<2"
meson-python = ">=0.19.0,<1"
c-compiler = "*"
cxx-compiler = "*"
pip = ">=26"
# Required dependencies
python-dateutil = ">=2.8.2"
[feature.numpy.dependencies]
numpy = ">=1.26.0,<3"
[feature.numpy-nightly.pypi-dependencies]
numpy = { version = "*", index = "https://pypi.anaconda.org/scientific-python-nightly-wheels/simple" }
[target.win.dependencies]
tzdata = ">=2023.3"
[feature.py311.dependencies]
python = "3.11.*"
[feature.py312.dependencies]
python = "3.12.*"
[feature.py313.dependencies]
python = "3.13.*"
[feature.py314.dependencies]
python = "3.14.*"
[feature.py313-freethreading.dependencies]
python-freethreading = "3.13.*"
[feature.test-base.dependencies]
pytest = ">=8.3.4"
pytest-xdist = ">=3.6.1"
hypothesis = ">=6.116.0"
pytest-cov = ">=7.0.0"
[feature.test-network.dependencies]
pytest-localserver = ">=0.9.0"
# TODO: Try changing to boto3 >= instead
boto3 = "==1.40.46"
[feature.test-clipboard.dependencies]
pytest-qt = ">=4.4.0"
pyqt = ">=5.15.9"
qtpy = ">=2.4.2"
[feature.pyarrow.dependencies]
pyarrow = ">=13.0.0"
[feature.pyarrow-nightly.pypi-dependencies]
pyarrow = { version = "*", index = "https://pypi.anaconda.org/scientific-python-nightly-wheels/simple" }
[feature.optional-dependencies.dependencies]
adbc-driver-postgresql = ">=1.2.0"
adbc-driver-sqlite = ">=1.2.0"
beautifulsoup4 = ">=4.12.3"
blosc = ">=1.21.3"
bottleneck = ">=1.4.2"
fastparquet = ">=2024.11.0"
fsspec = ">=2024.10.0"
html5lib = ">=1.1"
gcsfs = ">=2024.10.0"
jinja2 = ">=3.1.5"
lxml = ">=5.3.0"
matplotlib = ">=3.9.3"
numba = ">=0.60.0"
numexpr = ">=2.10.2"
odfpy = ">=1.4.1"
openpyxl = ">=3.1.5"
psycopg2 = ">=2.9.10"
pyiceberg = ">=0.8.1"
pymysql = ">=1.1.1"
pyreadstat = ">=1.2.8"
pytables = ">=3.10.1"
python-calamine = ">=0.3.0"
pytz = ">=2024.2"
pyxlsb = ">=1.0.10"
s3fs = ">=2024.10.0"
scipy = ">=1.14.1"
sqlalchemy = ">=2.0.36"
tabulate = ">=0.9.0"
xarray = ">=2024.10.0"
xlrd = ">=2.0.1"
xlsxwriter = ">=3.2.0"
zstandard = ">=0.23.0"
[feature.minimum-versions]
solve-strategy = "lowest-direct"
[feature.downstream.dependencies]
cftime = "*"
dask = "*"
seaborn = "*"
scikit-learn = "*"
statsmodels = "*"
pandas-datareader = "*"
pyyaml = "*"
xarray = ">=2024.10.0"
[environments]
py311 = { features = ["py311", "numpy", "test-base", "test-clipboard", "test-network", "pyarrow", "optional-dependencies"] }
py312 = { features = ["py312", "numpy", "test-base", "test-clipboard", "test-network", "pyarrow", "optional-dependencies"] }
py313 = { features = ["py313", "numpy", "test-base", "test-clipboard", "test-network", "pyarrow", "optional-dependencies"] }
py314 = { features = ["py314", "numpy", "test-base", "test-clipboard", "test-network", "pyarrow", "optional-dependencies"] }
no-pyarrow = { features = ["py313", "numpy", "test-base", "test-clipboard", "test-network", "optional-dependencies"] }
minimum-versions = { features = ["py311", "numpy", "test-base", "test-clipboard", "test-network", "pyarrow", "optional-dependencies", "minimum-versions"] }
py313-freethreading = { features = ["py313-freethreading", "numpy", "test-base"] }
numpy-nightly = { features = ["py313", "numpy-nightly", "test-base"] }
pyarrow-nightly = { features = ["py313", "numpy", "test-base", "pyarrow-nightly"] }
downstream = { features = ["py313", "numpy", "test-base", "downstream"] }
[tasks]
[tasks.uninstall-pandas]
cmd = "python -m pip uninstall -y pandas || true"
[tasks.build-pandas]
args = [
{ "arg" = "editable", "default" = "" },
{ "arg" = "werror", "default" = "" },
]
cmd = "python -m pip install --verbose {{ editable }} . --no-build-isolation --no-deps {{ werror }}"
depends-on = ["uninstall-pandas"]
[tasks.ci-test-pandas]
args = [
{ "arg" = "pytest_flags" },
{ "arg" = "numprocesses", "default" = "auto" },
{ "arg" = "pytest_target", "default" = "pandas" },
]
cmd = [
"python",
"-m",
"pytest",
"-r",
"fE",
"{{ pytest_flags }}",
"--numprocesses={{ numprocesses }}",
"--dist=worksteal",
"--capture=no",
"--cov=pandas",
"--cov-report=xml",
"--cov-append",
"{{ pytest_target }}",
]