-
Notifications
You must be signed in to change notification settings - Fork 66
Expand file tree
/
Copy pathpixi.toml
More file actions
150 lines (131 loc) · 3.75 KB
/
pixi.toml
File metadata and controls
150 lines (131 loc) · 3.75 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
[workspace]
authors = ["Dan Allan <dallan@bnl.gov>"]
channels = ["conda-forge"]
name = "tiled"
platforms = ["linux-64", "osx-arm64", "osx-64", "win-64"]
version = "0.2.2"
[tasks]
[dependencies]
httpx = ">=0.20.0,!=0.23.1"
json-merge-patch = "*"
jsonpatch = "*"
jsonschema = "*"
msgpack-python = ">=1.0.0"
orjson = "*"
platformdirs = "*"
pydantic = ">=2,<3"
pydantic-settings = ">=2, <2.12.0"
pyyaml = "*"
typer = "*"
obstore = ">=0.8.2,<0.9"
[pypi-dependencies]
tiled = { path = ".", editable = true }
[feature.array.dependencies]
dask = "*"
numpy = "*"
[feature.awkward.dependencies]
awkward = ">=2.4.3"
[feature.client.dependencies]
entrypoints = "*"
rich = "*"
stamina = "*"
watchfiles = "*"
websockets = "*"
[feature.compression.dependencies]
# python-blosc2 = "*" # not available on Python < 3.11
lz4 = "*"
zstandard = "*"
[feature.dataframe.dependencies]
dask = "*"
pandas = "*"
pyarrow-all = ">=14.0.1" # includes fix to CVE 2023-47248
[feature.dev.dependencies]
aiohttp = "*"
coverage = "*"
flake8 = "*"
ipython = "*"
ldap3 = "*"
matplotlib = "*"
minio = "*"
mistune = "*"
myst-parser = "*"
numpydoc = "*"
pre-commit = "*"
pytest = "*"
pytest-asyncio = "*"
pytest-mock = "*"
pytest-rerunfailures = "*"
respx = "*"
sphinx = "!=4.1.0,!=4.1.1,!=4.1.2,!=4.2.0"
sphinx-click = "*"
sphinx-copybutton = "*"
sphinx_rtd_theme = "*"
sphinxcontrib-mermaid = "*"
types-cachetools = "*"
[feature.formats.dependencies]
h5netcdf = "*"
h5py = "*"
hdf5plugin = "*"
openpyxl = "*"
pillow = "*"
tifffile = "*"
[feature.server.dependencies]
adbc-driver-manager = "*"
adbc-driver-postgresql = "*"
adbc-driver-sqlite = "*"
aiofiles = "*"
aiosqlite = "*"
alembic = "*"
anyio = "*"
asgi-correlation-id = "*"
asyncpg = "*"
cachetools = "*"
canonicaljson = "*"
dask = "*"
duckdb = "<1.4.0" # https://github.com/bluesky/tiled/issues/1144
fastapi = ">=0.122.0"
jinja2 = "*"
jmespath = "*"
numcodecs = "*"
obstore = "*"
packaging = "*"
prometheus_client = "*"
python-dateutil = "*"
python-jose = "*"
python-multipart = "*"
redis-py = "*"
sqlalchemy = ">=2"
starlette = ">=0.48.0"
uvicorn = "*"
zarr = "*"
[feature.sparse.dependencies]
ndindex = "*"
pyarrow-all = ">=14.0.1" # includes fix to CVE 2023-47248
sparse = ">=0.15.5"
[feature.xarray.dependencies]
dask = "*"
pandas = "*"
pyarrow-all = ">=14.0.1" # includes fix to CVE 2023-47248
xarray = "*"
[feature.py310.dependencies]
python = "3.10.*"
# python-blosc2 is not available for Python 3.10
[feature.py311.dependencies]
python = "3.11.*"
python-blosc2 = "*"
[feature.py312.dependencies]
python = "3.12.*"
python-blosc2 = "*"
[feature.py313.dependencies]
python = "3.13.*"
python-blosc2 = "*"
[environments]
default = { solve-group = "default" }
all = { features = ["array", "awkward", "client", "compression", "dataframe", "formats", "server", "sparse", "xarray"], solve-group = "default" }
client = { features = ["array", "awkward", "client", "compression", "dataframe", "formats", "sparse", "xarray"], solve-group = "default" }
dev = { features = ["array", "awkward", "client", "compression", "dataframe", "formats", "dev", "server", "sparse", "xarray"], solve-group = "default" }
server = { features = ["array", "awkward", "compression", "dataframe", "formats", "server", "sparse", "xarray"], solve-group = "default" }
py310 = { features = ["array", "awkward", "client", "compression", "dataframe", "formats", "dev", "server", "sparse", "xarray", "py310"] }
py311 = { features = ["array", "awkward", "client", "compression", "dataframe", "formats", "dev", "server", "sparse", "xarray", "py311"] }
py312 = { features = ["array", "awkward", "client", "compression", "dataframe", "formats", "dev", "server", "sparse", "xarray", "py312"] }
py313 = { features = ["array", "awkward", "client", "compression", "dataframe", "formats", "dev", "server", "sparse", "xarray", "py313"] }