-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpixi.toml
More file actions
62 lines (49 loc) · 1.79 KB
/
pixi.toml
File metadata and controls
62 lines (49 loc) · 1.79 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
[workspace]
authors = ["Stanley5249 <seer852741@gmail.com>"]
channels = ["https://prefix.dev/conda-forge"]
name = "melops"
platforms = ["win-64", "linux-64"]
version = "0.1.0"
preview = ["pixi-build"]
[activation.env]
RUST_LOG = "info,melops_asr=info,melops=debug,ort=warn"
[tasks]
mel = "cargo run -p melops"
test = "cargo test --workspace"
test-ignored = "cargo test --workspace -- --ignored --no-capture"
[dependencies]
rust = ">=1.92.0,<1.93"
rust-src = ">=1.92.0,<1.93"
python = ">=3.13.10,<3.14"
yt-dlp = ">=2025.12.8,<2026"
ffmpeg = ">=5.1.0,<9.0"
# CPU build only on conda; other EP builds might be on PyPI
# onnxruntime-cpp = ">=1.22.2,<2"
[environments]
openvino = ["openvino"]
export = { features = ["export"], no-default-feature = true }
[feature.openvino.tasks]
mel = "cargo run -p melops -F openvino"
[feature.openvino.dependencies]
libopenvino = ">=2025.4.0,<2025.5.0"
libopenvino-onnx-frontend = ">=2025.4.0,<2025.5.0"
libopenvino-auto-batch-plugin = ">=2025.4.0,<2025.5.0"
libopenvino-auto-plugin = ">=2025.4.0,<2025.5.0"
libopenvino-hetero-plugin = ">=2025.4.0,<2025.5.0"
libopenvino-intel-cpu-plugin = ">=2025.4.0,<2025.5.0"
libopenvino-intel-gpu-plugin = ">=2025.4.0,<2025.5.0"
# Windows does not support NPU plugin
# libopenvino-intel-npu-plugin
[feature.openvino.pypi-dependencies]
onnxruntime-openvino = ">=1.23.0,<1.24.0"
[feature.export.tasks]
export = "python -m melops_export"
[feature.export.dependencies]
melops-export = { path = "melops-export" }
# Pixi-build does not support conda package depends on pypi package directly.
[feature.export.pypi-dependencies]
nemo-toolkit = { version = ">=2.6.0,<2.7", extras = ["asr"] }
torch = { version = ">=2.8.0,<2.9", index = "https://download.pytorch.org/whl/cpu" }
onnxscript = ">=0.5.0,<0.6"
tokenizers = ">=0.21.4,<0.22"
platformdirs = ">=4.5.1,<5"