-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpixi.toml
More file actions
141 lines (115 loc) · 3.92 KB
/
pixi.toml
File metadata and controls
141 lines (115 loc) · 3.92 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
[workspace]
channels = ["conda-forge"]
name = "sst-rsoxs-profile-collection"
platforms = ["linux-64"]
version = "2026.2.0"
[system-requirements]
libc = "2.17"
[feature.profile.dependencies]
bluesky-base = "==1.15"
bluesky-queueserver = "*"
matplotlib-base= ">=3.10,<4"
networkx = ">=3.4.2,<4"
nslsii = "==0.11.8"
numpy = "*"
ophyd = ">=1.11.0"
pyepics = "*"
python = ">=3.12,<3.13"
semver = ">=3.0.4,<4"
tiled-client = "==0.2.9"
hdf5-external-filter-plugins = ">=0.1.0,<0.2"
blosc-hdf5-plugin = ">=1.0.1,<2"
ipython = ">=9.5.0,<10"
databroker = "==2.0.0"
epicscorelibs = ">=7.0.7.99.1.1,<8"
pyzmq = ">=27.0.2,<28"
bluesky-live = ">=0.0.8,<0.0.9"
bluesky-tiled-plugins = ">=2.0.2"
ophyd-async = ">=0.13.7,<0.14"
#[feature.profile.pypi-dependencies]
#nslsii = { git = "https://github.com/NSLS-II/nslsii.git"}
#[feature.nbs.dependencies]
#pyhyperscattering = ">=0.2.10,<0.3"
[feature.nbs.pypi-dependencies]
# pyfai = "==2026.3.0"
# pyhyperscattering = { git = "https://github.com/usnistgov/PyHyperScattering" }
nbs-core = ">=0.2.0"
nbs-bl = ">=0.3.2"
bluesky-darkframes = {git = "https://github.com/bluesky/bluesky-darkframes", branch = "main" } #>=0.6.0"
slackclient = "*"
sst-base = { git = "https://github.com/nsls-ii-sst/sst-base", rev = "v0.2.4" }
rsoxs = { git = "https://github.com/nsls2/sst-rsoxs", rev = "v0.1.0" }
pvxslibs = ">=1.3.2, <2"
[feature.gui-base.dependencies]
asteval = ">=1.0.6,<2"
bluesky-widgets = ">=0.0.18,<0.0.19"
bluesky-live = ">=0.0.8,<0.0.9"
qt6-wayland = "*"
pyside6 = "*"
[feature.gui.pypi-dependencies]
nbs-livetable = ">=0.1.2"
nbs-gui = ">=0.1.5"
qtconsole = "*"
[feature.viewer.dependencies]
pyqtgraph = ">=0.13.7,<0.14"
[feature.viewer.pypi-dependencies]
nbs-viewer = ">=0.3.4, <0.4"
#nbs-viewer = { git = "https://github.com/xraygui/nbs-viewer", branch="combination"}
[feature.qs.dependencies]
bluesky-queueserver = "*"
bluesky-httpserver = "*"
pytest = "*"
[feature.sim.dependencies]
pyzmq = ">=27.1.0,<28"
[feature.sim.pypi-dependencies]
nbs-sim = ">=0.2.3"
[feature.terminal.dependencies]
ipython = ">=9.5.0"
numpy = ">2"
[feature.pods.dependencies]
podman-compose = "*"
[feature.pods.pypi-dependencies]
nbs-pods = ">=0.2.6"
[feature.qs.tasks]
# This section needs some development work to understand the best way to
# thread the required configuration through both the task and files checked into
# the profile. These will interact with the ansible roles for pushing out the
# systemd units
qs-backend = "start-re-manager --profile-dir=."
qs-server = "uvicorn --host localhost --port 60610 bluesky_httpserver.server:app"
qs = "scripts/qs-start.sh"
qs-dev = "scripts/qs-dev.sh"
qs-connect = "jupyter console --existing"
bsui = "scripts/bsui-start.sh"
zmq-proxy = "bluesky-0MQ-proxy 5577 5578"
qs-pytest = "scripts/test-profile.sh"
[feature.pods.tasks]
pods = "scripts/pods.sh"
pods-start = "scripts/pods.sh start"
pods-stop = "scripts/pods.sh stop"
pods-demo = "scripts/pods.sh demo"
pods-list = "scripts/pods.sh list"
pods-restart = "scripts/pods.sh restart"
pods-build-local = "scripts/build-images.sh"
[feature.pods.activation.env]
PIXI_IMAGE_TAG = "2026.2.0"
[feature.terminal.tasks]
start = "unset SESSION_MANAGER PYTHONPATH && MPLBACKEND=qtagg ipython --profile-dir=."
pvs = "ipython --profile-dir=. -c 'get_pv_types(); exit()'"
sync-experiment = "scripts/sync-experiment.sh"
[feature.gui.tasks]
gui = "scripts/gui-start.sh"
gui-dev = "scripts/gui-dev.sh"
[feature.viewer.tasks]
viewer = "scripts/viewer-start.sh"
viewer-dev = "scripts/viewer-dev.sh"
[feature.sim.tasks]
sim = "scripts/sim-start.sh"
sim-dev = "scripts/sim-dev.sh"
[environments]
terminal = {features=["profile", "terminal"], solve-group="profile"}
qs = {features=["profile", "nbs", "qs"], solve-group="profile"}
gui = {features=["profile", "nbs", "gui-base", "gui"], solve-group="profile"}
viewer = {features=["profile", "gui-base", "viewer"], solve-group="viewer"}
pods = {features=["profile", "nbs", "pods"], solve-group="profile"}
sim = {features=["profile", "sim", "nbs"]}