-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpixi.toml
More file actions
44 lines (39 loc) · 930 Bytes
/
pixi.toml
File metadata and controls
44 lines (39 loc) · 930 Bytes
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
[workspace]
channels = ["conda-forge"]
name = "chxtools"
platforms = ["linux-64", "osx-64", "osx-arm64"]
version = "2026.3.0"
[feature.base.dependencies]
numpy = "*"
pyepics = "*"
python = ">=3.12,<3.13"
databroker = "==2.0.0b68"
eiger-io = "*"
matplotlib = "*"
pymongo = "*"
scikit-beam = "*"
scikit-image = "*"
scipy = "*"
[feature.terminal.dependencies]
ipython = ">=9.5.0"
pyside6 = "*"
numpy = ">2"
[feature.dev.dependencies]
pre-commit = "*"
ruff = "*"
black = "*"
isort = "*"
prettier = "*"
nbstripout = "*"
[feature.dev.tasks]
pre-commit-install = "pre-commit install"
pre-commit-run = "pre-commit run --all-files"
pre-commit-update = "pre-commit autoupdate"
lint = "ruff check ."
format = "ruff format ."
lint-fix = "ruff check --fix ."
black-format = "black ."
isort-fix = "isort ."
[environments]
terminal = {features=["base", "terminal"], solve-group="profile"}
dev = {features=["dev"], no-default-feature = true}