From 994ce213653210e1579c1678a0359809c105369c Mon Sep 17 00:00:00 2001 From: jedzill4 Date: Wed, 25 Feb 2026 14:21:19 -0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=8C=20chore(deps):=20pin=20dependences?= =?UTF-8?q?=20to=20python=203.11=20to=203.13=20due=20dependency=20resoluti?= =?UTF-8?q?on=20matrix?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 51 +- pyproject.toml | 7 +- uv.lock | 7736 ++++-------------------------------------------- 3 files changed, 694 insertions(+), 7100 deletions(-) diff --git a/README.md b/README.md index f97ba06..d907b9a 100644 --- a/README.md +++ b/README.md @@ -72,15 +72,27 @@ Go to `chrome-extension` for instructions. #### Optional Dependencies -| Optional | `pip install` | -|-----------|-------------| -| **Windows/Linux optimizations** | `faster-whisper` | -| **Apple Silicon optimizations** | `mlx-whisper` | -| **Voxtral (multilingual, auto-detect)** | `transformers torch` (or use built-in `voxtral-mlx` on Apple Silicon) | -| **Translation** | `nllw` | -| **Speaker diarization** | `git+https://github.com/NVIDIA/NeMo.git@main#egg=nemo_toolkit[asr]` | -| OpenAI API | `openai` | -| *[Not recommanded]* Speaker diarization with Diart | `diart` | +| Feature | `uv sync` | `pip install -e` | +|-----------|-------------|-------------| +| **CPU PyTorch stack** | `uv sync --extra cpu` | `pip install -e ".[cpu]"` | +| **CUDA 12.9 PyTorch stack** | `uv sync --extra gpu-cu129` | `pip install -e ".[gpu-cu129]"` | +| **Translation** | `uv sync --extra translation` | `pip install -e ".[translation]"` | +| **Sentence tokenizer** | `uv sync --extra sentence_tokenizer` | `pip install -e ".[sentence_tokenizer]"` | +| **Voxtral (HF backend)** | `uv sync --extra voxtral-hf` | `pip install -e ".[voxtral-hf]"` | +| **Speaker diarization (Sortformer / NeMo)** | `uv sync --extra diarization-sortformer` | `pip install -e ".[diarization-sortformer]"` | +| *[Not recommended]* Speaker diarization with Diart | `uv sync --extra diarization-diart` | `pip install -e ".[diarization-diart]"` | + +Supported GPU profiles: + +```bash +# Profile A: Sortformer diarization +uv sync --extra gpu-cu129 --extra diarization-sortformer + +# Profile B: Voxtral HF + translation +uv sync --extra gpu-cu129 --extra voxtral-hf --extra translation +``` + +`voxtral-hf` and `diarization-sortformer` are intentionally incompatible extras and must be installed in separate environments. See **Parameters & Configuration** below on how to use them. @@ -279,7 +291,7 @@ docker run --gpus all -p 8000:8000 --name wlk wlk **CPU only:** ```bash -docker build -f Dockerfile.cpu -t wlk . +docker build -f Dockerfile.cpu -t wlk --build-arg EXTRAS="cpu" . docker run -p 8000:8000 --name wlk wlk ``` @@ -291,6 +303,18 @@ docker run -p 8000:8000 --name wlk wlk docker run --gpus all -p 8000:8000 --name wlk wlk --model large-v3 --language fr ``` +**Compose (recommended for cache + token wiring):** +```bash +# GPU Sortformer profile +docker compose up --build wlk-gpu-sortformer + +# GPU Voxtral profile +docker compose up --build wlk-gpu-voxtral + +# CPU service +docker compose up --build wlk-cpu +``` + ### Memory Requirements - **Large models**: Ensure your Docker runtime has sufficient memory allocated @@ -298,9 +322,10 @@ docker run --gpus all -p 8000:8000 --name wlk wlk --model large-v3 --language fr #### Customization - `--build-arg` Options: - - `EXTRAS="translation"` - Add extras to the image's installation (no spaces). Remember to set necessary container options! - - `HF_PRECACHE_DIR="./.cache/"` - Pre-load a model cache for faster first-time start - - `HF_TKN_FILE="./token"` - Add your Hugging Face Hub access token to download gated models + - `EXTRAS="gpu-cu129,diarization-sortformer"` - GPU Sortformer profile extras. + - `EXTRAS="gpu-cu129,voxtral-hf,translation"` - GPU Voxtral profile extras. + - `EXTRAS="cpu,diarization-diart,translation"` - CPU profile extras. + - Hugging Face cache + token are configured in `compose.yml` using a named volume and `HF_TKN_FILE` (default: `./token`). ## Testing & Benchmarks diff --git a/pyproject.toml b/pyproject.toml index 763fd56..5e52648 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,19 +9,14 @@ description = "Real-time speech-to-text with speaker diarization using Whisper" readme = "README.md" authors = [{ name = "Quentin Fuxa" }] license = { file = "LICENSE" } -requires-python = ">=3.9, <3.14" -# requires-python = ">=3.12, <3.13" +requires-python = ">=3.11, <3.14" classifiers = [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", - "Programming Language :: Python :: 3.9", - "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", - "Programming Language :: Python :: 3.14", - "Programming Language :: Python :: 3.15", "Topic :: Scientific/Engineering :: Artificial Intelligence", "Topic :: Multimedia :: Sound/Audio :: Speech", ] diff --git a/uv.lock b/uv.lock index 8618da0..af7a45e 100644 --- a/uv.lock +++ b/uv.lock @@ -1,97 +1,61 @@ version = 1 revision = 3 -requires-python = ">=3.9, <3.14" +requires-python = ">=3.11, <3.14" resolution-markers = [ "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.11.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.10.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version >= '3.13' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.11.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.10.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", "python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", ] conflicts = [[ { package = "whisperlivekit", extra = "cpu" }, @@ -115,15 +79,15 @@ name = "accelerate" version = "1.12.0" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "huggingface-hub", version = "0.36.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "numpy", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "packaging", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "psutil", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "pyyaml", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "safetensors", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "torch", version = "2.10.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.10.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(python_full_version >= '3.10' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.10.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(python_full_version >= '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "huggingface-hub", version = "0.36.2", source = { registry = "https://pypi.org/simple" } }, + { name = "numpy" }, + { name = "packaging" }, + { name = "psutil" }, + { name = "pyyaml" }, + { name = "safetensors" }, + { name = "torch", version = "2.10.0", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "torch", version = "2.10.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.10.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/4a/8e/ac2a9566747a93f8be36ee08532eb0160558b07630a081a6056a9f89bf1d/accelerate-1.12.0.tar.gz", hash = "sha256:70988c352feb481887077d2ab845125024b2a137a5090d6d7a32b57d03a45df6", size = 398399, upload-time = "2025-11-21T11:27:46.973Z" } wheels = [ @@ -146,7 +110,6 @@ source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "aiohappyeyeballs" }, { name = "aiosignal" }, - { name = "async-timeout", marker = "python_full_version < '3.11' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, { name = "attrs" }, { name = "frozenlist" }, { name = "multidict" }, @@ -155,23 +118,6 @@ dependencies = [ ] sdist = { url = "https://files.pythonhosted.org/packages/50/42/32cf8e7704ceb4481406eb87161349abb46a57fee3f008ba9cb610968646/aiohttp-3.13.3.tar.gz", hash = "sha256:a949eee43d3782f2daae4f4a2819b2cb9b0c5d3b7f7a927067cc84dafdbb9f88", size = 7844556, upload-time = "2026-01-03T17:33:05.204Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/36/d6/5aec9313ee6ea9c7cde8b891b69f4ff4001416867104580670a31daeba5b/aiohttp-3.13.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:d5a372fd5afd301b3a89582817fdcdb6c34124787c70dbcc616f259013e7eef7", size = 738950, upload-time = "2026-01-03T17:29:13.002Z" }, - { url = "https://files.pythonhosted.org/packages/68/03/8fa90a7e6d11ff20a18837a8e2b5dd23db01aabc475aa9271c8ad33299f5/aiohttp-3.13.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:147e422fd1223005c22b4fe080f5d93ced44460f5f9c105406b753612b587821", size = 496099, upload-time = "2026-01-03T17:29:15.268Z" }, - { url = "https://files.pythonhosted.org/packages/d2/23/b81f744d402510a8366b74eb420fc0cc1170d0c43daca12d10814df85f10/aiohttp-3.13.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:859bd3f2156e81dd01432f5849fc73e2243d4a487c4fd26609b1299534ee1845", size = 491072, upload-time = "2026-01-03T17:29:16.922Z" }, - { url = "https://files.pythonhosted.org/packages/d5/e1/56d1d1c0dd334cd203dd97706ce004c1aa24b34a813b0b8daf3383039706/aiohttp-3.13.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:dca68018bf48c251ba17c72ed479f4dafe9dbd5a73707ad8d28a38d11f3d42af", size = 1671588, upload-time = "2026-01-03T17:29:18.539Z" }, - { url = "https://files.pythonhosted.org/packages/5f/34/8d7f962604f4bc2b4e39eb1220dac7d4e4cba91fb9ba0474b4ecd67db165/aiohttp-3.13.3-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:fee0c6bc7db1de362252affec009707a17478a00ec69f797d23ca256e36d5940", size = 1640334, upload-time = "2026-01-03T17:29:21.028Z" }, - { url = "https://files.pythonhosted.org/packages/94/1d/fcccf2c668d87337ddeef9881537baee13c58d8f01f12ba8a24215f2b804/aiohttp-3.13.3-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:c048058117fd649334d81b4b526e94bde3ccaddb20463a815ced6ecbb7d11160", size = 1722656, upload-time = "2026-01-03T17:29:22.531Z" }, - { url = "https://files.pythonhosted.org/packages/aa/98/c6f3b081c4c606bc1e5f2ec102e87d6411c73a9ef3616fea6f2d5c98c062/aiohttp-3.13.3-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:215a685b6fbbfcf71dfe96e3eba7a6f58f10da1dfdf4889c7dd856abe430dca7", size = 1817625, upload-time = "2026-01-03T17:29:24.276Z" }, - { url = "https://files.pythonhosted.org/packages/2c/c0/cfcc3d2e11b477f86e1af2863f3858c8850d751ce8dc39c4058a072c9e54/aiohttp-3.13.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:de2c184bb1fe2cbd2cefba613e9db29a5ab559323f994b6737e370d3da0ac455", size = 1672604, upload-time = "2026-01-03T17:29:26.099Z" }, - { url = "https://files.pythonhosted.org/packages/1e/77/6b4ffcbcac4c6a5d041343a756f34a6dd26174ae07f977a64fe028dda5b0/aiohttp-3.13.3-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:75ca857eba4e20ce9f546cd59c7007b33906a4cd48f2ff6ccf1ccfc3b646f279", size = 1554370, upload-time = "2026-01-03T17:29:28.121Z" }, - { url = "https://files.pythonhosted.org/packages/f2/f0/e3ddfa93f17d689dbe014ba048f18e0c9f9b456033b70e94349a2e9048be/aiohttp-3.13.3-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:81e97251d9298386c2b7dbeb490d3d1badbdc69107fb8c9299dd04eb39bddc0e", size = 1642023, upload-time = "2026-01-03T17:29:30.002Z" }, - { url = "https://files.pythonhosted.org/packages/eb/45/c14019c9ec60a8e243d06d601b33dcc4fd92379424bde3021725859d7f99/aiohttp-3.13.3-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:c0e2d366af265797506f0283487223146af57815b388623f0357ef7eac9b209d", size = 1649680, upload-time = "2026-01-03T17:29:31.782Z" }, - { url = "https://files.pythonhosted.org/packages/9c/fd/09c9451dae5aa5c5ed756df95ff9ef549d45d4be663bafd1e4954fd836f0/aiohttp-3.13.3-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:4e239d501f73d6db1522599e14b9b321a7e3b1de66ce33d53a765d975e9f4808", size = 1692407, upload-time = "2026-01-03T17:29:33.392Z" }, - { url = "https://files.pythonhosted.org/packages/a6/81/938bc2ec33c10efd6637ccb3d22f9f3160d08e8f3aa2587a2c2d5ab578eb/aiohttp-3.13.3-cp310-cp310-musllinux_1_2_riscv64.whl", hash = "sha256:0db318f7a6f065d84cb1e02662c526294450b314a02bd9e2a8e67f0d8564ce40", size = 1543047, upload-time = "2026-01-03T17:29:34.855Z" }, - { url = "https://files.pythonhosted.org/packages/f7/23/80488ee21c8d567c83045e412e1d9b7077d27171591a4eb7822586e8c06a/aiohttp-3.13.3-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:bfc1cc2fe31a6026a8a88e4ecfb98d7f6b1fec150cfd708adbfd1d2f42257c29", size = 1715264, upload-time = "2026-01-03T17:29:36.389Z" }, - { url = "https://files.pythonhosted.org/packages/e2/83/259a8da6683182768200b368120ab3deff5370bed93880fb9a3a86299f34/aiohttp-3.13.3-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:af71fff7bac6bb7508956696dce8f6eec2bbb045eceb40343944b1ae62b5ef11", size = 1657275, upload-time = "2026-01-03T17:29:38.162Z" }, - { url = "https://files.pythonhosted.org/packages/3f/4f/2c41f800a0b560785c10fb316216ac058c105f9be50bdc6a285de88db625/aiohttp-3.13.3-cp310-cp310-win32.whl", hash = "sha256:37da61e244d1749798c151421602884db5270faf479cf0ef03af0ff68954c9dd", size = 434053, upload-time = "2026-01-03T17:29:40.074Z" }, - { url = "https://files.pythonhosted.org/packages/80/df/29cd63c7ecfdb65ccc12f7d808cac4fa2a19544660c06c61a4a48462de0c/aiohttp-3.13.3-cp310-cp310-win_amd64.whl", hash = "sha256:7e63f210bc1b57ef699035f2b4b6d9ce096b5914414a49b0997c839b2bd2223c", size = 456687, upload-time = "2026-01-03T17:29:41.819Z" }, { url = "https://files.pythonhosted.org/packages/f1/4c/a164164834f03924d9a29dc3acd9e7ee58f95857e0b467f6d04298594ebb/aiohttp-3.13.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:5b6073099fb654e0a068ae678b10feff95c5cae95bbfcbfa7af669d361a8aa6b", size = 746051, upload-time = "2026-01-03T17:29:43.287Z" }, { url = "https://files.pythonhosted.org/packages/82/71/d5c31390d18d4f58115037c432b7e0348c60f6f53b727cad33172144a112/aiohttp-3.13.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:1cb93e166e6c28716c8c6aeb5f99dfb6d5ccf482d29fe9bf9a794110e6d0ab64", size = 499234, upload-time = "2026-01-03T17:29:44.822Z" }, { url = "https://files.pythonhosted.org/packages/0e/c9/741f8ac91e14b1d2e7100690425a5b2b919a87a5075406582991fb7de920/aiohttp-3.13.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:28e027cf2f6b641693a09f631759b4d9ce9165099d2b5d92af9bd4e197690eea", size = 494979, upload-time = "2026-01-03T17:29:46.405Z" }, @@ -223,23 +169,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/e8/35/4a3daeb8b9fab49240d21c04d50732313295e4bd813a465d840236dd0ce1/aiohttp-3.13.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:8057c98e0c8472d8846b9c79f56766bcc57e3e8ac7bfd510482332366c56c591", size = 1721120, upload-time = "2026-01-03T17:31:12.575Z" }, { url = "https://files.pythonhosted.org/packages/bc/9f/d643bb3c5fb99547323e635e251c609fbbc660d983144cfebec529e09264/aiohttp-3.13.3-cp313-cp313-win32.whl", hash = "sha256:1449ceddcdbcf2e0446957863af03ebaaa03f94c090f945411b61269e2cb5daf", size = 427383, upload-time = "2026-01-03T17:31:14.382Z" }, { url = "https://files.pythonhosted.org/packages/4e/f1/ab0395f8a79933577cdd996dd2f9aa6014af9535f65dddcf88204682fe62/aiohttp-3.13.3-cp313-cp313-win_amd64.whl", hash = "sha256:693781c45a4033d31d4187d2436f5ac701e7bbfe5df40d917736108c1cc7436e", size = 453899, upload-time = "2026-01-03T17:31:15.958Z" }, - { url = "https://files.pythonhosted.org/packages/bf/79/446655656861d3e7e2c32bfcf160c7aa9e9dc63776a691b124dba65cdd77/aiohttp-3.13.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:31a83ea4aead760dfcb6962efb1d861db48c34379f2ff72db9ddddd4cda9ea2e", size = 741433, upload-time = "2026-01-03T17:32:26.453Z" }, - { url = "https://files.pythonhosted.org/packages/cb/49/773c4b310b5140d2fb5e79bb0bf40b7b41dad80a288ca1a8759f5f72bda9/aiohttp-3.13.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:988a8c5e317544fdf0d39871559e67b6341065b87fceac641108c2096d5506b7", size = 497332, upload-time = "2026-01-03T17:32:28.37Z" }, - { url = "https://files.pythonhosted.org/packages/bc/31/1dcbc4b83a4e6f76a0ad883f07f21ffbfe29750c89db97381701508c9f45/aiohttp-3.13.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:9b174f267b5cfb9a7dba9ee6859cecd234e9a681841eb85068059bc867fb8f02", size = 492365, upload-time = "2026-01-03T17:32:30.234Z" }, - { url = "https://files.pythonhosted.org/packages/5a/b5/b50657496c8754482cd7964e50aaf3aa84b3db61ed45daec4c1aec5b94b4/aiohttp-3.13.3-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:947c26539750deeaee933b000fb6517cc770bbd064bad6033f1cff4803881e43", size = 1660440, upload-time = "2026-01-03T17:32:32.586Z" }, - { url = "https://files.pythonhosted.org/packages/2a/73/9b69e5139d89d75127569298931444ad78ea86a5befd5599780b1e9a6880/aiohttp-3.13.3-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:9ebf57d09e131f5323464bd347135a88622d1c0976e88ce15b670e7ad57e4bd6", size = 1632740, upload-time = "2026-01-03T17:32:34.793Z" }, - { url = "https://files.pythonhosted.org/packages/ef/fe/3ea9b5af694b4e3aec0d0613a806132ca744747146fca68e96bf056f61a7/aiohttp-3.13.3-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:4ae5b5a0e1926e504c81c5b84353e7a5516d8778fbbff00429fe7b05bb25cbce", size = 1719782, upload-time = "2026-01-03T17:32:37.737Z" }, - { url = "https://files.pythonhosted.org/packages/fb/c2/46b3b06e60851cbb71efb0f79a3267279cbef7b12c58e68a1e897f269cca/aiohttp-3.13.3-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:2ba0eea45eb5cc3172dbfc497c066f19c41bac70963ea1a67d51fc92e4cf9a80", size = 1813527, upload-time = "2026-01-03T17:32:39.973Z" }, - { url = "https://files.pythonhosted.org/packages/36/23/71ceb78c769ed65fe4c697692de232b63dab399210678d2b00961ccb0619/aiohttp-3.13.3-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:bae5c2ed2eae26cc382020edad80d01f36cb8e746da40b292e68fec40421dc6a", size = 1661268, upload-time = "2026-01-03T17:32:42.082Z" }, - { url = "https://files.pythonhosted.org/packages/c4/8d/86e929523d955e85ebab7c0e2b9e0cb63604cfc27dc3280e10d0063cf682/aiohttp-3.13.3-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:8a60e60746623925eab7d25823329941aee7242d559baa119ca2b253c88a7bd6", size = 1552742, upload-time = "2026-01-03T17:32:44.622Z" }, - { url = "https://files.pythonhosted.org/packages/3a/ea/3f5987cba1bab6bd151f0d97aa60f0ce04d3c83316692a6bb6ba2fb69f92/aiohttp-3.13.3-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:e50a2e1404f063427c9d027378472316201a2290959a295169bcf25992d04558", size = 1632918, upload-time = "2026-01-03T17:32:46.749Z" }, - { url = "https://files.pythonhosted.org/packages/be/2c/7e1e85121f2e31ee938cb83a8f32dfafd4908530c10fabd6d46761c12ac7/aiohttp-3.13.3-cp39-cp39-musllinux_1_2_armv7l.whl", hash = "sha256:9a9dc347e5a3dc7dfdbc1f82da0ef29e388ddb2ed281bfce9dd8248a313e62b7", size = 1644446, upload-time = "2026-01-03T17:32:49.063Z" }, - { url = "https://files.pythonhosted.org/packages/5d/35/ce6133d423ad0e8ca976a7c848f7146bca3520eea4ccf6b95e2d077c9d20/aiohttp-3.13.3-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:b46020d11d23fe16551466c77823df9cc2f2c1e63cc965daf67fa5eec6ca1877", size = 1689487, upload-time = "2026-01-03T17:32:51.113Z" }, - { url = "https://files.pythonhosted.org/packages/50/f7/ff7a27c15603d460fd1366b3c22054f7ae4fa9310aca40b43bde35867fcd/aiohttp-3.13.3-cp39-cp39-musllinux_1_2_riscv64.whl", hash = "sha256:69c56fbc1993fa17043e24a546959c0178fe2b5782405ad4559e6c13975c15e3", size = 1540715, upload-time = "2026-01-03T17:32:53.38Z" }, - { url = "https://files.pythonhosted.org/packages/17/02/053f11346e5b962e6d8a1c4f8c70c29d5970a1b4b8e7894c68e12c27a57f/aiohttp-3.13.3-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:b99281b0704c103d4e11e72a76f1b543d4946fea7dd10767e7e1b5f00d4e5704", size = 1711835, upload-time = "2026-01-03T17:32:56.088Z" }, - { url = "https://files.pythonhosted.org/packages/fb/71/9b9761ddf276fd6708d13720197cbac19b8d67ecfa9116777924056cfcaa/aiohttp-3.13.3-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:40c5e40ecc29ba010656c18052b877a1c28f84344825efa106705e835c28530f", size = 1649593, upload-time = "2026-01-03T17:32:58.181Z" }, - { url = "https://files.pythonhosted.org/packages/ae/72/5d817e9ea218acae12a5e3b9ad1178cf0c12fc3570c0b47eea2daf95f9ea/aiohttp-3.13.3-cp39-cp39-win32.whl", hash = "sha256:56339a36b9f1fc708260c76c87e593e2afb30d26de9ae1eb445b5e051b98a7a1", size = 434831, upload-time = "2026-01-03T17:33:00.577Z" }, - { url = "https://files.pythonhosted.org/packages/39/cb/22659d9bf3149b7a2927bc2769cc9c8f8f5a80eba098398e03c199a43a85/aiohttp-3.13.3-cp39-cp39-win_amd64.whl", hash = "sha256:c6b8568a3bb5819a0ad087f16d40e5a3fb6099f39ea1d5625a3edc1e923fc538", size = 457697, upload-time = "2026-01-03T17:33:03.167Z" }, ] [[package]] @@ -255,124 +184,14 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/fb/76/641ae371508676492379f16e2fa48f4e2c11741bd63c48be4b12a6b09cba/aiosignal-1.4.0-py3-none-any.whl", hash = "sha256:053243f8b92b990551949e63930a839ff0cf0b0ebbe0597b0f3fb19e1a0fe82e", size = 7490, upload-time = "2025-07-03T22:54:42.156Z" }, ] -[[package]] -name = "alembic" -version = "1.16.5" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", -] -dependencies = [ - { name = "mako", marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "sqlalchemy", marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "tomli", marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "typing-extensions", marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/9a/ca/4dc52902cf3491892d464f5265a81e9dff094692c8a049a3ed6a05fe7ee8/alembic-1.16.5.tar.gz", hash = "sha256:a88bb7f6e513bd4301ecf4c7f2206fe93f9913f9b48dac3b78babde2d6fe765e", size = 1969868, upload-time = "2025-08-27T18:02:05.668Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/39/4a/4c61d4c84cfd9befb6fa08a702535b27b21fff08c946bc2f6139decbf7f7/alembic-1.16.5-py3-none-any.whl", hash = "sha256:e845dfe090c5ffa7b92593ae6687c5cb1a101e91fa53868497dbd79847f9dbe3", size = 247355, upload-time = "2025-08-27T18:02:07.37Z" }, -] - [[package]] name = "alembic" version = "1.18.4" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.11.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.10.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.11.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.10.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", -] dependencies = [ - { name = "mako", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "sqlalchemy", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "tomli", marker = "python_full_version == '3.10.*' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "typing-extensions", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "mako" }, + { name = "sqlalchemy" }, + { name = "typing-extensions" }, ] sdist = { url = "https://files.pythonhosted.org/packages/94/13/8b084e0f2efb0275a1d534838844926f798bd766566b1375174e2448cd31/alembic-1.18.4.tar.gz", hash = "sha256:cb6e1fd84b6174ab8dbb2329f86d631ba9559dd78df550b57804d607672cedbc", size = 2056725, upload-time = "2026-02-10T16:00:47.195Z" } wheels = [ @@ -408,7 +227,6 @@ name = "anyio" version = "4.12.1" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "exceptiongroup", marker = "python_full_version < '3.11' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, { name = "idna" }, { name = "typing-extensions", marker = "python_full_version < '3.13' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] @@ -423,12 +241,9 @@ version = "0.4.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "numpy" }, - { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and sys_platform == 'darwin') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.8.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(python_full_version < '3.10' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.8.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.10.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version >= '3.10' and sys_platform == 'darwin') or (python_full_version >= '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.10.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(python_full_version >= '3.10' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.10.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(python_full_version >= '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.10.0", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or sys_platform == 'darwin' or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.10.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.10.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, { name = "typing-extensions" }, ] sdist = { url = "https://files.pythonhosted.org/packages/90/fa/5c2be1f96dc179f83cdd3bb267edbd1f47d08f756785c016d5c2163901a7/asteroid-filterbanks-0.4.0.tar.gz", hash = "sha256:415f89d1dcf2b13b35f03f7a9370968ac4e6fa6800633c522dac992b283409b9", size = 24599, upload-time = "2021-04-09T20:03:07.456Z" } @@ -445,15 +260,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/d2/39/e7eaf1799466a4aef85b6a4fe7bd175ad2b1c6345066aa33f1f58d4b18d0/asttokens-3.0.1-py3-none-any.whl", hash = "sha256:15a3ebc0f43c2d0a50eeafea25e19046c68398e487b9f1f5b517f7c0f40f976a", size = 27047, upload-time = "2025-11-15T16:43:16.109Z" }, ] -[[package]] -name = "async-timeout" -version = "5.0.1" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/a5/ae/136395dfbfe00dfc94da3f3e136d0b13f394cba8f4841120e34226265780/async_timeout-5.0.1.tar.gz", hash = "sha256:d9321a7a3d5a6a5e187e824d2fa0793ce379a202935782d555d6e9d2735677d3", size = 9274, upload-time = "2024-11-06T16:41:39.6Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/fe/ba/e2081de779ca30d473f21f5b30e0e737c438205440784c7dfc81efc2b029/async_timeout-5.0.1-py3-none-any.whl", hash = "sha256:39e3809566ff85354557ec2398b55e096c8364bacac9405a7a1fa429e77fe76c", size = 6233, upload-time = "2024-11-06T16:41:37.9Z" }, -] - [[package]] name = "attrs" version = "25.4.0" @@ -516,156 +322,12 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/7e/16/fbe8e1e185a45042f7cd3a282def5bb8d95bb69ab9e9ef6a5368aa17e426/audioread-3.1.0-py3-none-any.whl", hash = "sha256:b30d1df6c5d3de5dcef0fb0e256f6ea17bdcf5f979408df0297d8a408e2971b4", size = 23143, upload-time = "2025-10-26T19:44:12.016Z" }, ] -[[package]] -name = "av" -version = "15.1.0" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", -] -sdist = { url = "https://files.pythonhosted.org/packages/e9/c3/83e6e73d1592bc54436eae0bc61704ae0cff0c3cfbde7b58af9ed67ebb49/av-15.1.0.tar.gz", hash = "sha256:39cda2dc810e11c1938f8cb5759c41d6b630550236b3365790e67a313660ec85", size = 3774192, upload-time = "2025-08-30T04:41:56.076Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/3a/6a/91e3e68ae0d1b53b480ec69a96f2ae820fb007bc60e6b821741f31c7ba4e/av-15.1.0-cp310-cp310-macosx_13_0_arm64.whl", hash = "sha256:cf067b66cee2248220b29df33b60eb4840d9e7b9b75545d6b922f9c41d88c4ee", size = 21781685, upload-time = "2025-08-30T04:39:13.118Z" }, - { url = "https://files.pythonhosted.org/packages/bc/6d/afa951b9cb615c3bc6d95c4eed280c6cefb52c006f4e15e79043626fab39/av-15.1.0-cp310-cp310-macosx_13_0_x86_64.whl", hash = "sha256:26426163d96fc3bde9a015ba4d60da09ef848d9284fe79b4ca5e60965a008fc5", size = 26962481, upload-time = "2025-08-30T04:39:16.875Z" }, - { url = "https://files.pythonhosted.org/packages/3c/42/0c384884235c42c439cef28cbd129e4624ad60229119bf3c6c6020805119/av-15.1.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:92f524541ce74b8a12491d8934164a5c57e983da24826547c212f60123de400b", size = 37571839, upload-time = "2025-08-30T04:39:20.325Z" }, - { url = "https://files.pythonhosted.org/packages/25/c0/5c967b0872fce1add80a8f50fa7ce11e3e3e5257c2b079263570bc854699/av-15.1.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:659f9d6145fb2c58e8b31907283b6ba876570f5dd6e7e890d74c09614c436c8e", size = 39070227, upload-time = "2025-08-30T04:39:24.079Z" }, - { url = "https://files.pythonhosted.org/packages/e2/81/e333056d49363c35a74b828ed5f87c96dfbcc1a506b49d79a31ac773b94d/av-15.1.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:07a8ae30c0cfc3132eff320a6b27d18a5e0dda36effd0ae28892888f4ee14729", size = 39619362, upload-time = "2025-08-30T04:39:27.7Z" }, - { url = "https://files.pythonhosted.org/packages/d5/ae/50cc2af1bf68452cbfec8d1b2554c18f6d167c8ba6d7ad7707797dfd1541/av-15.1.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:e33a76e38f03bb5de026b9f66ccf23dc01ddd2223221096992cb52ac22e62538", size = 40371627, upload-time = "2025-08-30T04:39:31.207Z" }, - { url = "https://files.pythonhosted.org/packages/50/e6/381edf1779106dd31c9ef1ac9842f643af4465b8a87cbc278d3eaa76229a/av-15.1.0-cp310-cp310-win_amd64.whl", hash = "sha256:aa4bf12bdce20edc2a3b13a2776c474c5ab63e1817d53793714504476eeba82e", size = 31340369, upload-time = "2025-08-30T04:39:34.774Z" }, - { url = "https://files.pythonhosted.org/packages/47/58/4e44cf6939be7aba96a4abce024e1be11ba7539ecac74d09369b8c03aa05/av-15.1.0-cp311-cp311-macosx_13_0_arm64.whl", hash = "sha256:b785948762a8d45fc58fc24a20251496829ace1817e9a7a508a348d6de2182c3", size = 21767323, upload-time = "2025-08-30T04:39:37.989Z" }, - { url = "https://files.pythonhosted.org/packages/9b/f6/a946544cdb49f6d892d2761b1d61a8bc6ce912fe57ba06769bdc640c0a7f/av-15.1.0-cp311-cp311-macosx_13_0_x86_64.whl", hash = "sha256:9c7131494a3a318612b4ee4db98fe5bc50eb705f6b6536127c7ab776c524fd8b", size = 26946268, upload-time = "2025-08-30T04:39:40.601Z" }, - { url = "https://files.pythonhosted.org/packages/70/7c/b33513c0af73d0033af59a98f035b521c5b93445a6af7e9efbf41a6e8383/av-15.1.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:2b9623ae848625c59213b610c8665817924f913580c7c5c91e0dc18936deb00d", size = 38062118, upload-time = "2025-08-30T04:39:43.928Z" }, - { url = "https://files.pythonhosted.org/packages/5e/95/31b7fb34f9fea7c7389240364194f4f56ad2d460095038cc720f50a90bb3/av-15.1.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:c8ef597087db560514617143532b1fafc4825ebb2dda9a22418f548b113a0cc7", size = 39571086, upload-time = "2025-08-30T04:39:47.109Z" }, - { url = "https://files.pythonhosted.org/packages/e7/b0/7b0b45474a4e90c35c11d0032947d8b3c7386872957ce29c6f12add69a74/av-15.1.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:08eac47a90ebae1e2bd5935f400dd515166019bab4ff5b03c4625fa6ac3a0a5e", size = 40112634, upload-time = "2025-08-30T04:39:50.981Z" }, - { url = "https://files.pythonhosted.org/packages/aa/04/038b94bc9a1ee10a451c867d4a2fc91e845f83bfc2dae9df25893abcb57f/av-15.1.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:d3f66ff200ea166e606cb3c5cb1bd2fc714effbec2e262a5d67ce60450c8234a", size = 40878695, upload-time = "2025-08-30T04:39:54.493Z" }, - { url = "https://files.pythonhosted.org/packages/1d/3d/9f8f96c0deeaaf648485a3dbd1699b2f0580f2ce8a36cb616c0138ba7615/av-15.1.0-cp311-cp311-win_amd64.whl", hash = "sha256:57b99544d91121b8bea570e4ddf61700f679a6b677c1f37966bc1a22e1d4cd5c", size = 31335683, upload-time = "2025-08-30T04:39:57.861Z" }, - { url = "https://files.pythonhosted.org/packages/d1/58/de78b276d20db6ffcd4371283df771721a833ba525a3d57e753d00a9fe79/av-15.1.0-cp312-cp312-macosx_13_0_arm64.whl", hash = "sha256:40c5df37f4c354ab8190c6fd68dab7881d112f527906f64ca73da4c252a58cee", size = 21760991, upload-time = "2025-08-30T04:40:00.801Z" }, - { url = "https://files.pythonhosted.org/packages/56/cc/45f85775304ae60b66976360d82ba5b152ad3fd91f9267d5020a51e9a828/av-15.1.0-cp312-cp312-macosx_13_0_x86_64.whl", hash = "sha256:af455ce65ada3d361f80c90c810d9bced4db5655ab9aa513024d6c71c5c476d5", size = 26953097, upload-time = "2025-08-30T04:40:03.998Z" }, - { url = "https://files.pythonhosted.org/packages/f3/f8/2d781e5e71d02fc829487e775ccb1185e72f95340d05f2e84eb57a11e093/av-15.1.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:86226d2474c80c3393fa07a9c366106029ae500716098b72b3ec3f67205524c3", size = 38319710, upload-time = "2025-08-30T04:40:07.701Z" }, - { url = "https://files.pythonhosted.org/packages/ac/13/37737ef2193e83862ccacff23580c39de251da456a1bf0459e762cca273c/av-15.1.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:11326f197e7001c4ca53a83b2dbc67fd39ddff8cdf62ce6be3b22d9f3f9338bd", size = 39915519, upload-time = "2025-08-30T04:40:11.066Z" }, - { url = "https://files.pythonhosted.org/packages/26/e9/e8032c7b8f2a4129a03f63f896544f8b7cf068e2db2950326fa2400d5c47/av-15.1.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:a631ea879cc553080ee62874f4284765c42ba08ee0279851a98a85e2ceb3cc8d", size = 40286166, upload-time = "2025-08-30T04:40:14.561Z" }, - { url = "https://files.pythonhosted.org/packages/e2/23/612c0fd809444d04b8387a2dfd942ccc77829507bd78a387ff65a9d98c24/av-15.1.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:8f383949b010c3e731c245f80351d19dc0c08f345e194fc46becb1cb279be3ff", size = 41150592, upload-time = "2025-08-30T04:40:17.951Z" }, - { url = "https://files.pythonhosted.org/packages/15/74/6f8e38a3b0aea5f28e72813672ff45b64615f2c69e6a4a558718c95edb9f/av-15.1.0-cp312-cp312-win_amd64.whl", hash = "sha256:d5921aa45f4c1f8c1a8d8185eb347e02aa4c3071278a2e2dd56368d54433d643", size = 31336093, upload-time = "2025-08-30T04:40:21.393Z" }, - { url = "https://files.pythonhosted.org/packages/2e/bc/78b2ffa8235eeffc29aa4a8cc47b02e660cfec32f601f39a00975fb06d0e/av-15.1.0-cp313-cp313-macosx_13_0_arm64.whl", hash = "sha256:2f77853c3119c59d1bff4214ccbe46e3133eccff85ed96adee51c68684443f4e", size = 21726244, upload-time = "2025-08-30T04:40:24.14Z" }, - { url = "https://files.pythonhosted.org/packages/1a/99/66d69453a2dce028e6e8ebea085d90e880aac03d3a3ab7d8ec16755ffd75/av-15.1.0-cp313-cp313-macosx_13_0_x86_64.whl", hash = "sha256:c0bc4471c156a0a1c70a607502434f477bc8dfe085eef905e55b4b0d66bcd3a5", size = 26918663, upload-time = "2025-08-30T04:40:27.557Z" }, - { url = "https://files.pythonhosted.org/packages/fa/51/1a7dfbeda71f2772bc46d758af0e7fab1cc8388ce4bc7f24aecbc4bfd764/av-15.1.0-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:37839d4fa1407f047af82560dfc0f94d8d6266071eff49e1cbe16c4483054621", size = 38041408, upload-time = "2025-08-30T04:40:30.811Z" }, - { url = "https://files.pythonhosted.org/packages/d7/97/2c4e0288ad4359b6064cb06ae79c2ff3a84ac73d27e91f2161b75fcd86fa/av-15.1.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:729179cd8622815e8b6f6854d13a806fe710576e08895c77e5e4ad254609de9a", size = 39642563, upload-time = "2025-08-30T04:40:34.617Z" }, - { url = "https://files.pythonhosted.org/packages/ea/94/2362502149e276d00957edabcc201a5f4d5109a8a7b4fd30793714a532f3/av-15.1.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:4abdf085bfa4eec318efccff567831b361ea56c045cc38366811552e3127c665", size = 40022119, upload-time = "2025-08-30T04:40:37.703Z" }, - { url = "https://files.pythonhosted.org/packages/df/58/1a0ce1b3835d9728da0a7a54aeffaa0a2b1a88405eaed9322efd55212a54/av-15.1.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:f985661644879e4520d28a995fcb2afeb951bc15a1d51412eb8e5f36da85b6fe", size = 40885158, upload-time = "2025-08-30T04:40:40.952Z" }, - { url = "https://files.pythonhosted.org/packages/30/e6/054bb64e424d90b77ed5fc6a7358e4013fb436154c998fc90a89a186313f/av-15.1.0-cp313-cp313-win_amd64.whl", hash = "sha256:7d7804a44c8048bb4b014a99353dd124663a12cd1d4613ba2bd3b457c3b1d539", size = 31312256, upload-time = "2025-08-30T04:40:44.224Z" }, - { url = "https://files.pythonhosted.org/packages/4e/0e/c7c9f14b5c19a8230e0538c2940cef6da2be08b5d05ce884a68a30f4573d/av-15.1.0-cp39-cp39-macosx_13_0_arm64.whl", hash = "sha256:315915f6fef9f9f4935153aed8a81df56690da20f4426ee5b9fa55b4dae4bc0b", size = 21795132, upload-time = "2025-08-30T04:41:33.37Z" }, - { url = "https://files.pythonhosted.org/packages/0d/f8/ab8d800eefcf3588f883b76dc0ba39c6f7bb6792d5d660a7d416626c909c/av-15.1.0-cp39-cp39-macosx_13_0_x86_64.whl", hash = "sha256:4a2a52a56cd8c6a8f0f005d29c3a0ebc1822d31b0d0f39990c4c8e3a69d6c96e", size = 26976225, upload-time = "2025-08-30T04:41:36.472Z" }, - { url = "https://files.pythonhosted.org/packages/9f/09/878ec186c3c306bf747351a8ad736d19a32e7a95fdcd6188bcbd1c1b2679/av-15.1.0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:406fc29103865f17de0f684c5fb2e3d2e43e15c1fa65fcc488f65d20c7a7c7f3", size = 37575927, upload-time = "2025-08-30T04:41:39.597Z" }, - { url = "https://files.pythonhosted.org/packages/05/da/bcc82726fca6554420b23c1c04449eb6545737e78bb908a8cdf1cdb1eb68/av-15.1.0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:fe07cf7de162acc09d021e02154b1f760bca742c62609ec0ae586a6a1e0579ac", size = 39078913, upload-time = "2025-08-30T04:41:43.025Z" }, - { url = "https://files.pythonhosted.org/packages/33/e0/0638db8e824297d1c6d3b3a1a3b28788d967eef9c357eee0f3f777894605/av-15.1.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:9a0c1840959e1742dcd7fa4f7e9b80eea298049542f233e98d6d7a9441ed292c", size = 39622862, upload-time = "2025-08-30T04:41:46.722Z" }, - { url = "https://files.pythonhosted.org/packages/96/22/091a6076a80cf71c4c6f799c50ca10cbda1602b598f3f8c95f7be38aeb99/av-15.1.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:46875a57562a72d9b11b4b222628eaf7e5b1a723c4225c869c66d5704634c1d1", size = 40381672, upload-time = "2025-08-30T04:41:50.15Z" }, - { url = "https://files.pythonhosted.org/packages/f7/21/64bbe36d68f6908fc6cab1f4be85331bcedae6ff6eea2dc56663295efbad/av-15.1.0-cp39-cp39-win_amd64.whl", hash = "sha256:5f895315ecfe5821a4a3a178cbbe7f62e6a73ae1f726138bef5bb153b2885ed8", size = 31353295, upload-time = "2025-08-30T04:41:53.246Z" }, -] - [[package]] name = "av" version = "16.1.0" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.11.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.10.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.11.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.10.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", -] sdist = { url = "https://files.pythonhosted.org/packages/78/cd/3a83ffbc3cc25b39721d174487fb0d51a76582f4a1703f98e46170ce83d4/av-16.1.0.tar.gz", hash = "sha256:a094b4fd87a3721dacf02794d3d2c82b8d712c85b9534437e82a8a978c175ffd", size = 4285203, upload-time = "2026-01-11T07:31:33.772Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/97/51/2217a9249409d2e88e16e3f16f7c0def9fd3e7ffc4238b2ec211f9935bdb/av-16.1.0-cp310-cp310-macosx_11_0_x86_64.whl", hash = "sha256:2395748b0c34fe3a150a1721e4f3d4487b939520991b13e7b36f8926b3b12295", size = 26942590, upload-time = "2026-01-09T20:17:58.588Z" }, - { url = "https://files.pythonhosted.org/packages/bf/cd/a7070f4febc76a327c38808e01e2ff6b94531fe0b321af54ea3915165338/av-16.1.0-cp310-cp310-macosx_14_0_arm64.whl", hash = "sha256:72d7ac832710a158eeb7a93242370aa024a7646516291c562ee7f14a7ea881fd", size = 21507910, upload-time = "2026-01-09T20:18:02.309Z" }, - { url = "https://files.pythonhosted.org/packages/ae/30/ec812418cd9b297f0238fe20eb0747d8a8b68d82c5f73c56fe519a274143/av-16.1.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:6cbac833092e66b6b0ac4d81ab077970b8ca874951e9c3974d41d922aaa653ed", size = 38738309, upload-time = "2026-01-09T20:18:04.701Z" }, - { url = "https://files.pythonhosted.org/packages/3a/b8/6c5795bf1f05f45c5261f8bce6154e0e5e86b158a6676650ddd77c28805e/av-16.1.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:eb990672d97c18f99c02f31c8d5750236f770ffe354b5a52c5f4d16c5e65f619", size = 40293006, upload-time = "2026-01-09T20:18:07.238Z" }, - { url = "https://files.pythonhosted.org/packages/a7/44/5e183bcb9333fc3372ee6e683be8b0c9b515a506894b2d32ff465430c074/av-16.1.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:05ad70933ac3b8ef896a820ea64b33b6cca91a5fac5259cb9ba7fa010435be15", size = 40123516, upload-time = "2026-01-09T20:18:09.955Z" }, - { url = "https://files.pythonhosted.org/packages/12/1d/b5346d582a3c3d958b4d26a2cc63ce607233582d956121eb20d2bbe55c2e/av-16.1.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:d831a1062a3c47520bf99de6ec682bd1d64a40dfa958e5457bb613c5270e7ce3", size = 41463289, upload-time = "2026-01-09T20:18:12.459Z" }, - { url = "https://files.pythonhosted.org/packages/fa/31/acc946c0545f72b8d0d74584cb2a0ade9b7dfe2190af3ef9aa52a2e3c0b1/av-16.1.0-cp310-cp310-win_amd64.whl", hash = "sha256:358ab910fef3c5a806c55176f2b27e5663b33c4d0a692dafeb049c6ed71f8aff", size = 31754959, upload-time = "2026-01-09T20:18:14.718Z" }, { url = "https://files.pythonhosted.org/packages/48/d0/b71b65d1b36520dcb8291a2307d98b7fc12329a45614a303ff92ada4d723/av-16.1.0-cp311-cp311-macosx_11_0_x86_64.whl", hash = "sha256:e88ad64ee9d2b9c4c5d891f16c22ae78e725188b8926eb88187538d9dd0b232f", size = 26927747, upload-time = "2026-01-09T20:18:16.976Z" }, { url = "https://files.pythonhosted.org/packages/2f/79/720a5a6ccdee06eafa211b945b0a450e3a0b8fc3d12922f0f3c454d870d2/av-16.1.0-cp311-cp311-macosx_14_0_arm64.whl", hash = "sha256:cb296073fa6935724de72593800ba86ae49ed48af03960a4aee34f8a611f442b", size = 21492232, upload-time = "2026-01-09T20:18:19.266Z" }, { url = "https://files.pythonhosted.org/packages/8e/4f/a1ba8d922f2f6d1a3d52419463ef26dd6c4d43ee364164a71b424b5ae204/av-16.1.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:720edd4d25aa73723c1532bb0597806d7b9af5ee34fc02358782c358cfe2f879", size = 39291737, upload-time = "2026-01-09T20:18:21.513Z" }, @@ -696,59 +358,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/36/8b/e5f530d9e8f640da5f5c5f681a424c65f9dd171c871cd255d8a861785a6e/av-16.1.0-cp313-cp313t-win_amd64.whl", hash = "sha256:2e3e67144a202b95ed299d165232533989390a9ea3119d37eccec697dc6dbb0c", size = 31947047, upload-time = "2026-01-11T09:58:31.867Z" }, ] -[[package]] -name = "backports-asyncio-runner" -version = "1.2.0" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/8e/ff/70dca7d7cb1cbc0edb2c6cc0c38b65cba36cccc491eca64cabd5fe7f8670/backports_asyncio_runner-1.2.0.tar.gz", hash = "sha256:a5aa7b2b7d8f8bfcaa2b57313f70792df84e32a2a746f585213373f900b42162", size = 69893, upload-time = "2025-07-02T02:27:15.685Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/a0/59/76ab57e3fe74484f48a53f8e337171b4a2349e506eabe136d7e01d059086/backports_asyncio_runner-1.2.0-py3-none-any.whl", hash = "sha256:0da0a936a8aeb554eccb426dc55af3ba63bcdc69fa1a600b5bb305413a4477b5", size = 12313, upload-time = "2025-07-02T02:27:14.263Z" }, -] - -[[package]] -name = "backports-datetime-fromisoformat" -version = "2.0.3" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/71/81/eff3184acb1d9dc3ce95a98b6f3c81a49b4be296e664db8e1c2eeabef3d9/backports_datetime_fromisoformat-2.0.3.tar.gz", hash = "sha256:b58edc8f517b66b397abc250ecc737969486703a66eb97e01e6d51291b1a139d", size = 23588, upload-time = "2024-12-28T20:18:15.017Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/42/4b/d6b051ca4b3d76f23c2c436a9669f3be616b8cf6461a7e8061c7c4269642/backports_datetime_fromisoformat-2.0.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:5f681f638f10588fa3c101ee9ae2b63d3734713202ddfcfb6ec6cea0778a29d4", size = 27561, upload-time = "2024-12-28T20:16:47.974Z" }, - { url = "https://files.pythonhosted.org/packages/6d/40/e39b0d471e55eb1b5c7c81edab605c02f71c786d59fb875f0a6f23318747/backports_datetime_fromisoformat-2.0.3-cp310-cp310-macosx_11_0_universal2.whl", hash = "sha256:cd681460e9142f1249408e5aee6d178c6d89b49e06d44913c8fdfb6defda8d1c", size = 34448, upload-time = "2024-12-28T20:16:50.712Z" }, - { url = "https://files.pythonhosted.org/packages/f2/28/7a5c87c5561d14f1c9af979231fdf85d8f9fad7a95ff94e56d2205e2520a/backports_datetime_fromisoformat-2.0.3-cp310-cp310-macosx_11_0_x86_64.whl", hash = "sha256:ee68bc8735ae5058695b76d3bb2aee1d137c052a11c8303f1e966aa23b72b65b", size = 27093, upload-time = "2024-12-28T20:16:52.994Z" }, - { url = "https://files.pythonhosted.org/packages/80/ba/f00296c5c4536967c7d1136107fdb91c48404fe769a4a6fd5ab045629af8/backports_datetime_fromisoformat-2.0.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8273fe7932db65d952a43e238318966eab9e49e8dd546550a41df12175cc2be4", size = 52836, upload-time = "2024-12-28T20:16:55.283Z" }, - { url = "https://files.pythonhosted.org/packages/e3/92/bb1da57a069ddd601aee352a87262c7ae93467e66721d5762f59df5021a6/backports_datetime_fromisoformat-2.0.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:39d57ea50aa5a524bb239688adc1d1d824c31b6094ebd39aa164d6cadb85de22", size = 52798, upload-time = "2024-12-28T20:16:56.64Z" }, - { url = "https://files.pythonhosted.org/packages/df/ef/b6cfd355982e817ccdb8d8d109f720cab6e06f900784b034b30efa8fa832/backports_datetime_fromisoformat-2.0.3-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:ac6272f87693e78209dc72e84cf9ab58052027733cd0721c55356d3c881791cf", size = 52891, upload-time = "2024-12-28T20:16:58.887Z" }, - { url = "https://files.pythonhosted.org/packages/37/39/b13e3ae8a7c5d88b68a6e9248ffe7066534b0cfe504bf521963e61b6282d/backports_datetime_fromisoformat-2.0.3-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:44c497a71f80cd2bcfc26faae8857cf8e79388e3d5fbf79d2354b8c360547d58", size = 52955, upload-time = "2024-12-28T20:17:00.028Z" }, - { url = "https://files.pythonhosted.org/packages/1e/e4/70cffa3ce1eb4f2ff0c0d6f5d56285aacead6bd3879b27a2ba57ab261172/backports_datetime_fromisoformat-2.0.3-cp310-cp310-win_amd64.whl", hash = "sha256:6335a4c9e8af329cb1ded5ab41a666e1448116161905a94e054f205aa6d263bc", size = 29323, upload-time = "2024-12-28T20:17:01.125Z" }, - { url = "https://files.pythonhosted.org/packages/62/f5/5bc92030deadf34c365d908d4533709341fb05d0082db318774fdf1b2bcb/backports_datetime_fromisoformat-2.0.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:e2e4b66e017253cdbe5a1de49e0eecff3f66cd72bcb1229d7db6e6b1832c0443", size = 27626, upload-time = "2024-12-28T20:17:03.448Z" }, - { url = "https://files.pythonhosted.org/packages/28/45/5885737d51f81dfcd0911dd5c16b510b249d4c4cf6f4a991176e0358a42a/backports_datetime_fromisoformat-2.0.3-cp311-cp311-macosx_11_0_universal2.whl", hash = "sha256:43e2d648e150777e13bbc2549cc960373e37bf65bd8a5d2e0cef40e16e5d8dd0", size = 34588, upload-time = "2024-12-28T20:17:04.459Z" }, - { url = "https://files.pythonhosted.org/packages/bc/6d/bd74de70953f5dd3e768c8fc774af942af0ce9f211e7c38dd478fa7ea910/backports_datetime_fromisoformat-2.0.3-cp311-cp311-macosx_11_0_x86_64.whl", hash = "sha256:4ce6326fd86d5bae37813c7bf1543bae9e4c215ec6f5afe4c518be2635e2e005", size = 27162, upload-time = "2024-12-28T20:17:06.752Z" }, - { url = "https://files.pythonhosted.org/packages/47/ba/1d14b097f13cce45b2b35db9898957578b7fcc984e79af3b35189e0d332f/backports_datetime_fromisoformat-2.0.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d7c8fac333bf860208fd522a5394369ee3c790d0aa4311f515fcc4b6c5ef8d75", size = 54482, upload-time = "2024-12-28T20:17:08.15Z" }, - { url = "https://files.pythonhosted.org/packages/25/e9/a2a7927d053b6fa148b64b5e13ca741ca254c13edca99d8251e9a8a09cfe/backports_datetime_fromisoformat-2.0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:24a4da5ab3aa0cc293dc0662a0c6d1da1a011dc1edcbc3122a288cfed13a0b45", size = 54362, upload-time = "2024-12-28T20:17:10.605Z" }, - { url = "https://files.pythonhosted.org/packages/c1/99/394fb5e80131a7d58c49b89e78a61733a9994885804a0bb582416dd10c6f/backports_datetime_fromisoformat-2.0.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:58ea11e3bf912bd0a36b0519eae2c5b560b3cb972ea756e66b73fb9be460af01", size = 54162, upload-time = "2024-12-28T20:17:12.301Z" }, - { url = "https://files.pythonhosted.org/packages/88/25/1940369de573c752889646d70b3fe8645e77b9e17984e72a554b9b51ffc4/backports_datetime_fromisoformat-2.0.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:8a375c7dbee4734318714a799b6c697223e4bbb57232af37fbfff88fb48a14c6", size = 54118, upload-time = "2024-12-28T20:17:13.609Z" }, - { url = "https://files.pythonhosted.org/packages/b7/46/f275bf6c61683414acaf42b2df7286d68cfef03e98b45c168323d7707778/backports_datetime_fromisoformat-2.0.3-cp311-cp311-win_amd64.whl", hash = "sha256:ac677b1664c4585c2e014739f6678137c8336815406052349c85898206ec7061", size = 29329, upload-time = "2024-12-28T20:17:16.124Z" }, - { url = "https://files.pythonhosted.org/packages/a2/0f/69bbdde2e1e57c09b5f01788804c50e68b29890aada999f2b1a40519def9/backports_datetime_fromisoformat-2.0.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:66ce47ee1ba91e146149cf40565c3d750ea1be94faf660ca733d8601e0848147", size = 27630, upload-time = "2024-12-28T20:17:19.442Z" }, - { url = "https://files.pythonhosted.org/packages/d5/1d/1c84a50c673c87518b1adfeafcfd149991ed1f7aedc45d6e5eac2f7d19d7/backports_datetime_fromisoformat-2.0.3-cp312-cp312-macosx_11_0_universal2.whl", hash = "sha256:8b7e069910a66b3bba61df35b5f879e5253ff0821a70375b9daf06444d046fa4", size = 34707, upload-time = "2024-12-28T20:17:21.79Z" }, - { url = "https://files.pythonhosted.org/packages/71/44/27eae384e7e045cda83f70b551d04b4a0b294f9822d32dea1cbf1592de59/backports_datetime_fromisoformat-2.0.3-cp312-cp312-macosx_11_0_x86_64.whl", hash = "sha256:a3b5d1d04a9e0f7b15aa1e647c750631a873b298cdd1255687bb68779fe8eb35", size = 27280, upload-time = "2024-12-28T20:17:24.503Z" }, - { url = "https://files.pythonhosted.org/packages/a7/7a/a4075187eb6bbb1ff6beb7229db5f66d1070e6968abeb61e056fa51afa5e/backports_datetime_fromisoformat-2.0.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ec1b95986430e789c076610aea704db20874f0781b8624f648ca9fb6ef67c6e1", size = 55094, upload-time = "2024-12-28T20:17:25.546Z" }, - { url = "https://files.pythonhosted.org/packages/71/03/3fced4230c10af14aacadc195fe58e2ced91d011217b450c2e16a09a98c8/backports_datetime_fromisoformat-2.0.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ffe5f793db59e2f1d45ec35a1cf51404fdd69df9f6952a0c87c3060af4c00e32", size = 55605, upload-time = "2024-12-28T20:17:29.208Z" }, - { url = "https://files.pythonhosted.org/packages/f6/0a/4b34a838c57bd16d3e5861ab963845e73a1041034651f7459e9935289cfd/backports_datetime_fromisoformat-2.0.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:620e8e73bd2595dfff1b4d256a12b67fce90ece3de87b38e1dde46b910f46f4d", size = 55353, upload-time = "2024-12-28T20:17:32.433Z" }, - { url = "https://files.pythonhosted.org/packages/d9/68/07d13c6e98e1cad85606a876367ede2de46af859833a1da12c413c201d78/backports_datetime_fromisoformat-2.0.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:4cf9c0a985d68476c1cabd6385c691201dda2337d7453fb4da9679ce9f23f4e7", size = 55298, upload-time = "2024-12-28T20:17:34.919Z" }, - { url = "https://files.pythonhosted.org/packages/60/33/45b4d5311f42360f9b900dea53ab2bb20a3d61d7f9b7c37ddfcb3962f86f/backports_datetime_fromisoformat-2.0.3-cp312-cp312-win_amd64.whl", hash = "sha256:d144868a73002e6e2e6fef72333e7b0129cecdd121aa8f1edba7107fd067255d", size = 29375, upload-time = "2024-12-28T20:17:36.018Z" }, - { url = "https://files.pythonhosted.org/packages/36/bf/990ac5a4f86fdb92d435511bb80a9e66f0a8dd87e76ae00dd062db2cf649/backports_datetime_fromisoformat-2.0.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:fa2de871801d824c255fac7e5e7e50f2be6c9c376fd9268b40c54b5e9da91f42", size = 27548, upload-time = "2024-12-28T20:17:55.065Z" }, - { url = "https://files.pythonhosted.org/packages/c6/e8/8f49cfc187df0231a1c1bcf780bbdb3d1c391dccafc3510cd033b637f836/backports_datetime_fromisoformat-2.0.3-cp39-cp39-macosx_11_0_universal2.whl", hash = "sha256:1314d4923c1509aa9696712a7bc0c7160d3b7acf72adafbbe6c558d523f5d491", size = 34445, upload-time = "2024-12-28T20:17:56.134Z" }, - { url = "https://files.pythonhosted.org/packages/06/25/4ac60683f383d51337620ef6f5ff56438174b18f5d6a66f71da2ea4acd26/backports_datetime_fromisoformat-2.0.3-cp39-cp39-macosx_11_0_x86_64.whl", hash = "sha256:b750ecba3a8815ad8bc48311552f3f8ab99dd2326d29df7ff670d9c49321f48f", size = 27093, upload-time = "2024-12-28T20:17:57.17Z" }, - { url = "https://files.pythonhosted.org/packages/c7/ea/561edac54f9a1440a4bce0aecc291e5155e734ab42db88ce24cd1cccf288/backports_datetime_fromisoformat-2.0.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b2d5117dce805d8a2f78baeddc8c6127281fa0a5e2c40c6dd992ba6b2b367876", size = 52352, upload-time = "2024-12-28T20:17:59.642Z" }, - { url = "https://files.pythonhosted.org/packages/43/aa/98ed742a9a1bd88f5ead7852eb1d2fc828cba96b46340b70fc216a7f4b70/backports_datetime_fromisoformat-2.0.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fb35f607bd1cbe37b896379d5f5ed4dc298b536f4b959cb63180e05cacc0539d", size = 52314, upload-time = "2024-12-28T20:18:00.771Z" }, - { url = "https://files.pythonhosted.org/packages/c7/ab/5b8f8c0be6a563f00bf2ecefff18beb6daf1e78025c0d823f581bf0a879f/backports_datetime_fromisoformat-2.0.3-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:61c74710900602637d2d145dda9720c94e303380803bf68811b2a151deec75c2", size = 52488, upload-time = "2024-12-28T20:18:01.888Z" }, - { url = "https://files.pythonhosted.org/packages/20/14/fef93556a022530525c77729f94eab3452568a11f7893cbcd76e06b398e8/backports_datetime_fromisoformat-2.0.3-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:ece59af54ebf67ecbfbbf3ca9066f5687879e36527ad69d8b6e3ac565d565a62", size = 52555, upload-time = "2024-12-28T20:18:03.065Z" }, - { url = "https://files.pythonhosted.org/packages/2f/bf/e1a2fe6ec0ce2b983d7cc93c43b41334f595fd7793aa35afbd02737c5e75/backports_datetime_fromisoformat-2.0.3-cp39-cp39-win_amd64.whl", hash = "sha256:d0a7c5f875068efe106f62233bc712d50db4d07c13c7db570175c7857a7b5dbd", size = 29331, upload-time = "2024-12-28T20:18:05.494Z" }, - { url = "https://files.pythonhosted.org/packages/be/03/7eaa9f9bf290395d57fd30d7f1f2f9dff60c06a31c237dc2beb477e8f899/backports_datetime_fromisoformat-2.0.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:90e202e72a3d5aae673fcc8c9a4267d56b2f532beeb9173361293625fe4d2039", size = 28980, upload-time = "2024-12-28T20:18:06.554Z" }, - { url = "https://files.pythonhosted.org/packages/47/80/a0ecf33446c7349e79f54cc532933780341d20cff0ee12b5bfdcaa47067e/backports_datetime_fromisoformat-2.0.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2df98ef1b76f5a58bb493dda552259ba60c3a37557d848e039524203951c9f06", size = 28449, upload-time = "2024-12-28T20:18:07.77Z" }, - { url = "https://files.pythonhosted.org/packages/93/a3/ef965bee678d5dfbabfd85283d8a9caf125b11c394174eceb76707e64334/backports_datetime_fromisoformat-2.0.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f2797593760da6bcc32c4a13fa825af183cd4bfd333c60b3dbf84711afca26ef", size = 28978, upload-time = "2024-12-28T20:18:12.441Z" }, - { url = "https://files.pythonhosted.org/packages/dc/e7/910935727b5c0e4975820d0ae5c9489d111859c651109f72208a8a28105b/backports_datetime_fromisoformat-2.0.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:35a144fd681a0bea1013ccc4cd3fd4dc758ea17ee23dca019c02b82ec46fc0c4", size = 28437, upload-time = "2024-12-28T20:18:13.465Z" }, -] - [[package]] name = "braceexpand" version = "0.1.7" @@ -781,23 +390,10 @@ name = "cffi" version = "2.0.0" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "pycparser", version = "2.23", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.10' and implementation_name != 'PyPy') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (implementation_name == 'PyPy' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (implementation_name == 'PyPy' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (implementation_name == 'PyPy' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "pycparser", version = "3.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.10' and implementation_name != 'PyPy') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (implementation_name == 'PyPy' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (implementation_name == 'PyPy' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (implementation_name == 'PyPy' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "pycparser", marker = "implementation_name != 'PyPy' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/eb/56/b1ba7935a17738ae8453301356628e8147c79dbb825bcbc73dc7401f9846/cffi-2.0.0.tar.gz", hash = "sha256:44d1b5909021139fe36001ae048dbdde8214afa20200eda0f64c068cac5d5529", size = 523588, upload-time = "2025-09-08T23:24:04.541Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/93/d7/516d984057745a6cd96575eea814fe1edd6646ee6efd552fb7b0921dec83/cffi-2.0.0-cp310-cp310-macosx_10_13_x86_64.whl", hash = "sha256:0cf2d91ecc3fcc0625c2c530fe004f82c110405f101548512cce44322fa8ac44", size = 184283, upload-time = "2025-09-08T23:22:08.01Z" }, - { url = "https://files.pythonhosted.org/packages/9e/84/ad6a0b408daa859246f57c03efd28e5dd1b33c21737c2db84cae8c237aa5/cffi-2.0.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:f73b96c41e3b2adedc34a7356e64c8eb96e03a3782b535e043a986276ce12a49", size = 180504, upload-time = "2025-09-08T23:22:10.637Z" }, - { url = "https://files.pythonhosted.org/packages/50/bd/b1a6362b80628111e6653c961f987faa55262b4002fcec42308cad1db680/cffi-2.0.0-cp310-cp310-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl", hash = "sha256:53f77cbe57044e88bbd5ed26ac1d0514d2acf0591dd6bb02a3ae37f76811b80c", size = 208811, upload-time = "2025-09-08T23:22:12.267Z" }, - { url = "https://files.pythonhosted.org/packages/4f/27/6933a8b2562d7bd1fb595074cf99cc81fc3789f6a6c05cdabb46284a3188/cffi-2.0.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:3e837e369566884707ddaf85fc1744b47575005c0a229de3327f8f9a20f4efeb", size = 216402, upload-time = "2025-09-08T23:22:13.455Z" }, - { url = "https://files.pythonhosted.org/packages/05/eb/b86f2a2645b62adcfff53b0dd97e8dfafb5c8aa864bd0d9a2c2049a0d551/cffi-2.0.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl", hash = "sha256:5eda85d6d1879e692d546a078b44251cdd08dd1cfb98dfb77b670c97cee49ea0", size = 203217, upload-time = "2025-09-08T23:22:14.596Z" }, - { url = "https://files.pythonhosted.org/packages/9f/e0/6cbe77a53acf5acc7c08cc186c9928864bd7c005f9efd0d126884858a5fe/cffi-2.0.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.whl", hash = "sha256:9332088d75dc3241c702d852d4671613136d90fa6881da7d770a483fd05248b4", size = 203079, upload-time = "2025-09-08T23:22:15.769Z" }, - { url = "https://files.pythonhosted.org/packages/98/29/9b366e70e243eb3d14a5cb488dfd3a0b6b2f1fb001a203f653b93ccfac88/cffi-2.0.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:fc7de24befaeae77ba923797c7c87834c73648a05a4bde34b3b7e5588973a453", size = 216475, upload-time = "2025-09-08T23:22:17.427Z" }, - { url = "https://files.pythonhosted.org/packages/21/7a/13b24e70d2f90a322f2900c5d8e1f14fa7e2a6b3332b7309ba7b2ba51a5a/cffi-2.0.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:cf364028c016c03078a23b503f02058f1814320a56ad535686f90565636a9495", size = 218829, upload-time = "2025-09-08T23:22:19.069Z" }, - { url = "https://files.pythonhosted.org/packages/60/99/c9dc110974c59cc981b1f5b66e1d8af8af764e00f0293266824d9c4254bc/cffi-2.0.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e11e82b744887154b182fd3e7e8512418446501191994dbf9c9fc1f32cc8efd5", size = 211211, upload-time = "2025-09-08T23:22:20.588Z" }, - { url = "https://files.pythonhosted.org/packages/49/72/ff2d12dbf21aca1b32a40ed792ee6b40f6dc3a9cf1644bd7ef6e95e0ac5e/cffi-2.0.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8ea985900c5c95ce9db1745f7933eeef5d314f0565b27625d9a10ec9881e1bfb", size = 218036, upload-time = "2025-09-08T23:22:22.143Z" }, - { url = "https://files.pythonhosted.org/packages/e2/cc/027d7fb82e58c48ea717149b03bcadcbdc293553edb283af792bd4bcbb3f/cffi-2.0.0-cp310-cp310-win32.whl", hash = "sha256:1f72fb8906754ac8a2cc3f9f5aaa298070652a0ffae577e0ea9bd480dc3c931a", size = 172184, upload-time = "2025-09-08T23:22:23.328Z" }, - { url = "https://files.pythonhosted.org/packages/33/fa/072dd15ae27fbb4e06b437eb6e944e75b068deb09e2a2826039e49ee2045/cffi-2.0.0-cp310-cp310-win_amd64.whl", hash = "sha256:b18a3ed7d5b3bd8d9ef7a8cb226502c6bf8308df1525e1cc676c3680e7176739", size = 182790, upload-time = "2025-09-08T23:22:24.752Z" }, { url = "https://files.pythonhosted.org/packages/12/4a/3dfd5f7850cbf0d06dc84ba9aa00db766b52ca38d8b86e3a38314d52498c/cffi-2.0.0-cp311-cp311-macosx_10_13_x86_64.whl", hash = "sha256:b4c854ef3adc177950a8dfc81a86f5115d2abd545751a304c5bcf2c2c7283cfe", size = 184344, upload-time = "2025-09-08T23:22:26.456Z" }, { url = "https://files.pythonhosted.org/packages/4f/8b/f0e4c441227ba756aafbe78f117485b25bb26b1c059d01f137fa6d14896b/cffi-2.0.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:2de9a304e27f7596cd03d16f1b7c72219bd944e99cc52b84d0145aefb07cbd3c", size = 180560, upload-time = "2025-09-08T23:22:28.197Z" }, { url = "https://files.pythonhosted.org/packages/b1/b7/1200d354378ef52ec227395d95c2576330fd22a869f7a70e88e1447eb234/cffi-2.0.0-cp311-cp311-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl", hash = "sha256:baf5215e0ab74c16e2dd324e8ec067ef59e41125d3eade2b863d294fd5035c92", size = 209613, upload-time = "2025-09-08T23:22:29.475Z" }, @@ -835,18 +431,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/eb/6d/bf9bda840d5f1dfdbf0feca87fbdb64a918a69bca42cfa0ba7b137c48cb8/cffi-2.0.0-cp313-cp313-win32.whl", hash = "sha256:74a03b9698e198d47562765773b4a8309919089150a0bb17d829ad7b44b60d27", size = 172909, upload-time = "2025-09-08T23:23:14.32Z" }, { url = "https://files.pythonhosted.org/packages/37/18/6519e1ee6f5a1e579e04b9ddb6f1676c17368a7aba48299c3759bbc3c8b3/cffi-2.0.0-cp313-cp313-win_amd64.whl", hash = "sha256:19f705ada2530c1167abacb171925dd886168931e0a7b78f5bffcae5c6b5be75", size = 183402, upload-time = "2025-09-08T23:23:15.535Z" }, { url = "https://files.pythonhosted.org/packages/cb/0e/02ceeec9a7d6ee63bb596121c2c8e9b3a9e150936f4fbef6ca1943e6137c/cffi-2.0.0-cp313-cp313-win_arm64.whl", hash = "sha256:256f80b80ca3853f90c21b23ee78cd008713787b1b1e93eae9f3d6a7134abd91", size = 177780, upload-time = "2025-09-08T23:23:16.761Z" }, - { url = "https://files.pythonhosted.org/packages/c0/cc/08ed5a43f2996a16b462f64a7055c6e962803534924b9b2f1371d8c00b7b/cffi-2.0.0-cp39-cp39-macosx_10_13_x86_64.whl", hash = "sha256:fe562eb1a64e67dd297ccc4f5addea2501664954f2692b69a76449ec7913ecbf", size = 184288, upload-time = "2025-09-08T23:23:48.404Z" }, - { url = "https://files.pythonhosted.org/packages/3d/de/38d9726324e127f727b4ecc376bc85e505bfe61ef130eaf3f290c6847dd4/cffi-2.0.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:de8dad4425a6ca6e4e5e297b27b5c824ecc7581910bf9aee86cb6835e6812aa7", size = 180509, upload-time = "2025-09-08T23:23:49.73Z" }, - { url = "https://files.pythonhosted.org/packages/9b/13/c92e36358fbcc39cf0962e83223c9522154ee8630e1df7c0b3a39a8124e2/cffi-2.0.0-cp39-cp39-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl", hash = "sha256:4647afc2f90d1ddd33441e5b0e85b16b12ddec4fca55f0d9671fef036ecca27c", size = 208813, upload-time = "2025-09-08T23:23:51.263Z" }, - { url = "https://files.pythonhosted.org/packages/15/12/a7a79bd0df4c3bff744b2d7e52cc1b68d5e7e427b384252c42366dc1ecbc/cffi-2.0.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:3f4d46d8b35698056ec29bca21546e1551a205058ae1a181d871e278b0b28165", size = 216498, upload-time = "2025-09-08T23:23:52.494Z" }, - { url = "https://files.pythonhosted.org/packages/a3/ad/5c51c1c7600bdd7ed9a24a203ec255dccdd0ebf4527f7b922a0bde2fb6ed/cffi-2.0.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl", hash = "sha256:e6e73b9e02893c764e7e8d5bb5ce277f1a009cd5243f8228f75f842bf937c534", size = 203243, upload-time = "2025-09-08T23:23:53.836Z" }, - { url = "https://files.pythonhosted.org/packages/32/f2/81b63e288295928739d715d00952c8c6034cb6c6a516b17d37e0c8be5600/cffi-2.0.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.whl", hash = "sha256:cb527a79772e5ef98fb1d700678fe031e353e765d1ca2d409c92263c6d43e09f", size = 203158, upload-time = "2025-09-08T23:23:55.169Z" }, - { url = "https://files.pythonhosted.org/packages/1f/74/cc4096ce66f5939042ae094e2e96f53426a979864aa1f96a621ad128be27/cffi-2.0.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:61d028e90346df14fedc3d1e5441df818d095f3b87d286825dfcbd6459b7ef63", size = 216548, upload-time = "2025-09-08T23:23:56.506Z" }, - { url = "https://files.pythonhosted.org/packages/e8/be/f6424d1dc46b1091ffcc8964fa7c0ab0cd36839dd2761b49c90481a6ba1b/cffi-2.0.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:0f6084a0ea23d05d20c3edcda20c3d006f9b6f3fefeac38f59262e10cef47ee2", size = 218897, upload-time = "2025-09-08T23:23:57.825Z" }, - { url = "https://files.pythonhosted.org/packages/f7/e0/dda537c2309817edf60109e39265f24f24aa7f050767e22c98c53fe7f48b/cffi-2.0.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:1cd13c99ce269b3ed80b417dcd591415d3372bcac067009b6e0f59c7d4015e65", size = 211249, upload-time = "2025-09-08T23:23:59.139Z" }, - { url = "https://files.pythonhosted.org/packages/2b/e7/7c769804eb75e4c4b35e658dba01de1640a351a9653c3d49ca89d16ccc91/cffi-2.0.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:89472c9762729b5ae1ad974b777416bfda4ac5642423fa93bd57a09204712322", size = 218041, upload-time = "2025-09-08T23:24:00.496Z" }, - { url = "https://files.pythonhosted.org/packages/aa/d9/6218d78f920dcd7507fc16a766b5ef8f3b913cc7aa938e7fc80b9978d089/cffi-2.0.0-cp39-cp39-win32.whl", hash = "sha256:2081580ebb843f759b9f617314a24ed5738c51d2aee65d31e02f6f7a2b97707a", size = 172138, upload-time = "2025-09-08T23:24:01.7Z" }, - { url = "https://files.pythonhosted.org/packages/54/8f/a1e836f82d8e32a97e6b29cc8f641779181ac7363734f12df27db803ebda/cffi-2.0.0-cp39-cp39-win_amd64.whl", hash = "sha256:b882b3df248017dba09d6b16defe9b5c407fe32fc7c65a9c69798e6175601be9", size = 182794, upload-time = "2025-09-08T23:24:02.943Z" }, ] [[package]] @@ -855,22 +439,6 @@ version = "3.4.4" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/13/69/33ddede1939fdd074bce5434295f38fae7136463422fe4fd3e0e89b98062/charset_normalizer-3.4.4.tar.gz", hash = "sha256:94537985111c35f28720e43603b8e7b43a6ecfb2ce1d3058bbe955b73404e21a", size = 129418, upload-time = "2025-10-14T04:42:32.879Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/1f/b8/6d51fc1d52cbd52cd4ccedd5b5b2f0f6a11bbf6765c782298b0f3e808541/charset_normalizer-3.4.4-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:e824f1492727fa856dd6eda4f7cee25f8518a12f3c4a56a74e8095695089cf6d", size = 209709, upload-time = "2025-10-14T04:40:11.385Z" }, - { url = "https://files.pythonhosted.org/packages/5c/af/1f9d7f7faafe2ddfb6f72a2e07a548a629c61ad510fe60f9630309908fef/charset_normalizer-3.4.4-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:4bd5d4137d500351a30687c2d3971758aac9a19208fc110ccb9d7188fbe709e8", size = 148814, upload-time = "2025-10-14T04:40:13.135Z" }, - { url = "https://files.pythonhosted.org/packages/79/3d/f2e3ac2bbc056ca0c204298ea4e3d9db9b4afe437812638759db2c976b5f/charset_normalizer-3.4.4-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:027f6de494925c0ab2a55eab46ae5129951638a49a34d87f4c3eda90f696b4ad", size = 144467, upload-time = "2025-10-14T04:40:14.728Z" }, - { url = "https://files.pythonhosted.org/packages/ec/85/1bf997003815e60d57de7bd972c57dc6950446a3e4ccac43bc3070721856/charset_normalizer-3.4.4-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:f820802628d2694cb7e56db99213f930856014862f3fd943d290ea8438d07ca8", size = 162280, upload-time = "2025-10-14T04:40:16.14Z" }, - { url = "https://files.pythonhosted.org/packages/3e/8e/6aa1952f56b192f54921c436b87f2aaf7c7a7c3d0d1a765547d64fd83c13/charset_normalizer-3.4.4-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:798d75d81754988d2565bff1b97ba5a44411867c0cf32b77a7e8f8d84796b10d", size = 159454, upload-time = "2025-10-14T04:40:17.567Z" }, - { url = "https://files.pythonhosted.org/packages/36/3b/60cbd1f8e93aa25d1c669c649b7a655b0b5fb4c571858910ea9332678558/charset_normalizer-3.4.4-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:9d1bb833febdff5c8927f922386db610b49db6e0d4f4ee29601d71e7c2694313", size = 153609, upload-time = "2025-10-14T04:40:19.08Z" }, - { url = "https://files.pythonhosted.org/packages/64/91/6a13396948b8fd3c4b4fd5bc74d045f5637d78c9675585e8e9fbe5636554/charset_normalizer-3.4.4-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:9cd98cdc06614a2f768d2b7286d66805f94c48cde050acdbbb7db2600ab3197e", size = 151849, upload-time = "2025-10-14T04:40:20.607Z" }, - { url = "https://files.pythonhosted.org/packages/b7/7a/59482e28b9981d105691e968c544cc0df3b7d6133152fb3dcdc8f135da7a/charset_normalizer-3.4.4-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:077fbb858e903c73f6c9db43374fd213b0b6a778106bc7032446a8e8b5b38b93", size = 151586, upload-time = "2025-10-14T04:40:21.719Z" }, - { url = "https://files.pythonhosted.org/packages/92/59/f64ef6a1c4bdd2baf892b04cd78792ed8684fbc48d4c2afe467d96b4df57/charset_normalizer-3.4.4-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:244bfb999c71b35de57821b8ea746b24e863398194a4014e4c76adc2bbdfeff0", size = 145290, upload-time = "2025-10-14T04:40:23.069Z" }, - { url = "https://files.pythonhosted.org/packages/6b/63/3bf9f279ddfa641ffa1962b0db6a57a9c294361cc2f5fcac997049a00e9c/charset_normalizer-3.4.4-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:64b55f9dce520635f018f907ff1b0df1fdc31f2795a922fb49dd14fbcdf48c84", size = 163663, upload-time = "2025-10-14T04:40:24.17Z" }, - { url = "https://files.pythonhosted.org/packages/ed/09/c9e38fc8fa9e0849b172b581fd9803bdf6e694041127933934184e19f8c3/charset_normalizer-3.4.4-cp310-cp310-musllinux_1_2_riscv64.whl", hash = "sha256:faa3a41b2b66b6e50f84ae4a68c64fcd0c44355741c6374813a800cd6695db9e", size = 151964, upload-time = "2025-10-14T04:40:25.368Z" }, - { url = "https://files.pythonhosted.org/packages/d2/d1/d28b747e512d0da79d8b6a1ac18b7ab2ecfd81b2944c4c710e166d8dd09c/charset_normalizer-3.4.4-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:6515f3182dbe4ea06ced2d9e8666d97b46ef4c75e326b79bb624110f122551db", size = 161064, upload-time = "2025-10-14T04:40:26.806Z" }, - { url = "https://files.pythonhosted.org/packages/bb/9a/31d62b611d901c3b9e5500c36aab0ff5eb442043fb3a1c254200d3d397d9/charset_normalizer-3.4.4-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cc00f04ed596e9dc0da42ed17ac5e596c6ccba999ba6bd92b0e0aef2f170f2d6", size = 155015, upload-time = "2025-10-14T04:40:28.284Z" }, - { url = "https://files.pythonhosted.org/packages/1f/f3/107e008fa2bff0c8b9319584174418e5e5285fef32f79d8ee6a430d0039c/charset_normalizer-3.4.4-cp310-cp310-win32.whl", hash = "sha256:f34be2938726fc13801220747472850852fe6b1ea75869a048d6f896838c896f", size = 99792, upload-time = "2025-10-14T04:40:29.613Z" }, - { url = "https://files.pythonhosted.org/packages/eb/66/e396e8a408843337d7315bab30dbf106c38966f1819f123257f5520f8a96/charset_normalizer-3.4.4-cp310-cp310-win_amd64.whl", hash = "sha256:a61900df84c667873b292c3de315a786dd8dac506704dea57bc957bd31e22c7d", size = 107198, upload-time = "2025-10-14T04:40:30.644Z" }, - { url = "https://files.pythonhosted.org/packages/b5/58/01b4f815bf0312704c267f2ccb6e5d42bcc7752340cd487bc9f8c3710597/charset_normalizer-3.4.4-cp310-cp310-win_arm64.whl", hash = "sha256:cead0978fc57397645f12578bfd2d5ea9138ea0fac82b2f63f7f7c6877986a69", size = 100262, upload-time = "2025-10-14T04:40:32.108Z" }, { url = "https://files.pythonhosted.org/packages/ed/27/c6491ff4954e58a10f69ad90aca8a1b6fe9c5d3c6f380907af3c37435b59/charset_normalizer-3.4.4-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:6e1fcf0720908f200cd21aa4e6750a48ff6ce4afe7ff5a79a90d5ed8a08296f8", size = 206988, upload-time = "2025-10-14T04:40:33.79Z" }, { url = "https://files.pythonhosted.org/packages/94/59/2e87300fe67ab820b5428580a53cad894272dbb97f38a7a814a2a1ac1011/charset_normalizer-3.4.4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5f819d5fe9234f9f82d75bdfa9aef3a3d72c4d24a6e57aeaebba32a704553aa0", size = 147324, upload-time = "2025-10-14T04:40:34.961Z" }, { url = "https://files.pythonhosted.org/packages/07/fb/0cf61dc84b2b088391830f6274cb57c82e4da8bbc2efeac8c025edb88772/charset_normalizer-3.4.4-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:a59cb51917aa591b1c4e6a43c132f0cdc3c76dbad6155df4e28ee626cc77a0a3", size = 142742, upload-time = "2025-10-14T04:40:36.105Z" }, @@ -919,137 +487,15 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/89/66/c7a9e1b7429be72123441bfdbaf2bc13faab3f90b933f664db506dea5915/charset_normalizer-3.4.4-cp313-cp313-win32.whl", hash = "sha256:9b35f4c90079ff2e2edc5b26c0c77925e5d2d255c42c74fdb70fb49b172726ac", size = 99404, upload-time = "2025-10-14T04:41:29.95Z" }, { url = "https://files.pythonhosted.org/packages/c4/26/b9924fa27db384bdcd97ab83b4f0a8058d96ad9626ead570674d5e737d90/charset_normalizer-3.4.4-cp313-cp313-win_amd64.whl", hash = "sha256:b435cba5f4f750aa6c0a0d92c541fb79f69a387c91e61f1795227e4ed9cece14", size = 107092, upload-time = "2025-10-14T04:41:31.188Z" }, { url = "https://files.pythonhosted.org/packages/af/8f/3ed4bfa0c0c72a7ca17f0380cd9e4dd842b09f664e780c13cff1dcf2ef1b/charset_normalizer-3.4.4-cp313-cp313-win_arm64.whl", hash = "sha256:542d2cee80be6f80247095cc36c418f7bddd14f4a6de45af91dfad36d817bba2", size = 100408, upload-time = "2025-10-14T04:41:32.624Z" }, - { url = "https://files.pythonhosted.org/packages/46/7c/0c4760bccf082737ca7ab84a4c2034fcc06b1f21cf3032ea98bd6feb1725/charset_normalizer-3.4.4-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:a9768c477b9d7bd54bc0c86dbaebdec6f03306675526c9927c0e8a04e8f94af9", size = 209609, upload-time = "2025-10-14T04:42:10.922Z" }, - { url = "https://files.pythonhosted.org/packages/bb/a4/69719daef2f3d7f1819de60c9a6be981b8eeead7542d5ec4440f3c80e111/charset_normalizer-3.4.4-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1bee1e43c28aa63cb16e5c14e582580546b08e535299b8b6158a7c9c768a1f3d", size = 149029, upload-time = "2025-10-14T04:42:12.38Z" }, - { url = "https://files.pythonhosted.org/packages/e6/21/8d4e1d6c1e6070d3672908b8e4533a71b5b53e71d16828cc24d0efec564c/charset_normalizer-3.4.4-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:fd44c878ea55ba351104cb93cc85e74916eb8fa440ca7903e57575e97394f608", size = 144580, upload-time = "2025-10-14T04:42:13.549Z" }, - { url = "https://files.pythonhosted.org/packages/a7/0a/a616d001b3f25647a9068e0b9199f697ce507ec898cacb06a0d5a1617c99/charset_normalizer-3.4.4-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:0f04b14ffe5fdc8c4933862d8306109a2c51e0704acfa35d51598eb45a1e89fc", size = 162340, upload-time = "2025-10-14T04:42:14.892Z" }, - { url = "https://files.pythonhosted.org/packages/85/93/060b52deb249a5450460e0585c88a904a83aec474ab8e7aba787f45e79f2/charset_normalizer-3.4.4-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:cd09d08005f958f370f539f186d10aec3377d55b9eeb0d796025d4886119d76e", size = 159619, upload-time = "2025-10-14T04:42:16.676Z" }, - { url = "https://files.pythonhosted.org/packages/dd/21/0274deb1cc0632cd587a9a0ec6b4674d9108e461cb4cd40d457adaeb0564/charset_normalizer-3.4.4-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:4fe7859a4e3e8457458e2ff592f15ccb02f3da787fcd31e0183879c3ad4692a1", size = 153980, upload-time = "2025-10-14T04:42:17.917Z" }, - { url = "https://files.pythonhosted.org/packages/28/2b/e3d7d982858dccc11b31906976323d790dded2017a0572f093ff982d692f/charset_normalizer-3.4.4-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:fa09f53c465e532f4d3db095e0c55b615f010ad81803d383195b6b5ca6cbf5f3", size = 152174, upload-time = "2025-10-14T04:42:19.018Z" }, - { url = "https://files.pythonhosted.org/packages/6e/ff/4a269f8e35f1e58b2df52c131a1fa019acb7ef3f8697b7d464b07e9b492d/charset_normalizer-3.4.4-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:7fa17817dc5625de8a027cb8b26d9fefa3ea28c8253929b8d6649e705d2835b6", size = 151666, upload-time = "2025-10-14T04:42:20.171Z" }, - { url = "https://files.pythonhosted.org/packages/da/c9/ec39870f0b330d58486001dd8e532c6b9a905f5765f58a6f8204926b4a93/charset_normalizer-3.4.4-cp39-cp39-musllinux_1_2_armv7l.whl", hash = "sha256:5947809c8a2417be3267efc979c47d76a079758166f7d43ef5ae8e9f92751f88", size = 145550, upload-time = "2025-10-14T04:42:21.324Z" }, - { url = "https://files.pythonhosted.org/packages/75/8f/d186ab99e40e0ed9f82f033d6e49001701c81244d01905dd4a6924191a30/charset_normalizer-3.4.4-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:4902828217069c3c5c71094537a8e623f5d097858ac6ca8252f7b4d10b7560f1", size = 163721, upload-time = "2025-10-14T04:42:22.46Z" }, - { url = "https://files.pythonhosted.org/packages/96/b1/6047663b9744df26a7e479ac1e77af7134b1fcf9026243bb48ee2d18810f/charset_normalizer-3.4.4-cp39-cp39-musllinux_1_2_riscv64.whl", hash = "sha256:7c308f7e26e4363d79df40ca5b2be1c6ba9f02bdbccfed5abddb7859a6ce72cf", size = 152127, upload-time = "2025-10-14T04:42:23.712Z" }, - { url = "https://files.pythonhosted.org/packages/59/78/e5a6eac9179f24f704d1be67d08704c3c6ab9f00963963524be27c18ed87/charset_normalizer-3.4.4-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:2c9d3c380143a1fedbff95a312aa798578371eb29da42106a29019368a475318", size = 161175, upload-time = "2025-10-14T04:42:24.87Z" }, - { url = "https://files.pythonhosted.org/packages/e5/43/0e626e42d54dd2f8dd6fc5e1c5ff00f05fbca17cb699bedead2cae69c62f/charset_normalizer-3.4.4-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:cb01158d8b88ee68f15949894ccc6712278243d95f344770fa7593fa2d94410c", size = 155375, upload-time = "2025-10-14T04:42:27.246Z" }, - { url = "https://files.pythonhosted.org/packages/e9/91/d9615bf2e06f35e4997616ff31248c3657ed649c5ab9d35ea12fce54e380/charset_normalizer-3.4.4-cp39-cp39-win32.whl", hash = "sha256:2677acec1a2f8ef614c6888b5b4ae4060cc184174a938ed4e8ef690e15d3e505", size = 99692, upload-time = "2025-10-14T04:42:28.425Z" }, - { url = "https://files.pythonhosted.org/packages/d1/a9/6c040053909d9d1ef4fcab45fddec083aedc9052c10078339b47c8573ea8/charset_normalizer-3.4.4-cp39-cp39-win_amd64.whl", hash = "sha256:f8e160feb2aed042cd657a72acc0b481212ed28b1b9a95c0cee1621b524e1966", size = 107192, upload-time = "2025-10-14T04:42:29.482Z" }, - { url = "https://files.pythonhosted.org/packages/f0/c6/4fa536b2c0cd3edfb7ccf8469fa0f363ea67b7213a842b90909ca33dd851/charset_normalizer-3.4.4-cp39-cp39-win_arm64.whl", hash = "sha256:b5d84d37db046c5ca74ee7bb47dd6cbc13f80665fdde3e8040bdd3fb015ecb50", size = 100220, upload-time = "2025-10-14T04:42:30.632Z" }, { url = "https://files.pythonhosted.org/packages/0a/4c/925909008ed5a988ccbb72dcc897407e5d6d3bd72410d69e051fc0c14647/charset_normalizer-3.4.4-py3-none-any.whl", hash = "sha256:7a32c560861a02ff789ad905a2fe94e3f840803362c84fecf1851cb4cf3dc37f", size = 53402, upload-time = "2025-10-14T04:42:31.76Z" }, ] -[[package]] -name = "click" -version = "8.1.8" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", -] -dependencies = [ - { name = "colorama", marker = "(python_full_version < '3.10' and sys_platform == 'win32') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/b9/2e/0090cbf739cee7d23781ad4b89a9894a41538e4fcf4c31dcdd705b78eb8b/click-8.1.8.tar.gz", hash = "sha256:ed53c9d8990d83c2a27deae68e4ee337473f6330c040a31d4225c9574d16096a", size = 226593, upload-time = "2024-12-21T18:38:44.339Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/7e/d4/7ebdbd03970677812aac39c869717059dbb71a4cfc033ca6e5221787892c/click-8.1.8-py3-none-any.whl", hash = "sha256:63c132bbbed01578a06712a2d1f497bb62d9c1c0d329b7903a866228027263b2", size = 98188, upload-time = "2024-12-21T18:38:41.666Z" }, -] - [[package]] name = "click" version = "8.3.1" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.11.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.10.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.11.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.10.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", -] dependencies = [ - { name = "colorama", marker = "(python_full_version >= '3.10' and sys_platform == 'win32') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "colorama", marker = "sys_platform == 'win32' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/3d/fa/656b739db8587d7b5dfa22e22ed02566950fbfbcdc20311993483657a5c0/click-8.3.1.tar.gz", hash = "sha256:12ff4785d337a1bb490bb7e9c2b1ee5da3112e94a8622f26a6c77f5d2fc6842a", size = 295065, upload-time = "2025-11-15T20:45:42.706Z" } wheels = [ @@ -1074,18 +520,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6", size = 25335, upload-time = "2022-10-25T02:36:20.889Z" }, ] -[[package]] -name = "coloredlogs" -version = "15.0.1" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "humanfriendly", marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/cc/c7/eed8f27100517e8c0e6b923d5f0845d0cb99763da6fdee00478f91db7325/coloredlogs-15.0.1.tar.gz", hash = "sha256:7c991aa71a4577af2f82600d8f8f3a89f936baeaf9b50a9c197da014e5bf16b0", size = 278520, upload-time = "2021-06-11T10:22:45.202Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/a7/06/3d6badcf13db419e25b07041d9c7b4a2c331d3f4e7134445ec5df57714cd/coloredlogs-15.0.1-py2.py3-none-any.whl", hash = "sha256:612ee75c546f53e92e70049c9dbfcc18c935a2b9a53b66085ce9ef6a6e5c0934", size = 46018, upload-time = "2021-06-11T10:22:42.561Z" }, -] - [[package]] name = "colorlog" version = "6.10.1" @@ -1098,250 +532,12 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/6d/c1/e419ef3723a074172b68aaa89c9f3de486ed4c2399e2dbd8113a4fdcaf9e/colorlog-6.10.1-py3-none-any.whl", hash = "sha256:2d7e8348291948af66122cff006c9f8da6255d224e7cf8e37d8de2df3bad8c9c", size = 11743, upload-time = "2025-10-16T16:14:10.512Z" }, ] -[[package]] -name = "contourpy" -version = "1.3.0" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", -] -dependencies = [ - { name = "numpy", marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/f5/f6/31a8f28b4a2a4fa0e01085e542f3081ab0588eff8e589d39d775172c9792/contourpy-1.3.0.tar.gz", hash = "sha256:7ffa0db17717a8ffb127efd0c95a4362d996b892c2904db72428d5b52e1938a4", size = 13464370, upload-time = "2024-08-27T21:00:03.328Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/6c/e0/be8dcc796cfdd96708933e0e2da99ba4bb8f9b2caa9d560a50f3f09a65f3/contourpy-1.3.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:880ea32e5c774634f9fcd46504bf9f080a41ad855f4fef54f5380f5133d343c7", size = 265366, upload-time = "2024-08-27T20:50:09.947Z" }, - { url = "https://files.pythonhosted.org/packages/50/d6/c953b400219443535d412fcbbc42e7a5e823291236bc0bb88936e3cc9317/contourpy-1.3.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:76c905ef940a4474a6289c71d53122a4f77766eef23c03cd57016ce19d0f7b42", size = 249226, upload-time = "2024-08-27T20:50:16.1Z" }, - { url = "https://files.pythonhosted.org/packages/6f/b4/6fffdf213ffccc28483c524b9dad46bb78332851133b36ad354b856ddc7c/contourpy-1.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:92f8557cbb07415a4d6fa191f20fd9d2d9eb9c0b61d1b2f52a8926e43c6e9af7", size = 308460, upload-time = "2024-08-27T20:50:22.536Z" }, - { url = "https://files.pythonhosted.org/packages/cf/6c/118fc917b4050f0afe07179a6dcbe4f3f4ec69b94f36c9e128c4af480fb8/contourpy-1.3.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:36f965570cff02b874773c49bfe85562b47030805d7d8360748f3eca570f4cab", size = 347623, upload-time = "2024-08-27T20:50:28.806Z" }, - { url = "https://files.pythonhosted.org/packages/f9/a4/30ff110a81bfe3abf7b9673284d21ddce8cc1278f6f77393c91199da4c90/contourpy-1.3.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cacd81e2d4b6f89c9f8a5b69b86490152ff39afc58a95af002a398273e5ce589", size = 317761, upload-time = "2024-08-27T20:50:35.126Z" }, - { url = "https://files.pythonhosted.org/packages/99/e6/d11966962b1aa515f5586d3907ad019f4b812c04e4546cc19ebf62b5178e/contourpy-1.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:69375194457ad0fad3a839b9e29aa0b0ed53bb54db1bfb6c3ae43d111c31ce41", size = 322015, upload-time = "2024-08-27T20:50:40.318Z" }, - { url = "https://files.pythonhosted.org/packages/4d/e3/182383743751d22b7b59c3c753277b6aee3637049197624f333dac5b4c80/contourpy-1.3.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:7a52040312b1a858b5e31ef28c2e865376a386c60c0e248370bbea2d3f3b760d", size = 1262672, upload-time = "2024-08-27T20:50:55.643Z" }, - { url = "https://files.pythonhosted.org/packages/78/53/974400c815b2e605f252c8fb9297e2204347d1755a5374354ee77b1ea259/contourpy-1.3.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:3faeb2998e4fcb256542e8a926d08da08977f7f5e62cf733f3c211c2a5586223", size = 1321688, upload-time = "2024-08-27T20:51:11.293Z" }, - { url = "https://files.pythonhosted.org/packages/52/29/99f849faed5593b2926a68a31882af98afbeac39c7fdf7de491d9c85ec6a/contourpy-1.3.0-cp310-cp310-win32.whl", hash = "sha256:36e0cff201bcb17a0a8ecc7f454fe078437fa6bda730e695a92f2d9932bd507f", size = 171145, upload-time = "2024-08-27T20:51:15.2Z" }, - { url = "https://files.pythonhosted.org/packages/a9/97/3f89bba79ff6ff2b07a3cbc40aa693c360d5efa90d66e914f0ff03b95ec7/contourpy-1.3.0-cp310-cp310-win_amd64.whl", hash = "sha256:87ddffef1dbe5e669b5c2440b643d3fdd8622a348fe1983fad7a0f0ccb1cd67b", size = 216019, upload-time = "2024-08-27T20:51:19.365Z" }, - { url = "https://files.pythonhosted.org/packages/b3/1f/9375917786cb39270b0ee6634536c0e22abf225825602688990d8f5c6c19/contourpy-1.3.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:0fa4c02abe6c446ba70d96ece336e621efa4aecae43eaa9b030ae5fb92b309ad", size = 266356, upload-time = "2024-08-27T20:51:24.146Z" }, - { url = "https://files.pythonhosted.org/packages/05/46/9256dd162ea52790c127cb58cfc3b9e3413a6e3478917d1f811d420772ec/contourpy-1.3.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:834e0cfe17ba12f79963861e0f908556b2cedd52e1f75e6578801febcc6a9f49", size = 250915, upload-time = "2024-08-27T20:51:28.683Z" }, - { url = "https://files.pythonhosted.org/packages/e1/5d/3056c167fa4486900dfbd7e26a2fdc2338dc58eee36d490a0ed3ddda5ded/contourpy-1.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dbc4c3217eee163fa3984fd1567632b48d6dfd29216da3ded3d7b844a8014a66", size = 310443, upload-time = "2024-08-27T20:51:33.675Z" }, - { url = "https://files.pythonhosted.org/packages/ca/c2/1a612e475492e07f11c8e267ea5ec1ce0d89971be496c195e27afa97e14a/contourpy-1.3.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4865cd1d419e0c7a7bf6de1777b185eebdc51470800a9f42b9e9decf17762081", size = 348548, upload-time = "2024-08-27T20:51:39.322Z" }, - { url = "https://files.pythonhosted.org/packages/45/cf/2c2fc6bb5874158277b4faf136847f0689e1b1a1f640a36d76d52e78907c/contourpy-1.3.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:303c252947ab4b14c08afeb52375b26781ccd6a5ccd81abcdfc1fafd14cf93c1", size = 319118, upload-time = "2024-08-27T20:51:44.717Z" }, - { url = "https://files.pythonhosted.org/packages/03/33/003065374f38894cdf1040cef474ad0546368eea7e3a51d48b8a423961f8/contourpy-1.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:637f674226be46f6ba372fd29d9523dd977a291f66ab2a74fbeb5530bb3f445d", size = 323162, upload-time = "2024-08-27T20:51:49.683Z" }, - { url = "https://files.pythonhosted.org/packages/42/80/e637326e85e4105a802e42959f56cff2cd39a6b5ef68d5d9aee3ea5f0e4c/contourpy-1.3.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:76a896b2f195b57db25d6b44e7e03f221d32fe318d03ede41f8b4d9ba1bff53c", size = 1265396, upload-time = "2024-08-27T20:52:04.926Z" }, - { url = "https://files.pythonhosted.org/packages/7c/3b/8cbd6416ca1bbc0202b50f9c13b2e0b922b64be888f9d9ee88e6cfabfb51/contourpy-1.3.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:e1fd23e9d01591bab45546c089ae89d926917a66dceb3abcf01f6105d927e2cb", size = 1324297, upload-time = "2024-08-27T20:52:21.843Z" }, - { url = "https://files.pythonhosted.org/packages/4d/2c/021a7afaa52fe891f25535506cc861c30c3c4e5a1c1ce94215e04b293e72/contourpy-1.3.0-cp311-cp311-win32.whl", hash = "sha256:d402880b84df3bec6eab53cd0cf802cae6a2ef9537e70cf75e91618a3801c20c", size = 171808, upload-time = "2024-08-27T20:52:25.163Z" }, - { url = "https://files.pythonhosted.org/packages/8d/2f/804f02ff30a7fae21f98198828d0857439ec4c91a96e20cf2d6c49372966/contourpy-1.3.0-cp311-cp311-win_amd64.whl", hash = "sha256:6cb6cc968059db9c62cb35fbf70248f40994dfcd7aa10444bbf8b3faeb7c2d67", size = 217181, upload-time = "2024-08-27T20:52:29.13Z" }, - { url = "https://files.pythonhosted.org/packages/c9/92/8e0bbfe6b70c0e2d3d81272b58c98ac69ff1a4329f18c73bd64824d8b12e/contourpy-1.3.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:570ef7cf892f0afbe5b2ee410c507ce12e15a5fa91017a0009f79f7d93a1268f", size = 267838, upload-time = "2024-08-27T20:52:33.911Z" }, - { url = "https://files.pythonhosted.org/packages/e3/04/33351c5d5108460a8ce6d512307690b023f0cfcad5899499f5c83b9d63b1/contourpy-1.3.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:da84c537cb8b97d153e9fb208c221c45605f73147bd4cadd23bdae915042aad6", size = 251549, upload-time = "2024-08-27T20:52:39.179Z" }, - { url = "https://files.pythonhosted.org/packages/51/3d/aa0fe6ae67e3ef9f178389e4caaaa68daf2f9024092aa3c6032e3d174670/contourpy-1.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0be4d8425bfa755e0fd76ee1e019636ccc7c29f77a7c86b4328a9eb6a26d0639", size = 303177, upload-time = "2024-08-27T20:52:44.789Z" }, - { url = "https://files.pythonhosted.org/packages/56/c3/c85a7e3e0cab635575d3b657f9535443a6f5d20fac1a1911eaa4bbe1aceb/contourpy-1.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9c0da700bf58f6e0b65312d0a5e695179a71d0163957fa381bb3c1f72972537c", size = 341735, upload-time = "2024-08-27T20:52:51.05Z" }, - { url = "https://files.pythonhosted.org/packages/dd/8d/20f7a211a7be966a53f474bc90b1a8202e9844b3f1ef85f3ae45a77151ee/contourpy-1.3.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:eb8b141bb00fa977d9122636b16aa67d37fd40a3d8b52dd837e536d64b9a4d06", size = 314679, upload-time = "2024-08-27T20:52:58.473Z" }, - { url = "https://files.pythonhosted.org/packages/6e/be/524e377567defac0e21a46e2a529652d165fed130a0d8a863219303cee18/contourpy-1.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3634b5385c6716c258d0419c46d05c8aa7dc8cb70326c9a4fb66b69ad2b52e09", size = 320549, upload-time = "2024-08-27T20:53:06.593Z" }, - { url = "https://files.pythonhosted.org/packages/0f/96/fdb2552a172942d888915f3a6663812e9bc3d359d53dafd4289a0fb462f0/contourpy-1.3.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:0dce35502151b6bd35027ac39ba6e5a44be13a68f55735c3612c568cac3805fd", size = 1263068, upload-time = "2024-08-27T20:53:23.442Z" }, - { url = "https://files.pythonhosted.org/packages/2a/25/632eab595e3140adfa92f1322bf8915f68c932bac468e89eae9974cf1c00/contourpy-1.3.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:aea348f053c645100612b333adc5983d87be69acdc6d77d3169c090d3b01dc35", size = 1322833, upload-time = "2024-08-27T20:53:39.243Z" }, - { url = "https://files.pythonhosted.org/packages/73/e3/69738782e315a1d26d29d71a550dbbe3eb6c653b028b150f70c1a5f4f229/contourpy-1.3.0-cp312-cp312-win32.whl", hash = "sha256:90f73a5116ad1ba7174341ef3ea5c3150ddf20b024b98fb0c3b29034752c8aeb", size = 172681, upload-time = "2024-08-27T20:53:43.05Z" }, - { url = "https://files.pythonhosted.org/packages/0c/89/9830ba00d88e43d15e53d64931e66b8792b46eb25e2050a88fec4a0df3d5/contourpy-1.3.0-cp312-cp312-win_amd64.whl", hash = "sha256:b11b39aea6be6764f84360fce6c82211a9db32a7c7de8fa6dd5397cf1d079c3b", size = 218283, upload-time = "2024-08-27T20:53:47.232Z" }, - { url = "https://files.pythonhosted.org/packages/53/a1/d20415febfb2267af2d7f06338e82171824d08614084714fb2c1dac9901f/contourpy-1.3.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:3e1c7fa44aaae40a2247e2e8e0627f4bea3dd257014764aa644f319a5f8600e3", size = 267879, upload-time = "2024-08-27T20:53:51.597Z" }, - { url = "https://files.pythonhosted.org/packages/aa/45/5a28a3570ff6218d8bdfc291a272a20d2648104815f01f0177d103d985e1/contourpy-1.3.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:364174c2a76057feef647c802652f00953b575723062560498dc7930fc9b1cb7", size = 251573, upload-time = "2024-08-27T20:53:55.659Z" }, - { url = "https://files.pythonhosted.org/packages/39/1c/d3f51540108e3affa84f095c8b04f0aa833bb797bc8baa218a952a98117d/contourpy-1.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:32b238b3b3b649e09ce9aaf51f0c261d38644bdfa35cbaf7b263457850957a84", size = 303184, upload-time = "2024-08-27T20:54:00.225Z" }, - { url = "https://files.pythonhosted.org/packages/00/56/1348a44fb6c3a558c1a3a0cd23d329d604c99d81bf5a4b58c6b71aab328f/contourpy-1.3.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d51fca85f9f7ad0b65b4b9fe800406d0d77017d7270d31ec3fb1cc07358fdea0", size = 340262, upload-time = "2024-08-27T20:54:05.234Z" }, - { url = "https://files.pythonhosted.org/packages/2b/23/00d665ba67e1bb666152131da07e0f24c95c3632d7722caa97fb61470eca/contourpy-1.3.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:732896af21716b29ab3e988d4ce14bc5133733b85956316fb0c56355f398099b", size = 313806, upload-time = "2024-08-27T20:54:09.889Z" }, - { url = "https://files.pythonhosted.org/packages/5a/42/3cf40f7040bb8362aea19af9a5fb7b32ce420f645dd1590edcee2c657cd5/contourpy-1.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d73f659398a0904e125280836ae6f88ba9b178b2fed6884f3b1f95b989d2c8da", size = 319710, upload-time = "2024-08-27T20:54:14.536Z" }, - { url = "https://files.pythonhosted.org/packages/05/32/f3bfa3fc083b25e1a7ae09197f897476ee68e7386e10404bdf9aac7391f0/contourpy-1.3.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c6c7c2408b7048082932cf4e641fa3b8ca848259212f51c8c59c45aa7ac18f14", size = 1264107, upload-time = "2024-08-27T20:54:29.735Z" }, - { url = "https://files.pythonhosted.org/packages/1c/1e/1019d34473a736664f2439542b890b2dc4c6245f5c0d8cdfc0ccc2cab80c/contourpy-1.3.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:f317576606de89da6b7e0861cf6061f6146ead3528acabff9236458a6ba467f8", size = 1322458, upload-time = "2024-08-27T20:54:45.507Z" }, - { url = "https://files.pythonhosted.org/packages/22/85/4f8bfd83972cf8909a4d36d16b177f7b8bdd942178ea4bf877d4a380a91c/contourpy-1.3.0-cp313-cp313-win32.whl", hash = "sha256:31cd3a85dbdf1fc002280c65caa7e2b5f65e4a973fcdf70dd2fdcb9868069294", size = 172643, upload-time = "2024-08-27T20:55:52.754Z" }, - { url = "https://files.pythonhosted.org/packages/cc/4a/fb3c83c1baba64ba90443626c228ca14f19a87c51975d3b1de308dd2cf08/contourpy-1.3.0-cp313-cp313-win_amd64.whl", hash = "sha256:4553c421929ec95fb07b3aaca0fae668b2eb5a5203d1217ca7c34c063c53d087", size = 218301, upload-time = "2024-08-27T20:55:56.509Z" }, - { url = "https://files.pythonhosted.org/packages/76/65/702f4064f397821fea0cb493f7d3bc95a5d703e20954dce7d6d39bacf378/contourpy-1.3.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:345af746d7766821d05d72cb8f3845dfd08dd137101a2cb9b24de277d716def8", size = 278972, upload-time = "2024-08-27T20:54:50.347Z" }, - { url = "https://files.pythonhosted.org/packages/80/85/21f5bba56dba75c10a45ec00ad3b8190dbac7fd9a8a8c46c6116c933e9cf/contourpy-1.3.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:3bb3808858a9dc68f6f03d319acd5f1b8a337e6cdda197f02f4b8ff67ad2057b", size = 263375, upload-time = "2024-08-27T20:54:54.909Z" }, - { url = "https://files.pythonhosted.org/packages/0a/64/084c86ab71d43149f91ab3a4054ccf18565f0a8af36abfa92b1467813ed6/contourpy-1.3.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:420d39daa61aab1221567b42eecb01112908b2cab7f1b4106a52caaec8d36973", size = 307188, upload-time = "2024-08-27T20:55:00.184Z" }, - { url = "https://files.pythonhosted.org/packages/3d/ff/d61a4c288dc42da0084b8d9dc2aa219a850767165d7d9a9c364ff530b509/contourpy-1.3.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4d63ee447261e963af02642ffcb864e5a2ee4cbfd78080657a9880b8b1868e18", size = 345644, upload-time = "2024-08-27T20:55:05.673Z" }, - { url = "https://files.pythonhosted.org/packages/ca/aa/00d2313d35ec03f188e8f0786c2fc61f589306e02fdc158233697546fd58/contourpy-1.3.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:167d6c890815e1dac9536dca00828b445d5d0df4d6a8c6adb4a7ec3166812fa8", size = 317141, upload-time = "2024-08-27T20:55:11.047Z" }, - { url = "https://files.pythonhosted.org/packages/8d/6a/b5242c8cb32d87f6abf4f5e3044ca397cb1a76712e3fa2424772e3ff495f/contourpy-1.3.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:710a26b3dc80c0e4febf04555de66f5fd17e9cf7170a7b08000601a10570bda6", size = 323469, upload-time = "2024-08-27T20:55:15.914Z" }, - { url = "https://files.pythonhosted.org/packages/6f/a6/73e929d43028a9079aca4bde107494864d54f0d72d9db508a51ff0878593/contourpy-1.3.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:75ee7cb1a14c617f34a51d11fa7524173e56551646828353c4af859c56b766e2", size = 1260894, upload-time = "2024-08-27T20:55:31.553Z" }, - { url = "https://files.pythonhosted.org/packages/2b/1e/1e726ba66eddf21c940821df8cf1a7d15cb165f0682d62161eaa5e93dae1/contourpy-1.3.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:33c92cdae89ec5135d036e7218e69b0bb2851206077251f04a6c4e0e21f03927", size = 1314829, upload-time = "2024-08-27T20:55:47.837Z" }, - { url = "https://files.pythonhosted.org/packages/b3/e3/b9f72758adb6ef7397327ceb8b9c39c75711affb220e4f53c745ea1d5a9a/contourpy-1.3.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:a11077e395f67ffc2c44ec2418cfebed032cd6da3022a94fc227b6faf8e2acb8", size = 265518, upload-time = "2024-08-27T20:56:01.333Z" }, - { url = "https://files.pythonhosted.org/packages/ec/22/19f5b948367ab5260fb41d842c7a78dae645603881ea6bc39738bcfcabf6/contourpy-1.3.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e8134301d7e204c88ed7ab50028ba06c683000040ede1d617298611f9dc6240c", size = 249350, upload-time = "2024-08-27T20:56:05.432Z" }, - { url = "https://files.pythonhosted.org/packages/26/76/0c7d43263dd00ae21a91a24381b7e813d286a3294d95d179ef3a7b9fb1d7/contourpy-1.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e12968fdfd5bb45ffdf6192a590bd8ddd3ba9e58360b29683c6bb71a7b41edca", size = 309167, upload-time = "2024-08-27T20:56:10.034Z" }, - { url = "https://files.pythonhosted.org/packages/96/3b/cadff6773e89f2a5a492c1a8068e21d3fccaf1a1c1df7d65e7c8e3ef60ba/contourpy-1.3.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:fd2a0fc506eccaaa7595b7e1418951f213cf8255be2600f1ea1b61e46a60c55f", size = 348279, upload-time = "2024-08-27T20:56:15.41Z" }, - { url = "https://files.pythonhosted.org/packages/e1/86/158cc43aa549d2081a955ab11c6bdccc7a22caacc2af93186d26f5f48746/contourpy-1.3.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4cfb5c62ce023dfc410d6059c936dcf96442ba40814aefbfa575425a3a7f19dc", size = 318519, upload-time = "2024-08-27T20:56:21.813Z" }, - { url = "https://files.pythonhosted.org/packages/05/11/57335544a3027e9b96a05948c32e566328e3a2f84b7b99a325b7a06d2b06/contourpy-1.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:68a32389b06b82c2fdd68276148d7b9275b5f5cf13e5417e4252f6d1a34f72a2", size = 321922, upload-time = "2024-08-27T20:56:26.983Z" }, - { url = "https://files.pythonhosted.org/packages/0b/e3/02114f96543f4a1b694333b92a6dcd4f8eebbefcc3a5f3bbb1316634178f/contourpy-1.3.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:94e848a6b83da10898cbf1311a815f770acc9b6a3f2d646f330d57eb4e87592e", size = 1258017, upload-time = "2024-08-27T20:56:42.246Z" }, - { url = "https://files.pythonhosted.org/packages/f3/3b/bfe4c81c6d5881c1c643dde6620be0b42bf8aab155976dd644595cfab95c/contourpy-1.3.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:d78ab28a03c854a873787a0a42254a0ccb3cb133c672f645c9f9c8f3ae9d0800", size = 1316773, upload-time = "2024-08-27T20:56:58.58Z" }, - { url = "https://files.pythonhosted.org/packages/f1/17/c52d2970784383cafb0bd918b6fb036d98d96bbf0bc1befb5d1e31a07a70/contourpy-1.3.0-cp39-cp39-win32.whl", hash = "sha256:81cb5ed4952aae6014bc9d0421dec7c5835c9c8c31cdf51910b708f548cf58e5", size = 171353, upload-time = "2024-08-27T20:57:02.718Z" }, - { url = "https://files.pythonhosted.org/packages/53/23/db9f69676308e094d3c45f20cc52e12d10d64f027541c995d89c11ad5c75/contourpy-1.3.0-cp39-cp39-win_amd64.whl", hash = "sha256:14e262f67bd7e6eb6880bc564dcda30b15e351a594657e55b7eec94b6ef72843", size = 211817, upload-time = "2024-08-27T20:57:06.328Z" }, - { url = "https://files.pythonhosted.org/packages/d1/09/60e486dc2b64c94ed33e58dcfb6f808192c03dfc5574c016218b9b7680dc/contourpy-1.3.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:fe41b41505a5a33aeaed2a613dccaeaa74e0e3ead6dd6fd3a118fb471644fd6c", size = 261886, upload-time = "2024-08-27T20:57:10.863Z" }, - { url = "https://files.pythonhosted.org/packages/19/20/b57f9f7174fcd439a7789fb47d764974ab646fa34d1790551de386457a8e/contourpy-1.3.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eca7e17a65f72a5133bdbec9ecf22401c62bcf4821361ef7811faee695799779", size = 311008, upload-time = "2024-08-27T20:57:15.588Z" }, - { url = "https://files.pythonhosted.org/packages/74/fc/5040d42623a1845d4f17a418e590fd7a79ae8cb2bad2b2f83de63c3bdca4/contourpy-1.3.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:1ec4dc6bf570f5b22ed0d7efba0dfa9c5b9e0431aeea7581aa217542d9e809a4", size = 215690, upload-time = "2024-08-27T20:57:19.321Z" }, - { url = "https://files.pythonhosted.org/packages/2b/24/dc3dcd77ac7460ab7e9d2b01a618cb31406902e50e605a8d6091f0a8f7cc/contourpy-1.3.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl", hash = "sha256:00ccd0dbaad6d804ab259820fa7cb0b8036bda0686ef844d24125d8287178ce0", size = 261894, upload-time = "2024-08-27T20:57:23.873Z" }, - { url = "https://files.pythonhosted.org/packages/b1/db/531642a01cfec39d1682e46b5457b07cf805e3c3c584ec27e2a6223f8f6c/contourpy-1.3.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8ca947601224119117f7c19c9cdf6b3ab54c5726ef1d906aa4a69dfb6dd58102", size = 311099, upload-time = "2024-08-27T20:57:28.58Z" }, - { url = "https://files.pythonhosted.org/packages/38/1e/94bda024d629f254143a134eead69e21c836429a2a6ce82209a00ddcb79a/contourpy-1.3.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:c6ec93afeb848a0845a18989da3beca3eec2c0f852322efe21af1931147d12cb", size = 215838, upload-time = "2024-08-27T20:57:32.913Z" }, -] - -[[package]] -name = "contourpy" -version = "1.3.2" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.10.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.10.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", -] -dependencies = [ - { name = "numpy", marker = "python_full_version == '3.10.*' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/66/54/eb9bfc647b19f2009dd5c7f5ec51c4e6ca831725f1aea7a993034f483147/contourpy-1.3.2.tar.gz", hash = "sha256:b6945942715a034c671b7fc54f9588126b0b8bf23db2696e3ca8328f3ff0ab54", size = 13466130, upload-time = "2025-04-15T17:47:53.79Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/12/a3/da4153ec8fe25d263aa48c1a4cbde7f49b59af86f0b6f7862788c60da737/contourpy-1.3.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ba38e3f9f330af820c4b27ceb4b9c7feee5fe0493ea53a8720f4792667465934", size = 268551, upload-time = "2025-04-15T17:34:46.581Z" }, - { url = "https://files.pythonhosted.org/packages/2f/6c/330de89ae1087eb622bfca0177d32a7ece50c3ef07b28002de4757d9d875/contourpy-1.3.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:dc41ba0714aa2968d1f8674ec97504a8f7e334f48eeacebcaa6256213acb0989", size = 253399, upload-time = "2025-04-15T17:34:51.427Z" }, - { url = "https://files.pythonhosted.org/packages/c1/bd/20c6726b1b7f81a8bee5271bed5c165f0a8e1f572578a9d27e2ccb763cb2/contourpy-1.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9be002b31c558d1ddf1b9b415b162c603405414bacd6932d031c5b5a8b757f0d", size = 312061, upload-time = "2025-04-15T17:34:55.961Z" }, - { url = "https://files.pythonhosted.org/packages/22/fc/a9665c88f8a2473f823cf1ec601de9e5375050f1958cbb356cdf06ef1ab6/contourpy-1.3.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8d2e74acbcba3bfdb6d9d8384cdc4f9260cae86ed9beee8bd5f54fee49a430b9", size = 351956, upload-time = "2025-04-15T17:35:00.992Z" }, - { url = "https://files.pythonhosted.org/packages/25/eb/9f0a0238f305ad8fb7ef42481020d6e20cf15e46be99a1fcf939546a177e/contourpy-1.3.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e259bced5549ac64410162adc973c5e2fb77f04df4a439d00b478e57a0e65512", size = 320872, upload-time = "2025-04-15T17:35:06.177Z" }, - { url = "https://files.pythonhosted.org/packages/32/5c/1ee32d1c7956923202f00cf8d2a14a62ed7517bdc0ee1e55301227fc273c/contourpy-1.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ad687a04bc802cbe8b9c399c07162a3c35e227e2daccf1668eb1f278cb698631", size = 325027, upload-time = "2025-04-15T17:35:11.244Z" }, - { url = "https://files.pythonhosted.org/packages/83/bf/9baed89785ba743ef329c2b07fd0611d12bfecbedbdd3eeecf929d8d3b52/contourpy-1.3.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:cdd22595308f53ef2f891040ab2b93d79192513ffccbd7fe19be7aa773a5e09f", size = 1306641, upload-time = "2025-04-15T17:35:26.701Z" }, - { url = "https://files.pythonhosted.org/packages/d4/cc/74e5e83d1e35de2d28bd97033426b450bc4fd96e092a1f7a63dc7369b55d/contourpy-1.3.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b4f54d6a2defe9f257327b0f243612dd051cc43825587520b1bf74a31e2f6ef2", size = 1374075, upload-time = "2025-04-15T17:35:43.204Z" }, - { url = "https://files.pythonhosted.org/packages/0c/42/17f3b798fd5e033b46a16f8d9fcb39f1aba051307f5ebf441bad1ecf78f8/contourpy-1.3.2-cp310-cp310-win32.whl", hash = "sha256:f939a054192ddc596e031e50bb13b657ce318cf13d264f095ce9db7dc6ae81c0", size = 177534, upload-time = "2025-04-15T17:35:46.554Z" }, - { url = "https://files.pythonhosted.org/packages/54/ec/5162b8582f2c994721018d0c9ece9dc6ff769d298a8ac6b6a652c307e7df/contourpy-1.3.2-cp310-cp310-win_amd64.whl", hash = "sha256:c440093bbc8fc21c637c03bafcbef95ccd963bc6e0514ad887932c18ca2a759a", size = 221188, upload-time = "2025-04-15T17:35:50.064Z" }, - { url = "https://files.pythonhosted.org/packages/b3/b9/ede788a0b56fc5b071639d06c33cb893f68b1178938f3425debebe2dab78/contourpy-1.3.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6a37a2fb93d4df3fc4c0e363ea4d16f83195fc09c891bc8ce072b9d084853445", size = 269636, upload-time = "2025-04-15T17:35:54.473Z" }, - { url = "https://files.pythonhosted.org/packages/e6/75/3469f011d64b8bbfa04f709bfc23e1dd71be54d05b1b083be9f5b22750d1/contourpy-1.3.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b7cd50c38f500bbcc9b6a46643a40e0913673f869315d8e70de0438817cb7773", size = 254636, upload-time = "2025-04-15T17:35:58.283Z" }, - { url = "https://files.pythonhosted.org/packages/8d/2f/95adb8dae08ce0ebca4fd8e7ad653159565d9739128b2d5977806656fcd2/contourpy-1.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d6658ccc7251a4433eebd89ed2672c2ed96fba367fd25ca9512aa92a4b46c4f1", size = 313053, upload-time = "2025-04-15T17:36:03.235Z" }, - { url = "https://files.pythonhosted.org/packages/c3/a6/8ccf97a50f31adfa36917707fe39c9a0cbc24b3bbb58185577f119736cc9/contourpy-1.3.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:70771a461aaeb335df14deb6c97439973d253ae70660ca085eec25241137ef43", size = 352985, upload-time = "2025-04-15T17:36:08.275Z" }, - { url = "https://files.pythonhosted.org/packages/1d/b6/7925ab9b77386143f39d9c3243fdd101621b4532eb126743201160ffa7e6/contourpy-1.3.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:65a887a6e8c4cd0897507d814b14c54a8c2e2aa4ac9f7686292f9769fcf9a6ab", size = 323750, upload-time = "2025-04-15T17:36:13.29Z" }, - { url = "https://files.pythonhosted.org/packages/c2/f3/20c5d1ef4f4748e52d60771b8560cf00b69d5c6368b5c2e9311bcfa2a08b/contourpy-1.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3859783aefa2b8355697f16642695a5b9792e7a46ab86da1118a4a23a51a33d7", size = 326246, upload-time = "2025-04-15T17:36:18.329Z" }, - { url = "https://files.pythonhosted.org/packages/8c/e5/9dae809e7e0b2d9d70c52b3d24cba134dd3dad979eb3e5e71f5df22ed1f5/contourpy-1.3.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:eab0f6db315fa4d70f1d8ab514e527f0366ec021ff853d7ed6a2d33605cf4b83", size = 1308728, upload-time = "2025-04-15T17:36:33.878Z" }, - { url = "https://files.pythonhosted.org/packages/e2/4a/0058ba34aeea35c0b442ae61a4f4d4ca84d6df8f91309bc2d43bb8dd248f/contourpy-1.3.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:d91a3ccc7fea94ca0acab82ceb77f396d50a1f67412efe4c526f5d20264e6ecd", size = 1375762, upload-time = "2025-04-15T17:36:51.295Z" }, - { url = "https://files.pythonhosted.org/packages/09/33/7174bdfc8b7767ef2c08ed81244762d93d5c579336fc0b51ca57b33d1b80/contourpy-1.3.2-cp311-cp311-win32.whl", hash = "sha256:1c48188778d4d2f3d48e4643fb15d8608b1d01e4b4d6b0548d9b336c28fc9b6f", size = 178196, upload-time = "2025-04-15T17:36:55.002Z" }, - { url = "https://files.pythonhosted.org/packages/5e/fe/4029038b4e1c4485cef18e480b0e2cd2d755448bb071eb9977caac80b77b/contourpy-1.3.2-cp311-cp311-win_amd64.whl", hash = "sha256:5ebac872ba09cb8f2131c46b8739a7ff71de28a24c869bcad554477eb089a878", size = 222017, upload-time = "2025-04-15T17:36:58.576Z" }, - { url = "https://files.pythonhosted.org/packages/34/f7/44785876384eff370c251d58fd65f6ad7f39adce4a093c934d4a67a7c6b6/contourpy-1.3.2-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:4caf2bcd2969402bf77edc4cb6034c7dd7c0803213b3523f111eb7460a51b8d2", size = 271580, upload-time = "2025-04-15T17:37:03.105Z" }, - { url = "https://files.pythonhosted.org/packages/93/3b/0004767622a9826ea3d95f0e9d98cd8729015768075d61f9fea8eeca42a8/contourpy-1.3.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:82199cb78276249796419fe36b7386bd8d2cc3f28b3bc19fe2454fe2e26c4c15", size = 255530, upload-time = "2025-04-15T17:37:07.026Z" }, - { url = "https://files.pythonhosted.org/packages/e7/bb/7bd49e1f4fa805772d9fd130e0d375554ebc771ed7172f48dfcd4ca61549/contourpy-1.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:106fab697af11456fcba3e352ad50effe493a90f893fca6c2ca5c033820cea92", size = 307688, upload-time = "2025-04-15T17:37:11.481Z" }, - { url = "https://files.pythonhosted.org/packages/fc/97/e1d5dbbfa170725ef78357a9a0edc996b09ae4af170927ba8ce977e60a5f/contourpy-1.3.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d14f12932a8d620e307f715857107b1d1845cc44fdb5da2bc8e850f5ceba9f87", size = 347331, upload-time = "2025-04-15T17:37:18.212Z" }, - { url = "https://files.pythonhosted.org/packages/6f/66/e69e6e904f5ecf6901be3dd16e7e54d41b6ec6ae3405a535286d4418ffb4/contourpy-1.3.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:532fd26e715560721bb0d5fc7610fce279b3699b018600ab999d1be895b09415", size = 318963, upload-time = "2025-04-15T17:37:22.76Z" }, - { url = "https://files.pythonhosted.org/packages/a8/32/b8a1c8965e4f72482ff2d1ac2cd670ce0b542f203c8e1d34e7c3e6925da7/contourpy-1.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f26b383144cf2d2c29f01a1e8170f50dacf0eac02d64139dcd709a8ac4eb3cfe", size = 323681, upload-time = "2025-04-15T17:37:33.001Z" }, - { url = "https://files.pythonhosted.org/packages/30/c6/12a7e6811d08757c7162a541ca4c5c6a34c0f4e98ef2b338791093518e40/contourpy-1.3.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:c49f73e61f1f774650a55d221803b101d966ca0c5a2d6d5e4320ec3997489441", size = 1308674, upload-time = "2025-04-15T17:37:48.64Z" }, - { url = "https://files.pythonhosted.org/packages/2a/8a/bebe5a3f68b484d3a2b8ffaf84704b3e343ef1addea528132ef148e22b3b/contourpy-1.3.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:3d80b2c0300583228ac98d0a927a1ba6a2ba6b8a742463c564f1d419ee5b211e", size = 1380480, upload-time = "2025-04-15T17:38:06.7Z" }, - { url = "https://files.pythonhosted.org/packages/34/db/fcd325f19b5978fb509a7d55e06d99f5f856294c1991097534360b307cf1/contourpy-1.3.2-cp312-cp312-win32.whl", hash = "sha256:90df94c89a91b7362e1142cbee7568f86514412ab8a2c0d0fca72d7e91b62912", size = 178489, upload-time = "2025-04-15T17:38:10.338Z" }, - { url = "https://files.pythonhosted.org/packages/01/c8/fadd0b92ffa7b5eb5949bf340a63a4a496a6930a6c37a7ba0f12acb076d6/contourpy-1.3.2-cp312-cp312-win_amd64.whl", hash = "sha256:8c942a01d9163e2e5cfb05cb66110121b8d07ad438a17f9e766317bcb62abf73", size = 223042, upload-time = "2025-04-15T17:38:14.239Z" }, - { url = "https://files.pythonhosted.org/packages/2e/61/5673f7e364b31e4e7ef6f61a4b5121c5f170f941895912f773d95270f3a2/contourpy-1.3.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:de39db2604ae755316cb5967728f4bea92685884b1e767b7c24e983ef5f771cb", size = 271630, upload-time = "2025-04-15T17:38:19.142Z" }, - { url = "https://files.pythonhosted.org/packages/ff/66/a40badddd1223822c95798c55292844b7e871e50f6bfd9f158cb25e0bd39/contourpy-1.3.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:3f9e896f447c5c8618f1edb2bafa9a4030f22a575ec418ad70611450720b5b08", size = 255670, upload-time = "2025-04-15T17:38:23.688Z" }, - { url = "https://files.pythonhosted.org/packages/1e/c7/cf9fdee8200805c9bc3b148f49cb9482a4e3ea2719e772602a425c9b09f8/contourpy-1.3.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:71e2bd4a1c4188f5c2b8d274da78faab884b59df20df63c34f74aa1813c4427c", size = 306694, upload-time = "2025-04-15T17:38:28.238Z" }, - { url = "https://files.pythonhosted.org/packages/dd/e7/ccb9bec80e1ba121efbffad7f38021021cda5be87532ec16fd96533bb2e0/contourpy-1.3.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:de425af81b6cea33101ae95ece1f696af39446db9682a0b56daaa48cfc29f38f", size = 345986, upload-time = "2025-04-15T17:38:33.502Z" }, - { url = "https://files.pythonhosted.org/packages/dc/49/ca13bb2da90391fa4219fdb23b078d6065ada886658ac7818e5441448b78/contourpy-1.3.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:977e98a0e0480d3fe292246417239d2d45435904afd6d7332d8455981c408b85", size = 318060, upload-time = "2025-04-15T17:38:38.672Z" }, - { url = "https://files.pythonhosted.org/packages/c8/65/5245ce8c548a8422236c13ffcdcdada6a2a812c361e9e0c70548bb40b661/contourpy-1.3.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:434f0adf84911c924519d2b08fc10491dd282b20bdd3fa8f60fd816ea0b48841", size = 322747, upload-time = "2025-04-15T17:38:43.712Z" }, - { url = "https://files.pythonhosted.org/packages/72/30/669b8eb48e0a01c660ead3752a25b44fdb2e5ebc13a55782f639170772f9/contourpy-1.3.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c66c4906cdbc50e9cba65978823e6e00b45682eb09adbb78c9775b74eb222422", size = 1308895, upload-time = "2025-04-15T17:39:00.224Z" }, - { url = "https://files.pythonhosted.org/packages/05/5a/b569f4250decee6e8d54498be7bdf29021a4c256e77fe8138c8319ef8eb3/contourpy-1.3.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:8b7fc0cd78ba2f4695fd0a6ad81a19e7e3ab825c31b577f384aa9d7817dc3bef", size = 1379098, upload-time = "2025-04-15T17:43:29.649Z" }, - { url = "https://files.pythonhosted.org/packages/19/ba/b227c3886d120e60e41b28740ac3617b2f2b971b9f601c835661194579f1/contourpy-1.3.2-cp313-cp313-win32.whl", hash = "sha256:15ce6ab60957ca74cff444fe66d9045c1fd3e92c8936894ebd1f3eef2fff075f", size = 178535, upload-time = "2025-04-15T17:44:44.532Z" }, - { url = "https://files.pythonhosted.org/packages/12/6e/2fed56cd47ca739b43e892707ae9a13790a486a3173be063681ca67d2262/contourpy-1.3.2-cp313-cp313-win_amd64.whl", hash = "sha256:e1578f7eafce927b168752ed7e22646dad6cd9bca673c60bff55889fa236ebf9", size = 223096, upload-time = "2025-04-15T17:44:48.194Z" }, - { url = "https://files.pythonhosted.org/packages/54/4c/e76fe2a03014a7c767d79ea35c86a747e9325537a8b7627e0e5b3ba266b4/contourpy-1.3.2-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:0475b1f6604896bc7c53bb070e355e9321e1bc0d381735421a2d2068ec56531f", size = 285090, upload-time = "2025-04-15T17:43:34.084Z" }, - { url = "https://files.pythonhosted.org/packages/7b/e2/5aba47debd55d668e00baf9651b721e7733975dc9fc27264a62b0dd26eb8/contourpy-1.3.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:c85bb486e9be652314bb5b9e2e3b0d1b2e643d5eec4992c0fbe8ac71775da739", size = 268643, upload-time = "2025-04-15T17:43:38.626Z" }, - { url = "https://files.pythonhosted.org/packages/a1/37/cd45f1f051fe6230f751cc5cdd2728bb3a203f5619510ef11e732109593c/contourpy-1.3.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:745b57db7758f3ffc05a10254edd3182a2a83402a89c00957a8e8a22f5582823", size = 310443, upload-time = "2025-04-15T17:43:44.522Z" }, - { url = "https://files.pythonhosted.org/packages/8b/a2/36ea6140c306c9ff6dd38e3bcec80b3b018474ef4d17eb68ceecd26675f4/contourpy-1.3.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:970e9173dbd7eba9b4e01aab19215a48ee5dd3f43cef736eebde064a171f89a5", size = 349865, upload-time = "2025-04-15T17:43:49.545Z" }, - { url = "https://files.pythonhosted.org/packages/95/b7/2fc76bc539693180488f7b6cc518da7acbbb9e3b931fd9280504128bf956/contourpy-1.3.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c6c4639a9c22230276b7bffb6a850dfc8258a2521305e1faefe804d006b2e532", size = 321162, upload-time = "2025-04-15T17:43:54.203Z" }, - { url = "https://files.pythonhosted.org/packages/f4/10/76d4f778458b0aa83f96e59d65ece72a060bacb20cfbee46cf6cd5ceba41/contourpy-1.3.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cc829960f34ba36aad4302e78eabf3ef16a3a100863f0d4eeddf30e8a485a03b", size = 327355, upload-time = "2025-04-15T17:44:01.025Z" }, - { url = "https://files.pythonhosted.org/packages/43/a3/10cf483ea683f9f8ab096c24bad3cce20e0d1dd9a4baa0e2093c1c962d9d/contourpy-1.3.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:d32530b534e986374fc19eaa77fcb87e8a99e5431499949b828312bdcd20ac52", size = 1307935, upload-time = "2025-04-15T17:44:17.322Z" }, - { url = "https://files.pythonhosted.org/packages/78/73/69dd9a024444489e22d86108e7b913f3528f56cfc312b5c5727a44188471/contourpy-1.3.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:e298e7e70cf4eb179cc1077be1c725b5fd131ebc81181bf0c03525c8abc297fd", size = 1372168, upload-time = "2025-04-15T17:44:33.43Z" }, - { url = "https://files.pythonhosted.org/packages/0f/1b/96d586ccf1b1a9d2004dd519b25fbf104a11589abfd05484ff12199cca21/contourpy-1.3.2-cp313-cp313t-win32.whl", hash = "sha256:d0e589ae0d55204991450bb5c23f571c64fe43adaa53f93fc902a84c96f52fe1", size = 189550, upload-time = "2025-04-15T17:44:37.092Z" }, - { url = "https://files.pythonhosted.org/packages/b0/e6/6000d0094e8a5e32ad62591c8609e269febb6e4db83a1c75ff8868b42731/contourpy-1.3.2-cp313-cp313t-win_amd64.whl", hash = "sha256:78e9253c3de756b3f6a5174d024c4835acd59eb3f8e2ca13e775dbffe1558f69", size = 238214, upload-time = "2025-04-15T17:44:40.827Z" }, - { url = "https://files.pythonhosted.org/packages/33/05/b26e3c6ecc05f349ee0013f0bb850a761016d89cec528a98193a48c34033/contourpy-1.3.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:fd93cc7f3139b6dd7aab2f26a90dde0aa9fc264dbf70f6740d498a70b860b82c", size = 265681, upload-time = "2025-04-15T17:44:59.314Z" }, - { url = "https://files.pythonhosted.org/packages/2b/25/ac07d6ad12affa7d1ffed11b77417d0a6308170f44ff20fa1d5aa6333f03/contourpy-1.3.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:107ba8a6a7eec58bb475329e6d3b95deba9440667c4d62b9b6063942b61d7f16", size = 315101, upload-time = "2025-04-15T17:45:04.165Z" }, - { url = "https://files.pythonhosted.org/packages/8f/4d/5bb3192bbe9d3f27e3061a6a8e7733c9120e203cb8515767d30973f71030/contourpy-1.3.2-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:ded1706ed0c1049224531b81128efbd5084598f18d8a2d9efae833edbd2b40ad", size = 220599, upload-time = "2025-04-15T17:45:08.456Z" }, - { url = "https://files.pythonhosted.org/packages/ff/c0/91f1215d0d9f9f343e4773ba6c9b89e8c0cc7a64a6263f21139da639d848/contourpy-1.3.2-pp311-pypy311_pp73-macosx_10_15_x86_64.whl", hash = "sha256:5f5964cdad279256c084b69c3f412b7801e15356b16efa9d78aa974041903da0", size = 266807, upload-time = "2025-04-15T17:45:15.535Z" }, - { url = "https://files.pythonhosted.org/packages/d4/79/6be7e90c955c0487e7712660d6cead01fa17bff98e0ea275737cc2bc8e71/contourpy-1.3.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:49b65a95d642d4efa8f64ba12558fcb83407e58a2dfba9d796d77b63ccfcaff5", size = 318729, upload-time = "2025-04-15T17:45:20.166Z" }, - { url = "https://files.pythonhosted.org/packages/87/68/7f46fb537958e87427d98a4074bcde4b67a70b04900cfc5ce29bc2f556c1/contourpy-1.3.2-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:8c5acb8dddb0752bf252e01a3035b21443158910ac16a3b0d20e7fed7d534ce5", size = 221791, upload-time = "2025-04-15T17:45:24.794Z" }, -] - [[package]] name = "contourpy" version = "1.3.3" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.11.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.11.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", -] dependencies = [ - { name = "numpy", marker = "python_full_version >= '3.11' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy" }, ] sdist = { url = "https://files.pythonhosted.org/packages/58/01/1253e6698a07380cd31a736d248a3f2a50a7c88779a1813da27503cadc2a/contourpy-1.3.3.tar.gz", hash = "sha256:083e12155b210502d0bca491432bb04d56dc3432f95a979b429f2848c3dbe880", size = 13466174, upload-time = "2025-07-26T12:03:12.549Z" } wheels = [ @@ -1406,11 +602,6 @@ dependencies = [ { name = "setuptools" }, ] wheels = [ - { url = "https://files.pythonhosted.org/packages/cb/e0/b69c40c3d739b213a78d327071240590792071b4f890e34088b03b95bb1e/ctranslate2-4.7.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9017a355dd7c6d29dc3bca6e9fc74827306c61b702c66bb1f6b939655e7de3fa", size = 1255773, upload-time = "2026-02-04T06:11:04.769Z" }, - { url = "https://files.pythonhosted.org/packages/51/29/e5c2fc1253e3fb9b2c86997f36524bba182a8ed77fb4f8fe8444a5649191/ctranslate2-4.7.1-cp310-cp310-macosx_11_0_x86_64.whl", hash = "sha256:6abcd0552285e7173475836f9d133e04dfc3e42ca8e6930f65eaa4b8b13a47fa", size = 11914945, upload-time = "2026-02-04T06:11:06.853Z" }, - { url = "https://files.pythonhosted.org/packages/03/25/e7fe847d3f02c84d2e9c5e8312434fbeab5af3d8916b6c8e2bdbe860d052/ctranslate2-4.7.1-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:8492cba605319e0d7f2760180957d5a2a435dfdebcef1a75d2ade740e6b9fb0b", size = 16547973, upload-time = "2026-02-04T06:11:09.021Z" }, - { url = "https://files.pythonhosted.org/packages/68/75/074ed22bc340c2e26c09af6bf85859b586516e4e2d753b20189936d0dcf7/ctranslate2-4.7.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:688bd82482b5d057eff5bc1e727f11bb9a1277b7e4fce8ab01fd3bb70e69294b", size = 38636471, upload-time = "2026-02-04T06:11:12.146Z" }, - { url = "https://files.pythonhosted.org/packages/76/b6/9baf8a565f6dcdbfbc9cfd179dd6214529838cda4e91e89b616045a670f0/ctranslate2-4.7.1-cp310-cp310-win_amd64.whl", hash = "sha256:3b39a5f4e3c87ac91976996458a64ba08a7cbf974dc0be4e6df83a9e040d4bd2", size = 18842389, upload-time = "2026-02-04T06:11:15.154Z" }, { url = "https://files.pythonhosted.org/packages/da/25/41920ccee68e91cb6fa0fc9e8078ab2b7839f2c668f750dc123144cb7c6e/ctranslate2-4.7.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f74200bab9996b14a57cf6f7cb27d0921ceedc4acc1e905598e3e85b4d75b1ec", size = 1256943, upload-time = "2026-02-04T06:11:17.781Z" }, { url = "https://files.pythonhosted.org/packages/79/22/bc81fcc9f10ba4da3ffd1a9adec15cfb73cb700b3bbe69c6c8b55d333316/ctranslate2-4.7.1-cp311-cp311-macosx_11_0_x86_64.whl", hash = "sha256:59b427eb3ac999a746315b03a63942fddd351f511db82ba1a66880d4dea98e25", size = 11916445, upload-time = "2026-02-04T06:11:19.938Z" }, { url = "https://files.pythonhosted.org/packages/0a/a7/494a66bb02c7926331cadfff51d5ce81f5abfb1e8d05d7f2459082f31b48/ctranslate2-4.7.1-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:95f0c1051c180669d2a83a44b44b518b2d1683de125f623bbc81ad5dd6f6141c", size = 16696997, upload-time = "2026-02-04T06:11:22.697Z" }, @@ -1426,11 +617,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/ea/03/c0db0a5276599fb44ceafa2f2cb1afd5628808ec406fe036060a39693680/ctranslate2-4.7.1-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:393a9e7e989034660526a2c0e8bb65d1924f43d9a5c77d336494a353d16ba2a4", size = 16860452, upload-time = "2026-02-04T06:11:52.276Z" }, { url = "https://files.pythonhosted.org/packages/0b/03/4e3728ce29d192ee75ed9a2d8589bf4f19edafe5bed3845187de51b179a3/ctranslate2-4.7.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:5a3d0682f2b9082e31c73d75b45f16cde77355ab76d7e8356a24c3cb2480a6d3", size = 38995174, upload-time = "2026-02-04T06:11:55.477Z" }, { url = "https://files.pythonhosted.org/packages/9b/15/6e8e87c6a201d69803a79ac2e29623ce7c2cc9cd1df9db99810cca714373/ctranslate2-4.7.1-cp313-cp313-win_amd64.whl", hash = "sha256:baa6d2b10f57933d8c11791e8522659217918722d07bbef2389a443801125fe7", size = 18844953, upload-time = "2026-02-04T06:11:58.519Z" }, - { url = "https://files.pythonhosted.org/packages/9b/0d/ba3c235f62f15aa044de43076984e4e2df1d6465cdfe65fb1b5d636cd413/ctranslate2-4.7.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:3f1b06df72f2031355716399e0650615b32b21a8d4b46a1182897442d1ec66d7", size = 1256209, upload-time = "2026-02-04T06:12:26.183Z" }, - { url = "https://files.pythonhosted.org/packages/a6/b9/0b7fa673454cd3ae62324e61fa99ed9bf56cd33ca72d20b7499e1b9c9ee9/ctranslate2-4.7.1-cp39-cp39-macosx_11_0_x86_64.whl", hash = "sha256:d3346676b015a8abb3363aa7b1ed2bb6571df0c669575331953cdf039a624f26", size = 11915146, upload-time = "2026-02-04T06:12:27.8Z" }, - { url = "https://files.pythonhosted.org/packages/74/0b/13048bca9a689cbfbe95276c36ffb677ef7a5fdf961e8eee6091f1fa2609/ctranslate2-4.7.1-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:7e40d1d4161357952dadadcf5459e68e358dcb03aeb31443551ddcdb6afee3c9", size = 16450243, upload-time = "2026-02-04T06:12:30.488Z" }, - { url = "https://files.pythonhosted.org/packages/bb/f0/9b6497ad801f358c255a0dec06e53eaf1567b6930ba2e81451949393a81b/ctranslate2-4.7.1-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:9ac0fdcb9b863e9fda034acc60e39e86dbbc16292b97f0eda93ca16d249517dd", size = 38593822, upload-time = "2026-02-04T06:12:33.262Z" }, - { url = "https://files.pythonhosted.org/packages/6d/aa/55a24bad327e3c55d84a9a48def74363be675900a3316f6e4452c4ea9406/ctranslate2-4.7.1-cp39-cp39-win_amd64.whl", hash = "sha256:018496ebd605ff0c488074d3f3c9a41f4f6e624c4842e7d2e351f756c40a5d60", size = 18860551, upload-time = "2026-02-04T06:12:36.05Z" }, ] [[package]] @@ -1438,12 +624,9 @@ name = "cuda-bindings" version = "12.9.4" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "cuda-pathfinder", marker = "(python_full_version >= '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version >= '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.10' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "cuda-pathfinder", marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, ] wheels = [ - { url = "https://files.pythonhosted.org/packages/37/31/bfcc870f69c6a017c4ad5c42316207fc7551940db6f3639aa4466ec5faf3/cuda_bindings-12.9.4-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:a022c96b8bd847e8dc0675523431149a4c3e872f440e3002213dbb9e08f0331a", size = 11800959, upload-time = "2025-10-21T14:51:26.458Z" }, - { url = "https://files.pythonhosted.org/packages/7a/d8/b546104b8da3f562c1ff8ab36d130c8fe1dd6a045ced80b4f6ad74f7d4e1/cuda_bindings-12.9.4-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:4d3c842c2a4303b2a580fe955018e31aea30278be19795ae05226235268032e5", size = 12148218, upload-time = "2025-10-21T14:51:28.855Z" }, - { url = "https://files.pythonhosted.org/packages/b5/1e/9c8ed3f3dbed7b7d038805fdc65cbc65fda9983e84437778a9571e7092bc/cuda_bindings-12.9.4-cp310-cp310-win_amd64.whl", hash = "sha256:f69107389e6b9948969bfd0a20c4f571fd1aefcfb1d2e1b72cc8ba5ecb7918ab", size = 11464568, upload-time = "2025-10-21T14:51:31.454Z" }, { url = "https://files.pythonhosted.org/packages/a9/2b/ebcbb60aa6dba830474cd360c42e10282f7a343c0a1f58d24fbd3b7c2d77/cuda_bindings-12.9.4-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:a6a429dc6c13148ff1e27c44f40a3dd23203823e637b87fd0854205195988306", size = 11840604, upload-time = "2025-10-21T14:51:34.565Z" }, { url = "https://files.pythonhosted.org/packages/45/e7/b47792cc2d01c7e1d37c32402182524774dadd2d26339bd224e0e913832e/cuda_bindings-12.9.4-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:c912a3d9e6b6651853eed8eed96d6800d69c08e94052c292fec3f282c5a817c9", size = 12210593, upload-time = "2025-10-21T14:51:36.574Z" }, { url = "https://files.pythonhosted.org/packages/dd/be/90d32049e06abcfba4b2e7df1dbcb5e16215c8852eef0cd8b25f38a66bd4/cuda_bindings-12.9.4-cp311-cp311-win_amd64.whl", hash = "sha256:443b0875916879c2e4c3722941e25e42d5ab9bcbf34c9e83404fb100fa1f6913", size = 11490933, upload-time = "2025-10-21T14:51:38.792Z" }, @@ -1456,9 +639,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/ec/07/6aff13bc1e977e35aaa6b22f52b172e2890c608c6db22438cf7ed2bf43a6/cuda_bindings-12.9.4-cp313-cp313t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:3adf4958dcf68ae7801a59b73fb00a8b37f8d0595060d66ceae111b1002de38d", size = 11566797, upload-time = "2025-10-21T14:51:54.581Z" }, { url = "https://files.pythonhosted.org/packages/a3/84/1e6be415e37478070aeeee5884c2022713c1ecc735e6d82d744de0252eee/cuda_bindings-12.9.4-cp313-cp313t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:56e0043c457a99ac473ddc926fe0dc4046694d99caef633e92601ab52cbe17eb", size = 11925991, upload-time = "2025-10-21T14:51:56.535Z" }, { url = "https://files.pythonhosted.org/packages/4d/3c/972edfddb4ae8a9fccd3c3766ed47453b6f805b6026b32f10209dd4b8ad4/cuda_bindings-12.9.4-cp313-cp313t-win_amd64.whl", hash = "sha256:b32d8b685f0e66f5658bcf4601ef034e89fc2843582886f0a58784a4302da06c", size = 11894363, upload-time = "2025-10-21T14:51:58.633Z" }, - { url = "https://files.pythonhosted.org/packages/c3/78/892671d08634f125c61c6ebc33fffced4aa5c330320f61da9605f8e9cbba/cuda_bindings-12.9.4-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:893ca68114b5b769c1d4c02583b91ed22691887c3ed513b59467d23540104db4", size = 11802431, upload-time = "2025-10-21T14:52:14.358Z" }, - { url = "https://files.pythonhosted.org/packages/53/1d/f7f2bcffe788aebd4325a34d8a976b219a0751c06707aa89c9e70355ceae/cuda_bindings-12.9.4-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:9866ceec83e39337d1a1d64837864c964ad902992478caa288a0bc1be95f21aa", size = 12152579, upload-time = "2025-10-21T14:52:16.731Z" }, - { url = "https://files.pythonhosted.org/packages/42/88/3864fa73d3be9e58348a743b616a3df27744fc263c583129b01306e98703/cuda_bindings-12.9.4-cp39-cp39-win_amd64.whl", hash = "sha256:37744e721a18a514423e81863f52a4f7f46f5a6f9cccd569f2735f8067f4d8c2", size = 11472523, upload-time = "2025-10-21T14:52:18.724Z" }, ] [[package]] @@ -1483,30 +663,10 @@ name = "cytoolz" version = "1.1.0" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "toolz", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "toolz" }, ] sdist = { url = "https://files.pythonhosted.org/packages/bd/d4/16916f3dc20a3f5455b63c35dcb260b3716f59ce27a93586804e70e431d5/cytoolz-1.1.0.tar.gz", hash = "sha256:13a7bf254c3c0d28b12e2290b82aed0f0977a4c2a2bf84854fcdc7796a29f3b0", size = 642510, upload-time = "2025-10-19T00:44:56.174Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/a7/7a/3244e6e3587be9abfee3b1c320e43a279831b3c3a31fe5d08c1ee6193e6b/cytoolz-1.1.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:72d7043a88ea5e61ba9d17ea0d1c1eff10f645d7edfcc4e56a31ef78be287644", size = 1307813, upload-time = "2025-10-19T00:39:34.198Z" }, - { url = "https://files.pythonhosted.org/packages/32/7e/eaf504ca59addce323ef4d4ffedc2913d83c121ec19f6419bc402f7702dc/cytoolz-1.1.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d759e9ed421bacfeb456d47af8d734c057b9912b5f2441f95b27ca35e5efab07", size = 985777, upload-time = "2025-10-19T00:39:36.545Z" }, - { url = "https://files.pythonhosted.org/packages/d4/a1/ec95443f0cf4cd0dbc574fa26ac85a0442d35f3b601a90a0e3dda077f614/cytoolz-1.1.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fdb5be8fbcc0396141189022724155a4c1c93712ac4aef8c03829af0c2a816d7", size = 982865, upload-time = "2025-10-19T00:39:38.19Z" }, - { url = "https://files.pythonhosted.org/packages/a7/1b/8503604b0c0534977363fb77d371019395dfa031a216f9b1d8729d1280e4/cytoolz-1.1.0-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:c8c0a513dc89bc05cc72893609118815bced5ef201f1a317b4cc3423b3a0e750", size = 2597969, upload-time = "2025-10-19T00:39:40.26Z" }, - { url = "https://files.pythonhosted.org/packages/4e/e5/30748da06417cb2d4bc58e380b0c11d8c6539f4e289dc1e4f4b4fc248d0e/cytoolz-1.1.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:ce94db4f8ebe842c30c0ece42ff5de977c47859088c2c363dede5a68f6906484", size = 2692230, upload-time = "2025-10-19T00:39:42.327Z" }, - { url = "https://files.pythonhosted.org/packages/d6/84/e06580b74deb97dfd3513e4e6b660c2dedc220c7653f5bd3e4f772f4d885/cytoolz-1.1.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:b622d4f54e370c853ded94a668f94fe72c6d70e06ac102f17a2746661c27ab52", size = 2565243, upload-time = "2025-10-19T00:39:44.403Z" }, - { url = "https://files.pythonhosted.org/packages/91/5e/79c0122a34c33afcb5aaee1fec35be24fe16cecefb9bb8890f2908feae56/cytoolz-1.1.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:375a65baa5a5b4ff6a0c5ff17e170cf23312e4c710755771ca966144c24216b5", size = 2868602, upload-time = "2025-10-19T00:39:46.051Z" }, - { url = "https://files.pythonhosted.org/packages/3f/84/404698ff02b32292db1e39cc4a2fbdabe15164b092cc364902984c3ce0f4/cytoolz-1.1.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:c0d51bcdb3203a062a78f66bbe33db5e3123048e24a5f0e1402422d79df8ee2d", size = 2905121, upload-time = "2025-10-19T00:39:48.078Z" }, - { url = "https://files.pythonhosted.org/packages/9f/33/afad6593829ba73fc87b5ae64441e380fc937f79f24a1cda60d23cb99b8c/cytoolz-1.1.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:1010869529bb05dc9802b6d776a34ca1b6d48b9deec70ad5e2918ae175be5c2f", size = 2684382, upload-time = "2025-10-19T00:39:49.766Z" }, - { url = "https://files.pythonhosted.org/packages/ce/86/7900013a82ca9c6cadbfb22bf50d0fbfc3b192915d2bdd9fab3f69a9afba/cytoolz-1.1.0-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:11a8f2e83295bdb33f35454d6bafcb7845b03b5881dcaed66ecbd726c7f16772", size = 2518183, upload-time = "2025-10-19T00:39:51.433Z" }, - { url = "https://files.pythonhosted.org/packages/c3/4b/acf9be2953fed6a6d795fb66de37c367915037a998a5b3d3b69476cf91fe/cytoolz-1.1.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:0499c5e0a8e688ed367a2e51cc13792ae8f08226c15f7d168589fc44b9b9cada", size = 2609368, upload-time = "2025-10-19T00:39:53.458Z" }, - { url = "https://files.pythonhosted.org/packages/fd/ec/3e30455fd526f5cc37bd3dd2a0e2aafb803ae4d271e50ce53bfc30810053/cytoolz-1.1.0-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:87d44e6033d4c5e95a7d39ba59b8e105ba1c29b1ccd1d215f26477cc1d64be39", size = 2561458, upload-time = "2025-10-19T00:39:55.493Z" }, - { url = "https://files.pythonhosted.org/packages/49/27/e5815c85bb18cdf95780f9596dcfd76dee910a4d635a1924648cb8a636c6/cytoolz-1.1.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:a68cef396a7de237f7b97422a6a450dfb111722296ba217ba5b34551832f1f6e", size = 2578236, upload-time = "2025-10-19T00:39:57.512Z" }, - { url = "https://files.pythonhosted.org/packages/17/db/588e266eff397670398ea335a809152e77b02ee92e0ec42091115b42f09b/cytoolz-1.1.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:06ad4c95b258141f138a93ebfdc1d76ac087afc1a82f1401100a1f44b44ba656", size = 2770523, upload-time = "2025-10-19T00:39:59.194Z" }, - { url = "https://files.pythonhosted.org/packages/ab/ad/82be0b999c7a0a0b362cedfc183eb090b872fd42937af2d6e97d58bc70f8/cytoolz-1.1.0-cp310-cp310-musllinux_1_2_riscv64.whl", hash = "sha256:ada59a4b3c59d4ac7162e0ed08667ffa78abf48e975c8a9f9d5b9bc50720f4fd", size = 2512909, upload-time = "2025-10-19T00:40:01.199Z" }, - { url = "https://files.pythonhosted.org/packages/25/21/45f07ab0339a20c518bc9006100922babc397ab7ea5ef40a395db83b9cdd/cytoolz-1.1.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:a8957bcaea1ba01327a9b219d2adb84144377684f51444253890dab500ca171f", size = 2755345, upload-time = "2025-10-19T00:40:03.322Z" }, - { url = "https://files.pythonhosted.org/packages/8b/a7/e530bf2b304206f79b36d793caba1ff9448348713a41bb1ad0197714a0f2/cytoolz-1.1.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:6d8cdc299d67eb0f3b9ecdafeeb55eb3b7b7470e2d950ac34b05ed4c7a5572b8", size = 2617790, upload-time = "2025-10-19T00:40:05.03Z" }, - { url = "https://files.pythonhosted.org/packages/9f/77/7f53092121d7431589344c7d65c3d43c4111547aafabb21d3ca9032d126c/cytoolz-1.1.0-cp310-cp310-win32.whl", hash = "sha256:d8e08464c5cdea4f6df31e84b11ed6bfd79cedb99fbcbfdc15eb9361a6053c5a", size = 900209, upload-time = "2025-10-19T00:40:06.647Z" }, - { url = "https://files.pythonhosted.org/packages/84/e4/902578658303b9bc76b1704d3ed85e6d307d311bd9fa0b919581bea56e62/cytoolz-1.1.0-cp310-cp310-win_amd64.whl", hash = "sha256:7e49922a7ed54262d41960bf3b835a7700327bf79cff1e9bfc73d79021132ff8", size = 944802, upload-time = "2025-10-19T00:40:08.983Z" }, - { url = "https://files.pythonhosted.org/packages/71/9f/56a7003617b4eabd8ddfb470aacc240425cbe6ddeb756adfbbaadaa175f1/cytoolz-1.1.0-cp310-cp310-win_arm64.whl", hash = "sha256:943a662d2e72ffc4438d43ab5a1de8d852237775a423236594a3b3e381b8032c", size = 904835, upload-time = "2025-10-19T00:40:11.024Z" }, { url = "https://files.pythonhosted.org/packages/69/82/edf1d0c32b6222f2c22e5618d6db855d44eb59f9b6f22436ff963c5d0a5c/cytoolz-1.1.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:dba8e5a8c6e3c789d27b0eb5e7ce5ed7d032a7a9aae17ca4ba5147b871f6e327", size = 1314345, upload-time = "2025-10-19T00:40:13.273Z" }, { url = "https://files.pythonhosted.org/packages/2d/b5/0e3c1edaa26c2bd9db90cba0ac62c85bbca84224c7ae1c2e0072c4ea64c5/cytoolz-1.1.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:44b31c05addb0889167a720123b3b497b28dd86f8a0aeaf3ae4ffa11e2c85d55", size = 989259, upload-time = "2025-10-19T00:40:15.196Z" }, { url = "https://files.pythonhosted.org/packages/09/aa/e2b2ee9fc684867e817640764ea5807f9d25aa1e7bdba02dd4b249aab0f7/cytoolz-1.1.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:653cb18c4fc5d8a8cfce2bce650aabcbe82957cd0536827367d10810566d5294", size = 986551, upload-time = "2025-10-19T00:40:16.831Z" }, @@ -1590,26 +750,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/62/d5/bf5434fde726c4f80cb99912b2d8e0afa1587557e2a2d7e0315eb942f2de/cytoolz-1.1.0-cp313-cp313t-win32.whl", hash = "sha256:10ae4718a056948d73ca3e1bb9ab1f95f897ec1e362f829b9d37cc29ab566c60", size = 951595, upload-time = "2025-10-19T00:42:42.877Z" }, { url = "https://files.pythonhosted.org/packages/64/29/39c161e9204a9715321ddea698cbd0abc317e78522c7c642363c20589e71/cytoolz-1.1.0-cp313-cp313t-win_amd64.whl", hash = "sha256:1bb77bc6197e5cb19784b6a42bb0f8427e81737a630d9d7dda62ed31733f9e6c", size = 1004445, upload-time = "2025-10-19T00:42:44.855Z" }, { url = "https://files.pythonhosted.org/packages/e2/5a/7cbff5e9a689f558cb0bdf277f9562b2ac51acf7cd15e055b8c3efb0e1ef/cytoolz-1.1.0-cp313-cp313t-win_arm64.whl", hash = "sha256:563dda652c6ff52d215704fbe6b491879b78d7bbbb3a9524ec8e763483cb459f", size = 926207, upload-time = "2025-10-19T00:42:46.456Z" }, - { url = "https://files.pythonhosted.org/packages/29/2a/ab01bc8bf611f8b7e7f42c666da585f87e4cdf88334100c86282e610ce78/cytoolz-1.1.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:08a63935c66488511b7b29b06233be0be5f4123622fc8fd488f28dc1b7e4c164", size = 1311508, upload-time = "2025-10-19T00:44:06.865Z" }, - { url = "https://files.pythonhosted.org/packages/b0/e2/1c327e551bcacb6f9e698ab4cca3174ab179c9722f4bfb6b23d063bc302e/cytoolz-1.1.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:93bd0afcc4cc05794507084afaefb161c3639f283ee629bd0e8654b5c0327ba8", size = 987745, upload-time = "2025-10-19T00:44:08.896Z" }, - { url = "https://files.pythonhosted.org/packages/7f/aa/8db92c07623df2497fcd4e8a440f6805f38f2aa0bbd3804ad02c1b838815/cytoolz-1.1.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:8f3d4da470cfd5cf44f6d682c6eb01363066e0af53ebe111225e44a618f9453d", size = 985001, upload-time = "2025-10-19T00:44:10.845Z" }, - { url = "https://files.pythonhosted.org/packages/20/be/5666749f0edc7e9febd3dea154ee566b493f6334b82bb898911946a7bafb/cytoolz-1.1.0-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:ba6c12d0e6a67399f4102b4980f4f1bebdbf226ed0a68e84617709d4009b4e71", size = 2591071, upload-time = "2025-10-19T00:44:12.686Z" }, - { url = "https://files.pythonhosted.org/packages/a2/6b/087063bb786147989224668d84a2292aed8575fae99de9a1398bf86d0994/cytoolz-1.1.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1b557071405b4aeeaa7cbec1a95d15d6c8f37622fe3f4b595311e0e226ce772c", size = 2685359, upload-time = "2025-10-19T00:44:14.451Z" }, - { url = "https://files.pythonhosted.org/packages/e3/05/697867eaf6482c43cc9178480a85c25530956339973b45c2a95d693c05d4/cytoolz-1.1.0-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:cdb406001474726a47fbe903f3aba0de86f5c0b9c9861f55c09c366368225ae0", size = 2557840, upload-time = "2025-10-19T00:44:16.178Z" }, - { url = "https://files.pythonhosted.org/packages/17/12/3b2ac292fdceb06c06f0d1c75974ae501c3634516adc56b1cc489ad90c09/cytoolz-1.1.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:b6072876ba56446d9ac29d349983677d6f44c6d1c6c1c6be44e66e377c57c767", size = 2860930, upload-time = "2025-10-19T00:44:18.266Z" }, - { url = "https://files.pythonhosted.org/packages/34/7e/42e0091eb75818685af26be86757d960e85e77cd64d635d215a7ab0da7a9/cytoolz-1.1.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:8c3784c965c9a6822d315d099c3a85b0884ac648952815891c667b469116f1d0", size = 2897288, upload-time = "2025-10-19T00:44:20.596Z" }, - { url = "https://files.pythonhosted.org/packages/e0/21/4de96bcca53006340351b7984e89847433fc2fa49c53f7ee7f23ca472eec/cytoolz-1.1.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:0cc537ad78981df1a827773069fd3b7774f4478db43f518b1616efaf87d7d8f9", size = 2676100, upload-time = "2025-10-19T00:44:22.659Z" }, - { url = "https://files.pythonhosted.org/packages/39/c9/a47ae408836ddc287ed4edc09f368444047ae2f04b91a4304e7eb9719279/cytoolz-1.1.0-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:574ee9dfdc632db8bf9237f27f2a687d1a0b90d29d5e96cab2b21fd2b419c17d", size = 2517030, upload-time = "2025-10-19T00:44:24.287Z" }, - { url = "https://files.pythonhosted.org/packages/53/27/f0f1d63cd490388cfd83c1a741214d10bad163b8a60c25b905475a06682b/cytoolz-1.1.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:6594efbaea72dc58b368b53e745ad902c8d8cc41286f00b3743ceac464d5ef3f", size = 2603191, upload-time = "2025-10-19T00:44:26.379Z" }, - { url = "https://files.pythonhosted.org/packages/31/5d/80747382712aabb4b49815a37861fe9756dc289b6f0d9c6c2032f734230d/cytoolz-1.1.0-cp39-cp39-musllinux_1_2_armv7l.whl", hash = "sha256:7c849f9ddaf3c7faba938440f9c849235a2908b303063d49da3092a93acd695b", size = 2555442, upload-time = "2025-10-19T00:44:28.335Z" }, - { url = "https://files.pythonhosted.org/packages/f9/53/2464e082ea08f7ab14f896ac4025894e41b54debca630fdb0ab4c4b7faad/cytoolz-1.1.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:1fef0296fb3577d0a08ad9b70344ee418f728f1ec21a768ffe774437d67ac859", size = 2571366, upload-time = "2025-10-19T00:44:30.399Z" }, - { url = "https://files.pythonhosted.org/packages/f0/2a/e80886c3161f0b0f8a10c09a00332be80d2b48ac6db4c66818e175dc054c/cytoolz-1.1.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:1dce1e66fdf72cc474367bd7a7f2b90ec67bb8197dc3fe8ecd08f4ce3ab950a1", size = 2763108, upload-time = "2025-10-19T00:44:32.137Z" }, - { url = "https://files.pythonhosted.org/packages/bb/15/d54c5e7c20271cb993d6c8e7d1a3395be458fe4da0b777ec9022fac12835/cytoolz-1.1.0-cp39-cp39-musllinux_1_2_riscv64.whl", hash = "sha256:202fe9975efaec0085cab14a6a6050418bc041f5316f2cf098c0cd2aced4c50e", size = 2511983, upload-time = "2025-10-19T00:44:33.951Z" }, - { url = "https://files.pythonhosted.org/packages/39/90/f0671eaf035c329d08fcb97add01c109bbbc77611532d3d6739f8ee5881f/cytoolz-1.1.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:528349434601b9d55e65c6a495494de0001c9a06b431547fea4c60b5edc7d5b3", size = 2747606, upload-time = "2025-10-19T00:44:35.823Z" }, - { url = "https://files.pythonhosted.org/packages/21/f5/b0a1677fc29d6956a7ce41acb366668064e3cf403abfb806d12f3b51e1d5/cytoolz-1.1.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:3e248cdbf2a54bafdadf4486ddd32e8352f816d3caa2014e44de99f8c525d4a8", size = 2611184, upload-time = "2025-10-19T00:44:37.588Z" }, - { url = "https://files.pythonhosted.org/packages/05/08/4ea17cbcec7ded897384f3a37144ce6b9bfef1bf599211e097ae3cde00c3/cytoolz-1.1.0-cp39-cp39-win32.whl", hash = "sha256:e63f2b70f4654648a5c6a176ae80897c0de6401f385540dce8e365019e800cfe", size = 901158, upload-time = "2025-10-19T00:44:39.27Z" }, - { url = "https://files.pythonhosted.org/packages/5d/f5/75d66b5ed3d131825f86c9b730576eee9b74928ac745d0c7ba0b0f88da48/cytoolz-1.1.0-cp39-cp39-win_amd64.whl", hash = "sha256:f731c53ed29959f105ae622b62e39603c207ed8e8cb2a40cd4accb63d9f92901", size = 946226, upload-time = "2025-10-19T00:44:40.931Z" }, - { url = "https://files.pythonhosted.org/packages/75/2f/fe71e80d067054ac2ba57d5a40c049d382ff90d2ded74ce18f6f69933ed0/cytoolz-1.1.0-cp39-cp39-win_arm64.whl", hash = "sha256:5a2120bf9e6e8f25e1b32748424a5571e319ef03a995a8fde663fd2feec1a696", size = 905864, upload-time = "2025-10-19T00:44:42.743Z" }, { url = "https://files.pythonhosted.org/packages/84/32/0522207170294cf691112a93c70a8ef942f60fa9ff8e793b63b1f09cedc0/cytoolz-1.1.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl", hash = "sha256:f32e93a55681d782fc6af939f6df36509d65122423cbc930be39b141064adff8", size = 922014, upload-time = "2025-10-19T00:44:44.911Z" }, { url = "https://files.pythonhosted.org/packages/4c/49/9be2d24adaa18fa307ff14e3e43f02b2ae4b69c4ce51cee6889eb2114990/cytoolz-1.1.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:5d9bc596751cbda8073e65be02ca11706f00029768fbbbc81e11a8c290bb41aa", size = 918134, upload-time = "2025-10-19T00:44:47.122Z" }, { url = "https://files.pythonhosted.org/packages/5c/b3/6a76c3b94c6c87c72ea822e7e67405be6b649c2e37778eeac7c0c0c69de8/cytoolz-1.1.0-pp311-pypy311_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:9b16660d01c3931951fab49db422c627897c38c1a1f0393a97582004019a4887", size = 981970, upload-time = "2025-10-19T00:44:48.906Z" }, @@ -1623,20 +763,20 @@ name = "datasets" version = "4.5.0" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "dill", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "filelock", version = "3.24.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "fsspec", extra = ["http"], marker = "(python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "httpx", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "huggingface-hub", version = "0.36.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "multiprocess", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "numpy", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "packaging", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "pandas", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "pyarrow", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "pyyaml", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "requests", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "tqdm", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "xxhash", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "dill" }, + { name = "filelock" }, + { name = "fsspec", extra = ["http"], marker = "extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "httpx" }, + { name = "huggingface-hub", version = "0.36.2", source = { registry = "https://pypi.org/simple" } }, + { name = "multiprocess" }, + { name = "numpy" }, + { name = "packaging" }, + { name = "pandas" }, + { name = "pyarrow" }, + { name = "pyyaml" }, + { name = "requests" }, + { name = "tqdm" }, + { name = "xxhash" }, ] sdist = { url = "https://files.pythonhosted.org/packages/55/bf/bb927bde63d649296c83e883171ae77074717c1b80fe2868b328bd0dbcbb/datasets-4.5.0.tar.gz", hash = "sha256:00c698ce1c2452e646cc5fad47fef39d3fe78dd650a8a6eb205bb45eb63cd500", size = 588384, upload-time = "2026-01-14T18:27:54.297Z" } wheels = [ @@ -1658,8 +798,7 @@ version = "0.9.2" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "einops" }, - { name = "matplotlib", version = "3.9.4", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "matplotlib", version = "3.10.8", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "matplotlib" }, { name = "numpy" }, { name = "optuna" }, { name = "pandas" }, @@ -1670,25 +809,15 @@ dependencies = [ { name = "requests" }, { name = "rich" }, { name = "rx" }, - { name = "scipy", version = "1.13.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "scipy", version = "1.15.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version == '3.10.*' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "scipy", version = "1.17.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "scipy" }, { name = "sounddevice" }, - { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and sys_platform == 'darwin') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.8.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(python_full_version < '3.10' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.8.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.10.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version >= '3.10' and sys_platform == 'darwin') or (python_full_version >= '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.10.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(python_full_version >= '3.10' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.10.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(python_full_version >= '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torchaudio", version = "2.8.0", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torchaudio", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and sys_platform == 'darwin') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torchaudio", version = "2.8.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu') or (python_full_version >= '3.10' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu') or (python_full_version >= '3.10' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu') or (python_full_version >= '3.10' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torchaudio", version = "2.8.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torchaudio", version = "2.10.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version >= '3.10' and sys_platform == 'darwin') or (python_full_version >= '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torchaudio", version = "2.10.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(python_full_version >= '3.10' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torchaudio", version = "2.10.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(python_full_version >= '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torchvision", version = "0.23.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torchvision", version = "0.25.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.10.0", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or sys_platform == 'darwin' or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.10.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.10.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torchaudio", version = "2.10.0", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or sys_platform == 'darwin' or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torchaudio", version = "2.10.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torchaudio", version = "2.10.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torchvision" }, { name = "tqdm" }, { name = "websocket-client" }, { name = "websocket-server" }, @@ -1719,17 +848,6 @@ version = "0.8.1" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/d5/18/9f4f975ca87a390832b1c22478f3702fcdf739f83211e24d054b7551270d/editdistance-0.8.1.tar.gz", hash = "sha256:d1cdf80a5d5014b0c9126a69a42ce55a457b457f6986ff69ca98e4fe4d2d8fed", size = 50006, upload-time = "2024-02-10T07:44:53.914Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/09/c9/302658ce7f4c537a4e85cf578d11bbf7af120a712e1d78fedc6cb8823c65/editdistance-0.8.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:adeb705f32b93accc74960d227875abff150ee42d676e428536361fe5f8f5388", size = 106150, upload-time = "2024-02-10T07:43:15.903Z" }, - { url = "https://files.pythonhosted.org/packages/45/80/0b3c7d2c0e183725986fea5dd2df11f0b4b46320e9a64f6077a121ab1f64/editdistance-0.8.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:3de77951b105d0972deec7684a0b3d1a9dee69c9b5d34f6e2acc0d76cd4a1c52", size = 80551, upload-time = "2024-02-10T07:43:17.64Z" }, - { url = "https://files.pythonhosted.org/packages/b5/14/681460965c6a4a48321b07f88de2273d097fdca0491ff55db891aacbd291/editdistance-0.8.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:5e88efb052d45e924606c305cb833a80579dca3e8e4ff01309d50ba2c1c0bbd5", size = 79142, upload-time = "2024-02-10T07:43:19.195Z" }, - { url = "https://files.pythonhosted.org/packages/ed/0d/abdbc8e394a9461cf2ae27c16564fadaa65f52bd242dd1582ae5e7736dc3/editdistance-0.8.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0247e7a1e9c66ea75211a97e725366bff19a52aac2c838ed5f90025630e976dd", size = 396768, upload-time = "2024-02-10T07:43:20.912Z" }, - { url = "https://files.pythonhosted.org/packages/c2/fb/2940d26ebda12efd280ae939436f17ac482930d862df9e774cb8b771ab03/editdistance-0.8.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:67d143429a49ab552411505f550a0fb4285a1d4336e096804d233ec495ac20fc", size = 401846, upload-time = "2024-02-10T07:43:23.169Z" }, - { url = "https://files.pythonhosted.org/packages/53/cc/c63d75c7f387d4df0645682c1ab8706c2dfe5c9c0c4999723ce9a3ba0853/editdistance-0.8.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca9d3be2b10e5d44a950a4bd1e84bca9ebbecd364bce0cf5693bf8224c78eaef", size = 397543, upload-time = "2024-02-10T07:43:24.621Z" }, - { url = "https://files.pythonhosted.org/packages/8e/38/bb0f734a7571e093184606b930734b12da5b6bff2635eba9312fe4536dd9/editdistance-0.8.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:5c72aa1df8535f2e2b3d8773a1a7da091bc1a7e52bb396e7e48d375ba687e7b2", size = 898934, upload-time = "2024-02-10T07:43:26.926Z" }, - { url = "https://files.pythonhosted.org/packages/1c/9f/624fc7a09918f850a057465f02e86f269e139a457f48ff8cabfb12701756/editdistance-0.8.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:9a606c34a2a6cc190e4fffc856b36333cdcf1f1fab5b22bd3088e585c22d6ca0", size = 959637, upload-time = "2024-02-10T07:43:28.997Z" }, - { url = "https://files.pythonhosted.org/packages/5e/5c/7fa6cc277f91c477ee370807d51c1826891dc6dfc307544223ce7f2687de/editdistance-0.8.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:5af173d442ffac33b7c7990132f97f88818a3abf4b21c0c702a7022df37c0c5c", size = 911024, upload-time = "2024-02-10T07:43:30.449Z" }, - { url = "https://files.pythonhosted.org/packages/ad/97/556215f71184291155aee340a6d34f0676e7238fdfd10615b6b775ce25fe/editdistance-0.8.1-cp310-cp310-win32.whl", hash = "sha256:fd64b58f5a7b59afd9d75982aaeeacd2a98498bf472fa0360c122ffe6ea4c871", size = 80834, upload-time = "2024-02-10T07:43:31.634Z" }, - { url = "https://files.pythonhosted.org/packages/c8/d1/7ec5f5cbb95838d0eff7f980a660c81acd1363d658f2f5d4ceba38877c5a/editdistance-0.8.1-cp310-cp310-win_amd64.whl", hash = "sha256:6c7c62c3cae45ca1fa01bb2722b297b9de1e3a244ac44cfba88bdcb488fe6aee", size = 79614, upload-time = "2024-02-10T07:43:33.255Z" }, { url = "https://files.pythonhosted.org/packages/e2/dc/d0c29fd52d8f9e795653ed2b838a2a48c739cdfff04ac5b79c6c0ecbdf79/editdistance-0.8.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:486105603a273d73d12a54f347dffa70ab281749d7c3879658b377bc49e4b98c", size = 106079, upload-time = "2024-02-10T07:43:34.34Z" }, { url = "https://files.pythonhosted.org/packages/b4/c6/75fa45d7b78fbea6fd894f4e48895a75bd3c83d4a9a6b57673881d74d3e0/editdistance-0.8.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:fad081f5f86a175c1a09a4e9e45b95c9349e454c21e181e842e01c85f1f536fc", size = 80580, upload-time = "2024-02-10T07:43:35.947Z" }, { url = "https://files.pythonhosted.org/packages/b7/a3/058d823b6285c3511dc94ed80620c3fb0c18b4aaa708f70ba71f3af28436/editdistance-0.8.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:8cb78e125f6759398885a775f5eed07c2bb72b2f86da43e674c6b6a3335b273b", size = 79087, upload-time = "2024-02-10T07:43:36.923Z" }, @@ -1752,27 +870,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/47/3d/9877566e724c8a37f2228a84ec5cbf66dbfd0673515baf68a0fe07caff40/editdistance-0.8.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:e16721636da6d6b68a2c09eaced35a94f4a4a704ec09f45756d4fd5e128ed18d", size = 929121, upload-time = "2024-02-10T07:44:02.764Z" }, { url = "https://files.pythonhosted.org/packages/d2/f5/8c50757d198b8ca30ddb91e8b8f0247a8dca04ff2ec30755245f0ab1ff0c/editdistance-0.8.1-cp312-cp312-win32.whl", hash = "sha256:87533cf2ebc3777088d991947274cd7e1014b9c861a8aa65257bcdc0ee492526", size = 81039, upload-time = "2024-02-10T07:44:04.134Z" }, { url = "https://files.pythonhosted.org/packages/28/f0/65101e51dc7c850e7b7581a5d8fa8721a1d7479a0dca6c08386328e19882/editdistance-0.8.1-cp312-cp312-win_amd64.whl", hash = "sha256:09f01ed51746d90178af7dd7ea4ebb41497ef19f53c7f327e864421743dffb0a", size = 79853, upload-time = "2024-02-10T07:44:05.687Z" }, - { url = "https://files.pythonhosted.org/packages/ba/c3/4a18329c746cf7f35e02afff502b29581c298345292e70cfa9366e7d2ac7/editdistance-0.8.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:4d8e9a3e65a68c13dcadc1d2caca620f1716a8d02f2602047e0721b509161ec7", size = 106139, upload-time = "2024-02-10T07:44:22.877Z" }, - { url = "https://files.pythonhosted.org/packages/73/81/de1fa8018b5d3ee7c622f3f19651967a9e107f4faaf0f172d2fa5a81f725/editdistance-0.8.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:7994a6a0a6ae92db87c144e12f1549ca0e50f43c6cc64e32c628e7af6b9c74b6", size = 80544, upload-time = "2024-02-10T07:44:23.908Z" }, - { url = "https://files.pythonhosted.org/packages/1c/87/2625cfae8b83c68bf19b0db93350f15f114d92b5c592a6dbfedb8c8e2344/editdistance-0.8.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:dbe0cbc15466e9b7fbf73e34bdcae11cb0c2acd09a60ef4740f2172f9aa5e751", size = 79131, upload-time = "2024-02-10T07:44:24.904Z" }, - { url = "https://files.pythonhosted.org/packages/2e/94/b3f68b42fe96ee86e5deaf375bffda0a33d0aea3c183e12648b329e70e11/editdistance-0.8.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bc5f0c7f12a3a3bf2d129e2900deaaa5e47203ef61918343ddc4b6c03e50f089", size = 396599, upload-time = "2024-02-10T07:44:25.98Z" }, - { url = "https://files.pythonhosted.org/packages/8f/b1/c8634e2dddb7ea14d99b9e7a3988124b2da08a33343eb9290d908451a3de/editdistance-0.8.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:98572c662fd7d425ff24acb8197ad4be7849558a48aebbc60012090bfda4dce9", size = 401643, upload-time = "2024-02-10T07:44:27.403Z" }, - { url = "https://files.pythonhosted.org/packages/9d/03/5f7567e9502f262d4c8ef62baa8ce20b0e9de8dc2aabe674152144b35d71/editdistance-0.8.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3b35c647a8a17b77441e7b6111b74ae1016851589109e1efc990d27225b3217b", size = 397311, upload-time = "2024-02-10T07:44:28.621Z" }, - { url = "https://files.pythonhosted.org/packages/9a/55/d25497069197e4f5f0a961003d91e7396a5ba088ac4a2efb94e6b8941601/editdistance-0.8.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:2f56c0e006f6b5207985c1bdd62e1873e66bb06a60849cad32716cad1bb3ae40", size = 898633, upload-time = "2024-02-10T07:44:30.782Z" }, - { url = "https://files.pythonhosted.org/packages/cb/4e/fb19a6d8b8434dccfe32581cf01bdf2e4b901b00bf50784097a64dd02530/editdistance-0.8.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:d6bc5a827b262dc9b0d03cfd821682334ce1280520edf6385dc1730e390b5201", size = 959353, upload-time = "2024-02-10T07:44:32.133Z" }, - { url = "https://files.pythonhosted.org/packages/f8/4c/f515792d582489d2953c5b19bfca6818a6036f8c2e9d4eda4546f854d3cc/editdistance-0.8.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:ad68a2357664e45823b38c9f67a315ff9771263ec502a710057b78c6ca6fcfcd", size = 910776, upload-time = "2024-02-10T07:44:33.579Z" }, - { url = "https://files.pythonhosted.org/packages/60/4d/a7ee5093a27e312800dadfa90de6c129d5ed5e7ae63e9bfe211db64ead63/editdistance-0.8.1-cp39-cp39-win32.whl", hash = "sha256:16b3e413c020e42b2ef2d4ba01386ead43007217f0bdd704e90474ace90d2023", size = 80828, upload-time = "2024-02-10T07:44:34.81Z" }, - { url = "https://files.pythonhosted.org/packages/0d/17/8c9dacbee53f4fc4ebfd25b0821c493aed6da547e457047f35c7430469c2/editdistance-0.8.1-cp39-cp39-win_amd64.whl", hash = "sha256:331f1a8d3a753858a9d689c0bcd79ad1959e0df464bb6c22cb263cfb6da208e4", size = 79613, upload-time = "2024-02-10T07:44:35.784Z" }, - { url = "https://files.pythonhosted.org/packages/d4/4c/c9d02eeb47815d35f8d324b52f6704ea7beb032bcb209358cac44047d413/editdistance-0.8.1-pp310-pypy310_pp73-macosx_10_9_x86_64.whl", hash = "sha256:a4a90c6b03094c07358572027a8d0a13cca7450b1aa6caca98a5f1fa4f0b8961", size = 76455, upload-time = "2024-02-10T07:44:36.838Z" }, - { url = "https://files.pythonhosted.org/packages/af/b0/2818fa6a24595dac069b0bfb9d05658406779a1ded8fd2b0c9066396cf99/editdistance-0.8.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:510a4f9ced348a4fd89ae2e102357d4d801a771e29bb2bc2f130a1692193407f", size = 84104, upload-time = "2024-02-10T07:44:37.928Z" }, - { url = "https://files.pythonhosted.org/packages/1f/d1/3d5e09bcf7fdb7aed705bf74047a8634bd2b8fd92177c25a2547e6dbadfb/editdistance-0.8.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4787fa7228ba6a34b430066d174320f011d605015baa7299c2c4911e6ea6bd46", size = 89058, upload-time = "2024-02-10T07:44:39.113Z" }, - { url = "https://files.pythonhosted.org/packages/cd/88/fca5d7b1a1edf66ce1e5b6b60bff75842e6814b4f5facbdf4585d88c912d/editdistance-0.8.1-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee02601375073afccd6b4d811129ce1cb696d47db734784d8dbd1fddcea75447", size = 84635, upload-time = "2024-02-10T07:44:40.714Z" }, - { url = "https://files.pythonhosted.org/packages/a9/91/0e6285bbe2358d81fd16313d30306b2d0036387348f7bc11d8c076ca3c72/editdistance-0.8.1-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:bc7ad9f9a20e6f351523de77c59249f005242e3f317b5de45d02c378d24f6531", size = 77389, upload-time = "2024-02-10T07:44:41.725Z" }, - { url = "https://files.pythonhosted.org/packages/f1/19/655a7e06fb5d2b41c0f2838f27c2b1b804389fa0d42fa226eb04958bfb27/editdistance-0.8.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:8131acb6b5170382b8b74efab92df8739ac591dc841314e0153af63c4493cb43", size = 76450, upload-time = "2024-02-10T07:44:48.499Z" }, - { url = "https://files.pythonhosted.org/packages/c8/e5/45f8f204a43427e14453250fbd68c6ec8fcd4e4ea664eb3c5acd09856e64/editdistance-0.8.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f182e5e1d2a446138cab085409395c62af36eb1abcbe8cfacb083febfeafd5ce", size = 84108, upload-time = "2024-02-10T07:44:49.542Z" }, - { url = "https://files.pythonhosted.org/packages/9c/ac/890a9abd8487254042a67ec9bd9f3dd64c3bd8f34c0b4015db0c4ad93890/editdistance-0.8.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7f4f19a829aff230377041acb77afec73becbebafe35b7e322be00cdb3122ddb", size = 89054, upload-time = "2024-02-10T07:44:50.736Z" }, - { url = "https://files.pythonhosted.org/packages/91/cf/3130100071e1447c5607abe050986320617e8f6157856b101f5caa25b453/editdistance-0.8.1-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b978c5927100a57791131dd2418040f4e5d33970d37b97a84c1a530ec481f557", size = 84637, upload-time = "2024-02-10T07:44:51.735Z" }, - { url = "https://files.pythonhosted.org/packages/98/c5/2ab098d1f2b7ecc1e7dfdd534be7af615732c54b46e7ca2e53a908ad457b/editdistance-0.8.1-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:0c96a8e981f385f0b7392d047c5caab8e0b24f94b71120787fd78241efc34237", size = 77383, upload-time = "2024-02-10T07:44:52.73Z" }, ] [[package]] @@ -1784,18 +881,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/2a/09/f8d8f8f31e4483c10a906437b4ce31bdf3d6d417b73fe33f1a8b59e34228/einops-0.8.2-py3-none-any.whl", hash = "sha256:54058201ac7087911181bfec4af6091bb59380360f069276601256a76af08193", size = 65638, upload-time = "2026-01-26T04:13:18.546Z" }, ] -[[package]] -name = "exceptiongroup" -version = "1.3.1" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "typing-extensions", marker = "python_full_version < '3.12' or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version == '3.12.*' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/50/79/66800aadf48771f6b62f7eb014e352e5d06856655206165d775e675a02c9/exceptiongroup-1.3.1.tar.gz", hash = "sha256:8b412432c6055b0b7d14c310000ae93352ed6754f70fa8f7c34141f91c4e3219", size = 30371, upload-time = "2025-11-21T23:01:54.787Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/8a/0e/97c33bf5009bdbac74fd2beace167cab3f978feb69cc36f1ef79360d6c4e/exceptiongroup-1.3.1-py3-none-any.whl", hash = "sha256:a7a39a3bd276781e98394987d3a5701d0c4edffb633bb7a5144577f82c773598", size = 16740, upload-time = "2025-11-21T23:01:53.443Z" }, -] - [[package]] name = "executing" version = "2.2.1" @@ -1805,126 +890,16 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/c1/ea/53f2148663b321f21b5a606bd5f191517cf40b7072c0497d3c92c4a13b1e/executing-2.2.1-py2.py3-none-any.whl", hash = "sha256:760643d3452b4d777d295bb167ccc74c64a81df23fb5e08eff250c425a4b2017", size = 28317, upload-time = "2025-09-01T09:48:08.5Z" }, ] -[[package]] -name = "fastapi" -version = "0.128.8" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", -] -dependencies = [ - { name = "annotated-doc", marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "pydantic", marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "starlette", version = "0.49.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "typing-extensions", marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "typing-inspection", marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/01/72/0df5c58c954742f31a7054e2dd1143bae0b408b7f36b59b85f928f9b456c/fastapi-0.128.8.tar.gz", hash = "sha256:3171f9f328c4a218f0a8d2ba8310ac3a55d1ee12c28c949650288aee25966007", size = 375523, upload-time = "2026-02-11T15:19:36.69Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/9f/37/37b07e276f8923c69a5df266bfcb5bac4ba8b55dfe4a126720f8c48681d1/fastapi-0.128.8-py3-none-any.whl", hash = "sha256:5618f492d0fe973a778f8fec97723f598aa9deee495040a8d51aaf3cf123ecf1", size = 103630, upload-time = "2026-02-11T15:19:35.209Z" }, -] - [[package]] name = "fastapi" version = "0.131.0" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.11.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.10.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.11.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.10.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", -] dependencies = [ - { name = "annotated-doc", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "pydantic", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "starlette", version = "0.52.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "typing-extensions", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "typing-inspection", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "annotated-doc" }, + { name = "pydantic" }, + { name = "starlette" }, + { name = "typing-extensions" }, + { name = "typing-inspection" }, ] sdist = { url = "https://files.pythonhosted.org/packages/91/32/158cbf685b7d5a26f87131069da286bf10fc9fbf7fc968d169d48a45d689/fastapi-0.131.0.tar.gz", hash = "sha256:6531155e52bee2899a932c746c9a8250f210e3c3303a5f7b9f8a808bfe0548ff", size = 369612, upload-time = "2026-02-22T16:38:11.252Z" } wheels = [ @@ -1936,15 +911,13 @@ name = "faster-whisper" version = "1.2.1" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "av", version = "15.1.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "av", version = "16.1.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "av" }, { name = "ctranslate2" }, - { name = "huggingface-hub", version = "0.36.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "huggingface-hub", version = "1.4.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "onnxruntime", version = "1.20.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "onnxruntime", version = "1.24.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "tokenizers", version = "0.21.4", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "tokenizers", version = "0.22.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "huggingface-hub", version = "0.36.2", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "huggingface-hub", version = "1.4.1", source = { registry = "https://pypi.org/simple" }, marker = "extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "onnxruntime" }, + { name = "tokenizers", version = "0.21.4", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "tokenizers", version = "0.22.2", source = { registry = "https://pypi.org/simple" }, marker = "extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, { name = "tqdm" }, ] wheels = [ @@ -1956,123 +929,20 @@ name = "fiddle" version = "0.3.0" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "absl-py", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "graphviz", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "libcst", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "typing-extensions", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "absl-py" }, + { name = "graphviz" }, + { name = "libcst" }, + { name = "typing-extensions" }, ] sdist = { url = "https://files.pythonhosted.org/packages/73/36/7a4fac76351619b36bbc7937abf59f7b601326dc4efc253b3c16819f782a/fiddle-0.3.0.tar.gz", hash = "sha256:5d083d3299a479868345513385a6c5546141bd92086c15d3dcbf8008a90075d3", size = 277884, upload-time = "2024-04-09T17:23:58.974Z" } wheels = [ { url = "https://files.pythonhosted.org/packages/3b/98/a38e949a91ff9e15874487fd8329ff53c25f3413c0cfc809eb6ff7eb7fa1/fiddle-0.3.0-py3-none-any.whl", hash = "sha256:f4824541c103a94a2f33f6c93eeddf6007c3a7300440087a95907f3e74362e61", size = 419830, upload-time = "2024-04-09T17:23:56.7Z" }, ] -[[package]] -name = "filelock" -version = "3.19.1" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", -] -sdist = { url = "https://files.pythonhosted.org/packages/40/bb/0ab3e58d22305b6f5440629d20683af28959bf793d98d11950e305c1c326/filelock-3.19.1.tar.gz", hash = "sha256:66eda1888b0171c998b35be2bcc0f6d75c388a7ce20c3f3f37aa8e96c2dddf58", size = 17687, upload-time = "2025-08-14T16:56:03.016Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/42/14/42b2651a2f46b022ccd948bca9f2d5af0fd8929c4eec235b8d6d844fbe67/filelock-3.19.1-py3-none-any.whl", hash = "sha256:d38e30481def20772f5baf097c122c3babc4fcdb7e14e57049eb9d88c6dc017d", size = 15988, upload-time = "2025-08-14T16:56:01.633Z" }, -] - [[package]] name = "filelock" version = "3.24.3" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.11.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.10.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.11.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.10.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", -] sdist = { url = "https://files.pythonhosted.org/packages/73/92/a8e2479937ff39185d20dd6a851c1a63e55849e447a55e798cc2e1f49c65/filelock-3.24.3.tar.gz", hash = "sha256:011a5644dc937c22699943ebbfc46e969cdde3e171470a6e40b9533e5a72affa", size = 37935, upload-time = "2026-02-19T00:48:20.543Z" } wheels = [ { url = "https://files.pythonhosted.org/packages/9c/0f/5d0c71a1aefeb08efff26272149e07ab922b64f46c63363756224bd6872e/filelock-3.24.3-py3-none-any.whl", hash = "sha256:426e9a4660391f7f8a810d71b0555bce9008b0a1cc342ab1f6947d37639e002d", size = 24331, upload-time = "2026-02-19T00:48:18.465Z" }, @@ -2086,163 +956,12 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/e8/2d/d2a548598be01649e2d46231d151a6c56d10b964d94043a335ae56ea2d92/flatbuffers-25.12.19-py2.py3-none-any.whl", hash = "sha256:7634f50c427838bb021c2d66a3d1168e9d199b0607e6329399f04846d42e20b4", size = 26661, upload-time = "2025-12-19T23:16:13.622Z" }, ] -[[package]] -name = "fonttools" -version = "4.60.2" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", -] -sdist = { url = "https://files.pythonhosted.org/packages/3e/c4/db6a7b5eb0656534c3aa2596c2c5e18830d74f1b9aa5aa8a7dff63a0b11d/fonttools-4.60.2.tar.gz", hash = "sha256:d29552e6b155ebfc685b0aecf8d429cb76c14ab734c22ef5d3dea6fdf800c92c", size = 3562254, upload-time = "2025-12-09T13:38:11.835Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/ab/de/9e10a99fb3070accb8884886a41a4ce54e49bf2fa4fc63f48a6cf2061713/fonttools-4.60.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:4e36fadcf7e8ca6e34d490eef86ed638d6fd9c55d2f514b05687622cfc4a7050", size = 2850403, upload-time = "2025-12-09T13:35:53.14Z" }, - { url = "https://files.pythonhosted.org/packages/e4/40/d5b369d1073b134f600a94a287e13b5bdea2191ba6347d813fa3da00e94a/fonttools-4.60.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:6e500fc9c04bee749ceabfc20cb4903f6981c2139050d85720ea7ada61b75d5c", size = 2398629, upload-time = "2025-12-09T13:35:56.471Z" }, - { url = "https://files.pythonhosted.org/packages/7c/b5/123819369aaf99d1e4dc49f1de1925d4edc7379114d15a56a7dd2e9d56e6/fonttools-4.60.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:22efea5e784e1d1cd8d7b856c198e360a979383ebc6dea4604743b56da1cbc34", size = 4893471, upload-time = "2025-12-09T13:35:58.927Z" }, - { url = "https://files.pythonhosted.org/packages/24/29/f8f8acccb9716b899be4be45e9ce770d6aa76327573863e68448183091b0/fonttools-4.60.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:677aa92d84d335e4d301d8ba04afca6f575316bc647b6782cb0921943fcb6343", size = 4854686, upload-time = "2025-12-09T13:36:01.767Z" }, - { url = "https://files.pythonhosted.org/packages/5a/0d/f3f51d7519f44f2dd5c9a60d7cd41185ebcee4348f073e515a3a93af15ff/fonttools-4.60.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:edd49d3defbf35476e78b61ff737ff5efea811acff68d44233a95a5a48252334", size = 4871233, upload-time = "2025-12-09T13:36:06.094Z" }, - { url = "https://files.pythonhosted.org/packages/cc/3f/4d4fd47d3bc40ab4d76718555185f8adffb5602ea572eac4bbf200c47d22/fonttools-4.60.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:126839492b69cecc5baf2bddcde60caab2ffafd867bbae2a88463fce6078ca3a", size = 4988936, upload-time = "2025-12-09T13:36:08.42Z" }, - { url = "https://files.pythonhosted.org/packages/01/6f/83bbdefa43f2c3ae206fd8c4b9a481f3c913eef871b1ce9a453069239e39/fonttools-4.60.2-cp310-cp310-win32.whl", hash = "sha256:ffcab6f5537136046ca902ed2491ab081ba271b07591b916289b7c27ff845f96", size = 2278044, upload-time = "2025-12-09T13:36:10.641Z" }, - { url = "https://files.pythonhosted.org/packages/d4/04/7d9a137e919d6c9ef26704b7f7b2580d9cfc5139597588227aacebc0e3b7/fonttools-4.60.2-cp310-cp310-win_amd64.whl", hash = "sha256:9c68b287c7ffcd29dd83b5f961004b2a54a862a88825d52ea219c6220309ba45", size = 2326522, upload-time = "2025-12-09T13:36:12.981Z" }, - { url = "https://files.pythonhosted.org/packages/e0/80/b7693d37c02417e162cc83cdd0b19a4f58be82c638b5d4ce4de2dae050c4/fonttools-4.60.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:a2aed0a7931401b3875265717a24c726f87ecfedbb7b3426c2ca4d2812e281ae", size = 2847809, upload-time = "2025-12-09T13:36:14.884Z" }, - { url = "https://files.pythonhosted.org/packages/f9/9a/9c2c13bf8a6496ac21607d704e74e9cc68ebf23892cf924c9a8b5c7566b9/fonttools-4.60.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:dea6868e9d2b816c9076cfea77754686f3c19149873bdbc5acde437631c15df1", size = 2397302, upload-time = "2025-12-09T13:36:17.151Z" }, - { url = "https://files.pythonhosted.org/packages/56/f6/ce38ff6b2d2d58f6fd981d32f3942365bfa30eadf2b47d93b2d48bf6097f/fonttools-4.60.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:2fa27f34950aa1fe0f0b1abe25eed04770a3b3b34ad94e5ace82cc341589678a", size = 5054418, upload-time = "2025-12-09T13:36:19.062Z" }, - { url = "https://files.pythonhosted.org/packages/88/06/5353bea128ff39e857c31de3dd605725b4add956badae0b31bc9a50d4c8e/fonttools-4.60.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:13a53d479d187b09bfaa4a35ffcbc334fc494ff355f0a587386099cb66674f1e", size = 5031652, upload-time = "2025-12-09T13:36:21.206Z" }, - { url = "https://files.pythonhosted.org/packages/71/05/ebca836437f6ebd57edd6428e7eff584e683ff0556ddb17d62e3b731f46c/fonttools-4.60.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:fac5e921d3bd0ca3bb8517dced2784f0742bc8ca28579a68b139f04ea323a779", size = 5030321, upload-time = "2025-12-09T13:36:23.515Z" }, - { url = "https://files.pythonhosted.org/packages/57/f9/eb9d2a2ce30c99f840c1cc3940729a970923cf39d770caf88909d98d516b/fonttools-4.60.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:648f4f9186fd7f1f3cd57dbf00d67a583720d5011feca67a5e88b3a491952cfb", size = 5154255, upload-time = "2025-12-09T13:36:25.879Z" }, - { url = "https://files.pythonhosted.org/packages/08/a2/088b6ceba8272a9abb629d3c08f9c1e35e5ce42db0ccfe0c1f9f03e60d1d/fonttools-4.60.2-cp311-cp311-win32.whl", hash = "sha256:3274e15fad871bead5453d5ce02658f6d0c7bc7e7021e2a5b8b04e2f9e40da1a", size = 2276300, upload-time = "2025-12-09T13:36:27.772Z" }, - { url = "https://files.pythonhosted.org/packages/de/2f/8e4c3d908cc5dade7bb1316ce48589f6a24460c1056fd4b8db51f1fa309a/fonttools-4.60.2-cp311-cp311-win_amd64.whl", hash = "sha256:91d058d5a483a1525b367803abb69de0923fbd45e1f82ebd000f5c8aa65bc78e", size = 2327574, upload-time = "2025-12-09T13:36:30.89Z" }, - { url = "https://files.pythonhosted.org/packages/c0/30/530c9eddcd1c39219dc0aaede2b5a4c8ab80e0bb88d1b3ffc12944c4aac3/fonttools-4.60.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:e0164b7609d2b5c5dd4e044b8085b7bd7ca7363ef8c269a4ab5b5d4885a426b2", size = 2847196, upload-time = "2025-12-09T13:36:33.262Z" }, - { url = "https://files.pythonhosted.org/packages/19/2f/4077a482836d5bbe3bc9dac1c004d02ee227cf04ed62b0a2dfc41d4f0dfd/fonttools-4.60.2-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:1dd3d9574fc595c1e97faccae0f264dc88784ddf7fbf54c939528378bacc0033", size = 2395842, upload-time = "2025-12-09T13:36:35.47Z" }, - { url = "https://files.pythonhosted.org/packages/dd/05/aae5bb99c5398f8ed4a8b784f023fd9dd3568f0bd5d5b21e35b282550f11/fonttools-4.60.2-cp312-cp312-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:98d0719f1b11c2817307d2da2e94296a3b2a3503f8d6252a101dca3ee663b917", size = 4949713, upload-time = "2025-12-09T13:36:37.874Z" }, - { url = "https://files.pythonhosted.org/packages/b4/37/49067349fc78ff0efbf09fadefe80ddf41473ca8f8a25400e3770da38328/fonttools-4.60.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:9d3ea26957dd07209f207b4fff64c702efe5496de153a54d3b91007ec28904dd", size = 4999907, upload-time = "2025-12-09T13:36:39.853Z" }, - { url = "https://files.pythonhosted.org/packages/16/31/d0f11c758bd0db36b664c92a0f9dfdcc2d7313749aa7d6629805c6946f21/fonttools-4.60.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:1ee301273b0850f3a515299f212898f37421f42ff9adfc341702582ca5073c13", size = 4939717, upload-time = "2025-12-09T13:36:43.075Z" }, - { url = "https://files.pythonhosted.org/packages/d9/bc/1cff0d69522e561bf1b99bee7c3911c08c25e919584827c3454a64651ce9/fonttools-4.60.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:c6eb4694cc3b9c03b7c01d65a9cf35b577f21aa6abdbeeb08d3114b842a58153", size = 5089205, upload-time = "2025-12-09T13:36:45.468Z" }, - { url = "https://files.pythonhosted.org/packages/05/e6/fb174f0069b7122e19828c551298bfd34fdf9480535d2a6ac2ed37afacd3/fonttools-4.60.2-cp312-cp312-win32.whl", hash = "sha256:57f07b616c69c244cc1a5a51072eeef07dddda5ebef9ca5c6e9cf6d59ae65b70", size = 2264674, upload-time = "2025-12-09T13:36:49.238Z" }, - { url = "https://files.pythonhosted.org/packages/75/57/6552ffd6b582d3e6a9f01780c5275e6dfff1e70ca146101733aa1c12a129/fonttools-4.60.2-cp312-cp312-win_amd64.whl", hash = "sha256:310035802392f1fe5a7cf43d76f6ff4a24c919e4c72c0352e7b8176e2584b8a0", size = 2314701, upload-time = "2025-12-09T13:36:51.09Z" }, - { url = "https://files.pythonhosted.org/packages/2e/e4/8381d0ca6b6c6c484660b03517ec5b5b81feeefca3808726dece36c652a9/fonttools-4.60.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:2bb5fd231e56ccd7403212636dcccffc96c5ae0d6f9e4721fa0a32cb2e3ca432", size = 2842063, upload-time = "2025-12-09T13:36:53.468Z" }, - { url = "https://files.pythonhosted.org/packages/b4/2c/4367117ee8ff4f4374787a1222da0bd413d80cf3522111f727a7b8f80d1d/fonttools-4.60.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:536b5fab7b6fec78ccf59b5c59489189d9d0a8b0d3a77ed1858be59afb096696", size = 2393792, upload-time = "2025-12-09T13:36:55.742Z" }, - { url = "https://files.pythonhosted.org/packages/49/b7/a76b6dffa193869e54e32ca2f9abb0d0e66784bc8a24e6f86eb093015481/fonttools-4.60.2-cp313-cp313-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:6b9288fc38252ac86a9570f19313ecbc9ff678982e0f27c757a85f1f284d3400", size = 4924020, upload-time = "2025-12-09T13:36:58.229Z" }, - { url = "https://files.pythonhosted.org/packages/bd/4e/0078200e2259f0061c86a74075f507d64c43dd2ab38971956a5c0012d344/fonttools-4.60.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:93fcb420791d839ef592eada2b69997c445d0ce9c969b5190f2e16828ec10607", size = 4980070, upload-time = "2025-12-09T13:37:00.311Z" }, - { url = "https://files.pythonhosted.org/packages/85/1f/d87c85a11cb84852c975251581862681e4a0c1c3bd456c648792203f311b/fonttools-4.60.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:7916a381b094db4052ac284255186aebf74c5440248b78860cb41e300036f598", size = 4921411, upload-time = "2025-12-09T13:37:02.345Z" }, - { url = "https://files.pythonhosted.org/packages/75/c0/7efad650f5ed8e317c2633133ef3c64917e7adf2e4e2940c798f5d57ec6e/fonttools-4.60.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:58c8c393d5e16b15662cfc2d988491940458aa87894c662154f50c7b49440bef", size = 5063465, upload-time = "2025-12-09T13:37:04.836Z" }, - { url = "https://files.pythonhosted.org/packages/18/a8/750518c4f8cdd79393b386bc81226047ade80239e58c6c9f5dbe1fdd8ea1/fonttools-4.60.2-cp313-cp313-win32.whl", hash = "sha256:19c6e0afd8b02008caa0aa08ab896dfce5d0bcb510c49b2c499541d5cb95a963", size = 2263443, upload-time = "2025-12-09T13:37:06.762Z" }, - { url = "https://files.pythonhosted.org/packages/b8/22/026c60376f165981f80a0e90bd98a79ae3334e9d89a3d046c4d2e265c724/fonttools-4.60.2-cp313-cp313-win_amd64.whl", hash = "sha256:6a500dc59e11b2338c2dba1f8cf11a4ae8be35ec24af8b2628b8759a61457b76", size = 2313800, upload-time = "2025-12-09T13:37:08.713Z" }, - { url = "https://files.pythonhosted.org/packages/55/ae/a6d9446cb258d3fe87e311c2d7bacf8e8da3e5809fbdc3a8306db4f6b14e/fonttools-4.60.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:a3c75b8b42f7f93906bdba9eb1197bb76aecbe9a0a7cf6feec75f7605b5e8008", size = 2857184, upload-time = "2025-12-09T13:37:49.96Z" }, - { url = "https://files.pythonhosted.org/packages/3a/f3/1b41d0b6a8b908aa07f652111155dd653ebbf0b3385e66562556c5206685/fonttools-4.60.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:0f86c8c37bc0ec0b9c141d5e90c717ff614e93c187f06d80f18c7057097f71bc", size = 2401877, upload-time = "2025-12-09T13:37:52.307Z" }, - { url = "https://files.pythonhosted.org/packages/71/57/048fd781680c38b05c5463657d0d95d5f2391a51972176e175c01de29d42/fonttools-4.60.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:fe905403fe59683b0e9a45f234af2866834376b8821f34633b1c76fb731b6311", size = 4878073, upload-time = "2025-12-09T13:37:56.477Z" }, - { url = "https://files.pythonhosted.org/packages/45/bb/363364f052a893cebd3d449588b21244a9d873620fda03ad92702d2e1bc7/fonttools-4.60.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:38ce703b60a906e421e12d9e3a7f064883f5e61bb23e8961f4be33cfe578500b", size = 4835385, upload-time = "2025-12-09T13:37:58.882Z" }, - { url = "https://files.pythonhosted.org/packages/1c/38/e392bb930b2436287e6021672345db26441bf1f85f1e98f8b9784334e41d/fonttools-4.60.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:9e810c06f3e79185cecf120e58b343ea5a89b54dd695fd644446bcf8c026da5e", size = 4853084, upload-time = "2025-12-09T13:38:01.578Z" }, - { url = "https://files.pythonhosted.org/packages/65/60/0d77faeaecf7a3276a8a6dc49e2274357e6b3ed6a1774e2fdb2a7f142db0/fonttools-4.60.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:38faec8cc1d12122599814d15a402183f5123fb7608dac956121e7c6742aebc5", size = 4971144, upload-time = "2025-12-09T13:38:03.748Z" }, - { url = "https://files.pythonhosted.org/packages/ba/c7/6d3ac3afbcd598631bce24c3ecb919e7d0644a82fea8ddc4454312fc0be6/fonttools-4.60.2-cp39-cp39-win32.whl", hash = "sha256:80a45cf7bf659acb7b36578f300231873daba67bd3ca8cce181c73f861f14a37", size = 1499411, upload-time = "2025-12-09T13:38:05.586Z" }, - { url = "https://files.pythonhosted.org/packages/5a/1c/9dedf6420e23f9fa630bb97941839dddd2e1e57d1b2b85a902378dbe0bd2/fonttools-4.60.2-cp39-cp39-win_amd64.whl", hash = "sha256:c355d5972071938e1b1e0f5a1df001f68ecf1a62f34a3407dc8e0beccf052501", size = 1547943, upload-time = "2025-12-09T13:38:07.604Z" }, - { url = "https://files.pythonhosted.org/packages/79/6c/10280af05b44fafd1dff69422805061fa1af29270bc52dce031ac69540bf/fonttools-4.60.2-py3-none-any.whl", hash = "sha256:73cf92eeda67cf6ff10c8af56fc8f4f07c1647d989a979be9e388a49be26552a", size = 1144610, upload-time = "2025-12-09T13:38:09.5Z" }, -] - [[package]] name = "fonttools" version = "4.61.1" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.11.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.10.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.11.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.10.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", -] sdist = { url = "https://files.pythonhosted.org/packages/ec/ca/cf17b88a8df95691275a3d77dc0a5ad9907f328ae53acbe6795da1b2f5ed/fonttools-4.61.1.tar.gz", hash = "sha256:6675329885c44657f826ef01d9e4fb33b9158e9d93c537d84ad8399539bc6f69", size = 3565756, upload-time = "2025-12-12T17:31:24.246Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/5b/94/8a28707adb00bed1bf22dac16ccafe60faf2ade353dcb32c3617ee917307/fonttools-4.61.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7c7db70d57e5e1089a274cbb2b1fd635c9a24de809a231b154965d415d6c6d24", size = 2854799, upload-time = "2025-12-12T17:29:27.5Z" }, - { url = "https://files.pythonhosted.org/packages/94/93/c2e682faaa5ee92034818d8f8a8145ae73eb83619600495dcf8503fa7771/fonttools-4.61.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:5fe9fd43882620017add5eabb781ebfbc6998ee49b35bd7f8f79af1f9f99a958", size = 2403032, upload-time = "2025-12-12T17:29:30.115Z" }, - { url = "https://files.pythonhosted.org/packages/f1/62/1748f7e7e1ee41aa52279fd2e3a6d0733dc42a673b16932bad8e5d0c8b28/fonttools-4.61.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:d8db08051fc9e7d8bc622f2112511b8107d8f27cd89e2f64ec45e9825e8288da", size = 4897863, upload-time = "2025-12-12T17:29:32.535Z" }, - { url = "https://files.pythonhosted.org/packages/69/69/4ca02ee367d2c98edcaeb83fc278d20972502ee071214ad9d8ca85e06080/fonttools-4.61.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:a76d4cb80f41ba94a6691264be76435e5f72f2cb3cab0b092a6212855f71c2f6", size = 4859076, upload-time = "2025-12-12T17:29:34.907Z" }, - { url = "https://files.pythonhosted.org/packages/8c/f5/660f9e3cefa078861a7f099107c6d203b568a6227eef163dd173bfc56bdc/fonttools-4.61.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:a13fc8aeb24bad755eea8f7f9d409438eb94e82cf86b08fe77a03fbc8f6a96b1", size = 4875623, upload-time = "2025-12-12T17:29:37.33Z" }, - { url = "https://files.pythonhosted.org/packages/63/d1/9d7c5091d2276ed47795c131c1bf9316c3c1ab2789c22e2f59e0572ccd38/fonttools-4.61.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b846a1fcf8beadeb9ea4f44ec5bdde393e2f1569e17d700bfc49cd69bde75881", size = 4993327, upload-time = "2025-12-12T17:29:39.781Z" }, - { url = "https://files.pythonhosted.org/packages/6f/2d/28def73837885ae32260d07660a052b99f0aa00454867d33745dfe49dbf0/fonttools-4.61.1-cp310-cp310-win32.whl", hash = "sha256:78a7d3ab09dc47ac1a363a493e6112d8cabed7ba7caad5f54dbe2f08676d1b47", size = 1502180, upload-time = "2025-12-12T17:29:42.217Z" }, - { url = "https://files.pythonhosted.org/packages/63/fa/bfdc98abb4dd2bd491033e85e3ba69a2313c850e759a6daa014bc9433b0f/fonttools-4.61.1-cp310-cp310-win_amd64.whl", hash = "sha256:eff1ac3cc66c2ac7cda1e64b4e2f3ffef474b7335f92fc3833fc632d595fcee6", size = 1550654, upload-time = "2025-12-12T17:29:44.564Z" }, { url = "https://files.pythonhosted.org/packages/69/12/bf9f4eaa2fad039356cc627587e30ed008c03f1cebd3034376b5ee8d1d44/fonttools-4.61.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:c6604b735bb12fef8e0efd5578c9fb5d3d8532d5001ea13a19cddf295673ee09", size = 2852213, upload-time = "2025-12-12T17:29:46.675Z" }, { url = "https://files.pythonhosted.org/packages/ac/49/4138d1acb6261499bedde1c07f8c2605d1d8f9d77a151e5507fd3ef084b6/fonttools-4.61.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:5ce02f38a754f207f2f06557523cd39a06438ba3aafc0639c477ac409fc64e37", size = 2401689, upload-time = "2025-12-12T17:29:48.769Z" }, { url = "https://files.pythonhosted.org/packages/e5/fe/e6ce0fe20a40e03aef906af60aa87668696f9e4802fa283627d0b5ed777f/fonttools-4.61.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:77efb033d8d7ff233385f30c62c7c79271c8885d5c9657d967ede124671bbdfb", size = 5058809, upload-time = "2025-12-12T17:29:51.701Z" }, @@ -2276,22 +995,6 @@ version = "1.8.0" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/2d/f5/c831fac6cc817d26fd54c7eaccd04ef7e0288806943f7cc5bbf69f3ac1f0/frozenlist-1.8.0.tar.gz", hash = "sha256:3ede829ed8d842f6cd48fc7081d7a41001a56f1f38603f9d49bf3020d59a31ad", size = 45875, upload-time = "2025-10-06T05:38:17.865Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/83/4a/557715d5047da48d54e659203b9335be7bfaafda2c3f627b7c47e0b3aaf3/frozenlist-1.8.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:b37f6d31b3dcea7deb5e9696e529a6aa4a898adc33db82da12e4c60a7c4d2011", size = 86230, upload-time = "2025-10-06T05:35:23.699Z" }, - { url = "https://files.pythonhosted.org/packages/a2/fb/c85f9fed3ea8fe8740e5b46a59cc141c23b842eca617da8876cfce5f760e/frozenlist-1.8.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ef2b7b394f208233e471abc541cc6991f907ffd47dc72584acee3147899d6565", size = 49621, upload-time = "2025-10-06T05:35:25.341Z" }, - { url = "https://files.pythonhosted.org/packages/63/70/26ca3f06aace16f2352796b08704338d74b6d1a24ca38f2771afbb7ed915/frozenlist-1.8.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a88f062f072d1589b7b46e951698950e7da00442fc1cacbe17e19e025dc327ad", size = 49889, upload-time = "2025-10-06T05:35:26.797Z" }, - { url = "https://files.pythonhosted.org/packages/5d/ed/c7895fd2fde7f3ee70d248175f9b6cdf792fb741ab92dc59cd9ef3bd241b/frozenlist-1.8.0-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:f57fb59d9f385710aa7060e89410aeb5058b99e62f4d16b08b91986b9a2140c2", size = 219464, upload-time = "2025-10-06T05:35:28.254Z" }, - { url = "https://files.pythonhosted.org/packages/6b/83/4d587dccbfca74cb8b810472392ad62bfa100bf8108c7223eb4c4fa2f7b3/frozenlist-1.8.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:799345ab092bee59f01a915620b5d014698547afd011e691a208637312db9186", size = 221649, upload-time = "2025-10-06T05:35:29.454Z" }, - { url = "https://files.pythonhosted.org/packages/6a/c6/fd3b9cd046ec5fff9dab66831083bc2077006a874a2d3d9247dea93ddf7e/frozenlist-1.8.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:c23c3ff005322a6e16f71bf8692fcf4d5a304aaafe1e262c98c6d4adc7be863e", size = 219188, upload-time = "2025-10-06T05:35:30.951Z" }, - { url = "https://files.pythonhosted.org/packages/ce/80/6693f55eb2e085fc8afb28cf611448fb5b90e98e068fa1d1b8d8e66e5c7d/frozenlist-1.8.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:8a76ea0f0b9dfa06f254ee06053d93a600865b3274358ca48a352ce4f0798450", size = 231748, upload-time = "2025-10-06T05:35:32.101Z" }, - { url = "https://files.pythonhosted.org/packages/97/d6/e9459f7c5183854abd989ba384fe0cc1a0fb795a83c033f0571ec5933ca4/frozenlist-1.8.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:c7366fe1418a6133d5aa824ee53d406550110984de7637d65a178010f759c6ef", size = 236351, upload-time = "2025-10-06T05:35:33.834Z" }, - { url = "https://files.pythonhosted.org/packages/97/92/24e97474b65c0262e9ecd076e826bfd1d3074adcc165a256e42e7b8a7249/frozenlist-1.8.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:13d23a45c4cebade99340c4165bd90eeb4a56c6d8a9d8aa49568cac19a6d0dc4", size = 218767, upload-time = "2025-10-06T05:35:35.205Z" }, - { url = "https://files.pythonhosted.org/packages/ee/bf/dc394a097508f15abff383c5108cb8ad880d1f64a725ed3b90d5c2fbf0bb/frozenlist-1.8.0-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:e4a3408834f65da56c83528fb52ce7911484f0d1eaf7b761fc66001db1646eff", size = 235887, upload-time = "2025-10-06T05:35:36.354Z" }, - { url = "https://files.pythonhosted.org/packages/40/90/25b201b9c015dbc999a5baf475a257010471a1fa8c200c843fd4abbee725/frozenlist-1.8.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:42145cd2748ca39f32801dad54aeea10039da6f86e303659db90db1c4b614c8c", size = 228785, upload-time = "2025-10-06T05:35:37.949Z" }, - { url = "https://files.pythonhosted.org/packages/84/f4/b5bc148df03082f05d2dd30c089e269acdbe251ac9a9cf4e727b2dbb8a3d/frozenlist-1.8.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:e2de870d16a7a53901e41b64ffdf26f2fbb8917b3e6ebf398098d72c5b20bd7f", size = 230312, upload-time = "2025-10-06T05:35:39.178Z" }, - { url = "https://files.pythonhosted.org/packages/db/4b/87e95b5d15097c302430e647136b7d7ab2398a702390cf4c8601975709e7/frozenlist-1.8.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:20e63c9493d33ee48536600d1a5c95eefc870cd71e7ab037763d1fbb89cc51e7", size = 217650, upload-time = "2025-10-06T05:35:40.377Z" }, - { url = "https://files.pythonhosted.org/packages/e5/70/78a0315d1fea97120591a83e0acd644da638c872f142fd72a6cebee825f3/frozenlist-1.8.0-cp310-cp310-win32.whl", hash = "sha256:adbeebaebae3526afc3c96fad434367cafbfd1b25d72369a9e5858453b1bb71a", size = 39659, upload-time = "2025-10-06T05:35:41.863Z" }, - { url = "https://files.pythonhosted.org/packages/66/aa/3f04523fb189a00e147e60c5b2205126118f216b0aa908035c45336e27e4/frozenlist-1.8.0-cp310-cp310-win_amd64.whl", hash = "sha256:667c3777ca571e5dbeb76f331562ff98b957431df140b54c85fd4d52eea8d8f6", size = 43837, upload-time = "2025-10-06T05:35:43.205Z" }, - { url = "https://files.pythonhosted.org/packages/39/75/1135feecdd7c336938bd55b4dc3b0dfc46d85b9be12ef2628574b28de776/frozenlist-1.8.0-cp310-cp310-win_arm64.whl", hash = "sha256:80f85f0a7cc86e7a54c46d99c9e1318ff01f4687c172ede30fd52d19d1da1c8e", size = 39989, upload-time = "2025-10-06T05:35:44.596Z" }, { url = "https://files.pythonhosted.org/packages/bc/03/077f869d540370db12165c0aa51640a873fb661d8b315d1d4d67b284d7ac/frozenlist-1.8.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:09474e9831bc2b2199fad6da3c14c7b0fbdd377cce9d3d77131be28906cb7d84", size = 86912, upload-time = "2025-10-06T05:35:45.98Z" }, { url = "https://files.pythonhosted.org/packages/df/b5/7610b6bd13e4ae77b96ba85abea1c8cb249683217ef09ac9e0ae93f25a91/frozenlist-1.8.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:17c883ab0ab67200b5f964d2b9ed6b00971917d5d8a92df149dc2c9779208ee9", size = 50046, upload-time = "2025-10-06T05:35:47.009Z" }, { url = "https://files.pythonhosted.org/packages/6e/ef/0e8f1fe32f8a53dd26bdd1f9347efe0778b0fddf62789ea683f4cc7d787d/frozenlist-1.8.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:fa47e444b8ba08fffd1c18e8cdb9a75db1b6a27f17507522834ad13ed5922b93", size = 50119, upload-time = "2025-10-06T05:35:48.38Z" }, @@ -2356,22 +1059,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/fd/00/04ca1c3a7a124b6de4f8a9a17cc2fcad138b4608e7a3fc5877804b8715d7/frozenlist-1.8.0-cp313-cp313t-win32.whl", hash = "sha256:0f96534f8bfebc1a394209427d0f8a63d343c9779cda6fc25e8e121b5fd8555b", size = 43492, upload-time = "2025-10-06T05:37:04.915Z" }, { url = "https://files.pythonhosted.org/packages/59/5e/c69f733a86a94ab10f68e496dc6b7e8bc078ebb415281d5698313e3af3a1/frozenlist-1.8.0-cp313-cp313t-win_amd64.whl", hash = "sha256:5d63a068f978fc69421fb0e6eb91a9603187527c86b7cd3f534a5b77a592b888", size = 48034, upload-time = "2025-10-06T05:37:06.343Z" }, { url = "https://files.pythonhosted.org/packages/16/6c/be9d79775d8abe79b05fa6d23da99ad6e7763a1d080fbae7290b286093fd/frozenlist-1.8.0-cp313-cp313t-win_arm64.whl", hash = "sha256:bf0a7e10b077bf5fb9380ad3ae8ce20ef919a6ad93b4552896419ac7e1d8e042", size = 41749, upload-time = "2025-10-06T05:37:07.431Z" }, - { url = "https://files.pythonhosted.org/packages/c2/59/ae5cdac87a00962122ea37bb346d41b66aec05f9ce328fa2b9e216f8967b/frozenlist-1.8.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:d8b7138e5cd0647e4523d6685b0eac5d4be9a184ae9634492f25c6eb38c12a47", size = 86967, upload-time = "2025-10-06T05:37:55.607Z" }, - { url = "https://files.pythonhosted.org/packages/8a/10/17059b2db5a032fd9323c41c39e9d1f5f9d0c8f04d1e4e3e788573086e61/frozenlist-1.8.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:a6483e309ca809f1efd154b4d37dc6d9f61037d6c6a81c2dc7a15cb22c8c5dca", size = 49984, upload-time = "2025-10-06T05:37:57.049Z" }, - { url = "https://files.pythonhosted.org/packages/4b/de/ad9d82ca8e5fa8f0c636e64606553c79e2b859ad253030b62a21fe9986f5/frozenlist-1.8.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:1b9290cf81e95e93fdf90548ce9d3c1211cf574b8e3f4b3b7cb0537cf2227068", size = 50240, upload-time = "2025-10-06T05:37:58.145Z" }, - { url = "https://files.pythonhosted.org/packages/4e/45/3dfb7767c2a67d123650122b62ce13c731b6c745bc14424eea67678b508c/frozenlist-1.8.0-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:59a6a5876ca59d1b63af8cd5e7ffffb024c3dc1e9cf9301b21a2e76286505c95", size = 219472, upload-time = "2025-10-06T05:37:59.239Z" }, - { url = "https://files.pythonhosted.org/packages/0b/bf/5bf23d913a741b960d5c1dac7c1985d8a2a1d015772b2d18ea168b08e7ff/frozenlist-1.8.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6dc4126390929823e2d2d9dc79ab4046ed74680360fc5f38b585c12c66cdf459", size = 221531, upload-time = "2025-10-06T05:38:00.521Z" }, - { url = "https://files.pythonhosted.org/packages/d0/03/27ec393f3b55860859f4b74cdc8c2a4af3dbf3533305e8eacf48a4fd9a54/frozenlist-1.8.0-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:332db6b2563333c5671fecacd085141b5800cb866be16d5e3eb15a2086476675", size = 219211, upload-time = "2025-10-06T05:38:01.842Z" }, - { url = "https://files.pythonhosted.org/packages/3a/ad/0fd00c404fa73fe9b169429e9a972d5ed807973c40ab6b3cf9365a33d360/frozenlist-1.8.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:9ff15928d62a0b80bb875655c39bf517938c7d589554cbd2669be42d97c2cb61", size = 231775, upload-time = "2025-10-06T05:38:03.384Z" }, - { url = "https://files.pythonhosted.org/packages/8a/c3/86962566154cb4d2995358bc8331bfc4ea19d07db1a96f64935a1607f2b6/frozenlist-1.8.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:7bf6cdf8e07c8151fba6fe85735441240ec7f619f935a5205953d58009aef8c6", size = 236631, upload-time = "2025-10-06T05:38:04.609Z" }, - { url = "https://files.pythonhosted.org/packages/ea/9e/6ffad161dbd83782d2c66dc4d378a9103b31770cb1e67febf43aea42d202/frozenlist-1.8.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:48e6d3f4ec5c7273dfe83ff27c91083c6c9065af655dc2684d2c200c94308bb5", size = 218632, upload-time = "2025-10-06T05:38:05.917Z" }, - { url = "https://files.pythonhosted.org/packages/58/b2/4677eee46e0a97f9b30735e6ad0bf6aba3e497986066eb68807ac85cf60f/frozenlist-1.8.0-cp39-cp39-musllinux_1_2_armv7l.whl", hash = "sha256:1a7607e17ad33361677adcd1443edf6f5da0ce5e5377b798fba20fae194825f3", size = 235967, upload-time = "2025-10-06T05:38:07.614Z" }, - { url = "https://files.pythonhosted.org/packages/05/f3/86e75f8639c5a93745ca7addbbc9de6af56aebb930d233512b17e46f6493/frozenlist-1.8.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:5a3a935c3a4e89c733303a2d5a7c257ea44af3a56c8202df486b7f5de40f37e1", size = 228799, upload-time = "2025-10-06T05:38:08.845Z" }, - { url = "https://files.pythonhosted.org/packages/30/00/39aad3a7f0d98f5eb1d99a3c311215674ed87061aecee7851974b335c050/frozenlist-1.8.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:940d4a017dbfed9daf46a3b086e1d2167e7012ee297fef9e1c545c4d022f5178", size = 230566, upload-time = "2025-10-06T05:38:10.52Z" }, - { url = "https://files.pythonhosted.org/packages/0d/4d/aa144cac44568d137846ddc4d5210fb5d9719eb1d7ec6fa2728a54b5b94a/frozenlist-1.8.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:b9be22a69a014bc47e78072d0ecae716f5eb56c15238acca0f43d6eb8e4a5bda", size = 217715, upload-time = "2025-10-06T05:38:11.832Z" }, - { url = "https://files.pythonhosted.org/packages/64/4c/8f665921667509d25a0dd72540513bc86b356c95541686f6442a3283019f/frozenlist-1.8.0-cp39-cp39-win32.whl", hash = "sha256:1aa77cb5697069af47472e39612976ed05343ff2e84a3dcf15437b232cbfd087", size = 39933, upload-time = "2025-10-06T05:38:13.061Z" }, - { url = "https://files.pythonhosted.org/packages/79/bd/bcc926f87027fad5e59926ff12d136e1082a115025d33c032d1cd69ab377/frozenlist-1.8.0-cp39-cp39-win_amd64.whl", hash = "sha256:7398c222d1d405e796970320036b1b563892b65809d9e5261487bb2c7f7b5c6a", size = 44121, upload-time = "2025-10-06T05:38:14.572Z" }, - { url = "https://files.pythonhosted.org/packages/4c/07/9c2e4eb7584af4b705237b971b89a4155a8e57599c4483a131a39256a9a0/frozenlist-1.8.0-cp39-cp39-win_arm64.whl", hash = "sha256:b4f3b365f31c6cd4af24545ca0a244a53688cad8834e32f56831c4923b50a103", size = 40312, upload-time = "2025-10-06T05:38:15.699Z" }, { url = "https://files.pythonhosted.org/packages/9a/9a/e35b4a917281c0b8419d4207f4334c8e8c5dbf4f3f5f9ada73958d937dcc/frozenlist-1.8.0-py3-none-any.whl", hash = "sha256:0c18a16eab41e82c295618a77502e17b195883241c563b00f0aa5106fc4eaa0d", size = 13409, upload-time = "2025-10-06T05:38:16.721Z" }, ] @@ -2394,7 +1081,7 @@ name = "gitdb" version = "4.0.12" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "smmap", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "smmap" }, ] sdist = { url = "https://files.pythonhosted.org/packages/72/94/63b0fc47eb32792c7ba1fe1b694daec9a63620db1e313033d18140c2320a/gitdb-4.0.12.tar.gz", hash = "sha256:5ef71f855d191a3326fcfbc0d5da835f26b13fbcba60c32c21091c349ffdb571", size = 394684, upload-time = "2025-01-02T07:20:46.413Z" } wheels = [ @@ -2406,7 +1093,7 @@ name = "gitpython" version = "3.1.46" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "gitdb", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "gitdb" }, ] sdist = { url = "https://files.pythonhosted.org/packages/df/b5/59d16470a1f0dfe8c793f9ef56fd3826093fc52b3bd96d6b9d6c26c7e27b/gitpython-3.1.46.tar.gz", hash = "sha256:400124c7d0ef4ea03f7310ac2fbf7151e09ff97f2a3288d64a440c584a29c37f", size = 215371, upload-time = "2026-01-01T15:37:32.073Z" } wheels = [ @@ -2422,162 +1109,12 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/91/4c/e0ce1ef95d4000ebc1c11801f9b944fa5910ecc15b5e351865763d8657f8/graphviz-0.21-py3-none-any.whl", hash = "sha256:54f33de9f4f911d7e84e4191749cac8cc5653f815b06738c54db9a15ab8b1e42", size = 47300, upload-time = "2025-06-15T09:35:04.433Z" }, ] -[[package]] -name = "greenlet" -version = "3.2.5" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", -] -sdist = { url = "https://files.pythonhosted.org/packages/b0/f5/3e9eafb4030588337b2a2ae4df46212956854e9069c07b53aa3caabafd47/greenlet-3.2.5.tar.gz", hash = "sha256:c816554eb33e7ecf9ba4defcb1fd8c994e59be6b4110da15480b3e7447ea4286", size = 191501, upload-time = "2026-02-20T20:08:51.539Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/ff/d6/b3db928fc329b1b19ba32ffe143d2305f3aaafc583f5e1074c74ec445189/greenlet-3.2.5-cp310-cp310-macosx_11_0_universal2.whl", hash = "sha256:34cc7cf8ab6f4b85298b01e13e881265ee7b3c1daf6bc10a2944abc15d4f87c3", size = 275803, upload-time = "2026-02-20T20:06:42.541Z" }, - { url = "https://files.pythonhosted.org/packages/b3/ff/ab0ad4ff3d9e1faa266de4f6c79763b33fccd9265995f2940192494cc0ec/greenlet-3.2.5-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:c11fe0cfb0ce33132f0b5d27eeadd1954976a82e5e9b60909ec2c4b884a55382", size = 633556, upload-time = "2026-02-20T20:30:41.594Z" }, - { url = "https://files.pythonhosted.org/packages/da/dd/7b3ac77099a1671af8077ecedb12c9a1be1310e4c35bb69fd34c18ab6093/greenlet-3.2.5-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl", hash = "sha256:a145f4b1c4ed7a2c94561b7f18b4beec3d3fb6f0580db22f7ed1d544e0620b34", size = 644943, upload-time = "2026-02-20T20:37:23.084Z" }, - { url = "https://files.pythonhosted.org/packages/56/f0/bea7e7909ea9045b0c5055dad1ec9b81c82b761b4567e625f4f8349acfa1/greenlet-3.2.5-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.whl", hash = "sha256:edbf4ab9a7057ee430a678fe2ef37ea5d69125d6bdc7feb42ed8d871c737e63b", size = 640849, upload-time = "2026-02-20T20:43:57.305Z" }, - { url = "https://files.pythonhosted.org/packages/0f/36/84630e9ff1dfc8b7690957c0f77834a84eabdbd9c4977c3a2d0cbd5325c2/greenlet-3.2.5-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:cc1d01bdd67db3e5711e6246e451d7a0f75fae7bbf40adde129296a7f9aa7cc9", size = 639841, upload-time = "2026-02-20T20:07:17.473Z" }, - { url = "https://files.pythonhosted.org/packages/12/c4/6a2ee6c676dea7a05a3c3c1291fbc8ea44f26456b0accc891471293825af/greenlet-3.2.5-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:bd593db7ee1fa8a513a48a404f8cc4126998a48025e3f5cbbc68d51be0a6bf66", size = 588813, upload-time = "2026-02-20T20:07:56.171Z" }, - { url = "https://files.pythonhosted.org/packages/01/c0/75e75c2c993aa850292561ec80f5c263e3924e5843aa95a38716df69304c/greenlet-3.2.5-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:ac8db07bced2c39b987bba13a3195f8157b0cfbce54488f86919321444a1cc3c", size = 1117377, upload-time = "2026-02-20T20:32:48.452Z" }, - { url = "https://files.pythonhosted.org/packages/ee/03/e38ebf9024a0873fe8f60f5b7bc36bfb3be5e13efe4d798240f2d1f0fb73/greenlet-3.2.5-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:4544ab2cfd5912e42458b13516429e029f87d8bbcdc8d5506db772941ae12493", size = 1141246, upload-time = "2026-02-20T20:06:23.576Z" }, - { url = "https://files.pythonhosted.org/packages/d8/7b/c6e1192c795c0c12871e199237909a6bd35757d92c8472c7c019959b8637/greenlet-3.2.5-cp311-cp311-macosx_11_0_universal2.whl", hash = "sha256:acabf468466d18017e2ae5fbf1a5a88b86b48983e550e1ae1437b69a83d9f4ac", size = 276916, upload-time = "2026-02-20T20:06:18.166Z" }, - { url = "https://files.pythonhosted.org/packages/3e/b6/9887b559f3e1952d23052ec352e9977e808a2246c7cb8282a38337221e88/greenlet-3.2.5-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:472841de62d60f2cafd60edd4fd4dd7253eb70e6eaf14b8990dcaf177f4af957", size = 636107, upload-time = "2026-02-20T20:30:43.362Z" }, - { url = "https://files.pythonhosted.org/packages/8a/be/e3e48b63bbc27d660fa1d98aecb64906b90a12e686a436169c1330ef34b2/greenlet-3.2.5-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl", hash = "sha256:7d951e7d628a6e8b68af469f0fe4f100ef64c4054abeb9cdafbfaa30a920c950", size = 648240, upload-time = "2026-02-20T20:37:24.608Z" }, - { url = "https://files.pythonhosted.org/packages/17/f6/2cbe999683f759f14f598234f04ae8ba6f22953a624b3a7a630003e6bfff/greenlet-3.2.5-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.whl", hash = "sha256:87b791dd0e031a574249af717ac36f7031b18c35329561c1e0368201c18caf1f", size = 644170, upload-time = "2026-02-20T20:43:59.002Z" }, - { url = "https://files.pythonhosted.org/packages/4c/ac/e731ed62576e91e533b36d0d97325adc2786674ab9e48ed8a6a24f4ef4e9/greenlet-3.2.5-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:c8317d732e2ae0935d9ed2af2ea876fa714cf6f3b887a31ca150b54329b0a6e9", size = 643313, upload-time = "2026-02-20T20:07:19.012Z" }, - { url = "https://files.pythonhosted.org/packages/70/64/99e5cdceb494bd4c1341c45b93f322601d2c8a5e1e4d1c7a2d24c5ed0570/greenlet-3.2.5-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:ce8aed6fdd5e07d3cbb988cbdc188266a4eb9e1a52db9ef5c6526e59962d3933", size = 591295, upload-time = "2026-02-20T20:07:57.286Z" }, - { url = "https://files.pythonhosted.org/packages/ee/e9/968e11f388c2b8792d3b8b40a57984c894a3b4745dae3662dce722653bc5/greenlet-3.2.5-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:60c06b502d56d5451f60ca665691da29f79ed95e247bcf8ce5024d7bbe64acb9", size = 1120277, upload-time = "2026-02-20T20:32:50.103Z" }, - { url = "https://files.pythonhosted.org/packages/cb/2c/b5f2c4c68d753dce08218dc5a6b21d82238fdfdc44309032f6fe24d285e6/greenlet-3.2.5-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:0d2a78e6f1bf3f1672df91e212a2f8314e1e7c922f065d14cbad4bc815059467", size = 1145746, upload-time = "2026-02-20T20:06:26.296Z" }, - { url = "https://files.pythonhosted.org/packages/ad/32/022b21523eee713e7550162d5ca6aed23f913cc2c6232b154b9fd9badc07/greenlet-3.2.5-cp312-cp312-macosx_11_0_universal2.whl", hash = "sha256:2acb30e77042f747ca81f0a10cc153296567e92e666c5e1b117f4595afd43352", size = 278412, upload-time = "2026-02-20T20:03:15.02Z" }, - { url = "https://files.pythonhosted.org/packages/90/c5/8a3b0ed3cc34d8b988a44349437dfa0941f9c23ac108175f7b4ccea97111/greenlet-3.2.5-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:393c03c26c865f17f31d8db2f09603fadbe0581ad85a5d5908b131549fc38217", size = 644616, upload-time = "2026-02-20T20:30:44.823Z" }, - { url = "https://files.pythonhosted.org/packages/b1/2c/2627bea183554695016af6cae93d7474fa90f61e5a6601a84ae7841cb720/greenlet-3.2.5-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl", hash = "sha256:04e6a202cde56043fd355fefd1552c4caa5c087528121871d950eb4f1b51fa99", size = 658813, upload-time = "2026-02-20T20:37:26.255Z" }, - { url = "https://files.pythonhosted.org/packages/44/c6/a80fc96f7cca7962dd972875d12c52dfabc94cb02bfeb19f3e7e169fca44/greenlet-3.2.5-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.whl", hash = "sha256:d5583b2ffa677578a384337ee13125bdf9a427485d689014b39d638a4f3d8dbe", size = 653512, upload-time = "2026-02-20T20:44:00.343Z" }, - { url = "https://files.pythonhosted.org/packages/2f/1b/75a5aeff487a26ba427a3837da6372f1fe6f2a9c6b2898e28ac99d491c11/greenlet-3.2.5-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:45fcea7b697b91290b36eafc12fff479aca6ba6500d98ef6f34d5634c7119cbe", size = 655426, upload-time = "2026-02-20T20:07:20.124Z" }, - { url = "https://files.pythonhosted.org/packages/53/91/9b5dfb4f3c88f8247c7a8f4c3759f0740bfa6bb0c59a9f6bf938e913df56/greenlet-3.2.5-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:f96e2bb8a56b7e1aed1dbfbbe0050cb2ecca99c7c91892fd1771e3afab63b3e3", size = 611138, upload-time = "2026-02-20T20:07:58.966Z" }, - { url = "https://files.pythonhosted.org/packages/b4/8d/d0b086410512d9859c84e9242a9b341de9f5566011ddf3a3f6886b842b61/greenlet-3.2.5-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:d7456e67b0be653dfe643bb37d9566cd30939c80f858e2ce6d2d54951f75b14a", size = 1126896, upload-time = "2026-02-20T20:32:52.198Z" }, - { url = "https://files.pythonhosted.org/packages/ef/37/59fe12fe456e84ced6ba71781e28cde52a3124d1dd2077bc1727021f49fd/greenlet-3.2.5-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:5ceb29d1f74c7280befbbfa27b9bf91ba4a07a1a00b2179a5d953fc219b16c42", size = 1154779, upload-time = "2026-02-20T20:06:27.583Z" }, - { url = "https://files.pythonhosted.org/packages/dd/95/d5d332fb73affaf7a1fbe80e49c2c7eae4f17c645af24a3b3fa25736d6f0/greenlet-3.2.5-cp313-cp313-macosx_11_0_universal2.whl", hash = "sha256:f2cc88b50b9006b324c1b9f5f3552f9d4564c78af57cdfb4c7baf4f0aa089146", size = 277166, upload-time = "2026-02-20T20:03:57.077Z" }, - { url = "https://files.pythonhosted.org/packages/6c/77/89458e20db5a4f1c64f9a0191561227e76d809941ca2d7529006d17d3450/greenlet-3.2.5-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:e66872daffa360b2537170b73ad530f14fa31785b1bc78080125d92edf0a6def", size = 644674, upload-time = "2026-02-20T20:30:46.118Z" }, - { url = "https://files.pythonhosted.org/packages/90/f8/9962175d2f2eaa629a7fd7545abacc8c4deda3baa4e52c1526d2eb5f5546/greenlet-3.2.5-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl", hash = "sha256:c5445ddb7b586d870dad32ca9fc47c287d6022a528d194efdb8912093c5303ad", size = 658834, upload-time = "2026-02-20T20:37:27.466Z" }, - { url = "https://files.pythonhosted.org/packages/81/71/52c21a7106ce5218aa6fa59ec32825b2655f875a09b69f68bd3e5d01feb3/greenlet-3.2.5-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.whl", hash = "sha256:fd904626b8779810062cb455514594776e3cba3b8c0ba4939894df9f7b384971", size = 653091, upload-time = "2026-02-20T20:44:01.927Z" }, - { url = "https://files.pythonhosted.org/packages/f5/d7/826d0e080f0a7ad5ec47c8d143bbd3ca0887657bb806595fe2434d12938a/greenlet-3.2.5-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:752c896a8c976548faafe8a306d446c6a4c68d4fd24699b84d4393bd9ac69a8e", size = 655760, upload-time = "2026-02-20T20:07:21.551Z" }, - { url = "https://files.pythonhosted.org/packages/41/cc/33bd4c2f816be8c8e16f71740c4130adf3a66a3dd2ba29de72b9d8dd1096/greenlet-3.2.5-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:499b809e7738c8af0ff9ac9d5dd821cb93f4293065a9237543217f0b252f950a", size = 614132, upload-time = "2026-02-20T20:08:00.351Z" }, - { url = "https://files.pythonhosted.org/packages/48/79/f3891dcfc59097474a53cc3c624f2f2465e431ab493bda043b8c873fb20a/greenlet-3.2.5-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:2c7429f6e9cea7cbf2637d86d3db12806ba970f7f972fcab39d6b54b4457cbaf", size = 1125286, upload-time = "2026-02-20T20:32:54.032Z" }, - { url = "https://files.pythonhosted.org/packages/ca/47/212b47e6d2d7a04c4083db1af2fdd291bc8fe99b7e3571bfa560b65fc361/greenlet-3.2.5-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:a5e4b25e855800fba17713020c5c33e0a4b7a1829027719344f0c7c8870092a2", size = 1152825, upload-time = "2026-02-20T20:06:29Z" }, - { url = "https://files.pythonhosted.org/packages/3f/8f/f880ff4587d236b4d06893fb34da6b299aa0d00f6c8259673f80e1b6d63c/greenlet-3.2.5-cp39-cp39-macosx_11_0_universal2.whl", hash = "sha256:dbe0e81e24982bb45907ca20152b31c2e3300ca352fdc4acbd4956e4a2cbc195", size = 274946, upload-time = "2026-02-20T20:05:21.979Z" }, - { url = "https://files.pythonhosted.org/packages/3c/50/f6c78b8420187fdfe97fcf2e6d1dd243a7742d272c32fd4d4b1095474b37/greenlet-3.2.5-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:15871afc0d78ec87d15d8412b337f287fc69f8f669346e391585824970931c48", size = 631781, upload-time = "2026-02-20T20:30:48.845Z" }, - { url = "https://files.pythonhosted.org/packages/26/d6/3277f92e1961e6e9f41d9f173ea74b5c1f7065072637669f761626f26cc0/greenlet-3.2.5-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl", hash = "sha256:5bf0d7d62e356ef2e87e55e46a4e930ac165f9372760fb983b5631bb479e9d3a", size = 643740, upload-time = "2026-02-20T20:37:30.639Z" }, - { url = "https://files.pythonhosted.org/packages/f8/8a/c37b87659378759f158dbe03eaeb7ed002a8968f1c649b2972f5323f99b2/greenlet-3.2.5-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.whl", hash = "sha256:e3f03ddd7142c758ab41c18089a1407b9959bd276b4e6dfbd8fd06403832c87a", size = 639098, upload-time = "2026-02-20T20:44:07.287Z" }, - { url = "https://files.pythonhosted.org/packages/2a/6a/4f79d2e7b5ef3723fc5ffea0d6cb22627e5f95e0f19c973fa12bf1cf7891/greenlet-3.2.5-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:6dff6433742073e5b6ad40953a78a0e8cddcb3f6869e5ea635d29a810ca5e7d0", size = 638382, upload-time = "2026-02-20T20:07:23.883Z" }, - { url = "https://files.pythonhosted.org/packages/4d/59/7aadf33f23c65dbf4db27e7f5b60c414797a61e954352ae4a86c5c8b0553/greenlet-3.2.5-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:bdd67619cefe1cc9fcab57c8853d2bb36eca9f166c0058cc0d428d471f7c785c", size = 587516, upload-time = "2026-02-20T20:08:02.841Z" }, - { url = "https://files.pythonhosted.org/packages/1d/46/b3422959f830de28a4eea447414e6bd7b980d755892f66ab52ad805da1c4/greenlet-3.2.5-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:3828b309dfb1f117fe54867512a8265d8d4f00f8de6908eef9b885f4d8789062", size = 1115818, upload-time = "2026-02-20T20:32:55.786Z" }, - { url = "https://files.pythonhosted.org/packages/54/4a/3d1c9728f093415637cf3696909fa10852632e33e68238fb8ca60eb90de1/greenlet-3.2.5-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:67725ae9fea62c95cf1aa230f1b8d4dc38f7cd14f6103d1df8a5a95657eb8e54", size = 1140219, upload-time = "2026-02-20T20:06:30.334Z" }, -] - [[package]] name = "greenlet" version = "3.3.2" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.11.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.10.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.11.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.10.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", -] sdist = { url = "https://files.pythonhosted.org/packages/a3/51/1664f6b78fc6ebbd98019a1fd730e83fa78f2db7058f72b1463d3612b8db/greenlet-3.3.2.tar.gz", hash = "sha256:2eaf067fc6d886931c7962e8c6bede15d2f01965560f3359b27c80bde2d151f2", size = 188267, upload-time = "2026-02-20T20:54:15.531Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/38/3f/9859f655d11901e7b2996c6e3d33e0caa9a1d4572c3bc61ed0faa64b2f4c/greenlet-3.3.2-cp310-cp310-macosx_11_0_universal2.whl", hash = "sha256:9bc885b89709d901859cf95179ec9f6bb67a3d2bb1f0e88456461bd4b7f8fd0d", size = 277747, upload-time = "2026-02-20T20:16:21.325Z" }, - { url = "https://files.pythonhosted.org/packages/fb/07/cb284a8b5c6498dbd7cba35d31380bb123d7dceaa7907f606c8ff5993cbf/greenlet-3.3.2-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b568183cf65b94919be4438dc28416b234b678c608cafac8874dfeeb2a9bbe13", size = 579202, upload-time = "2026-02-20T20:47:28.955Z" }, - { url = "https://files.pythonhosted.org/packages/ed/45/67922992b3a152f726163b19f890a85129a992f39607a2a53155de3448b8/greenlet-3.3.2-cp310-cp310-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:527fec58dc9f90efd594b9b700662ed3fb2493c2122067ac9c740d98080a620e", size = 590620, upload-time = "2026-02-20T20:55:55.581Z" }, - { url = "https://files.pythonhosted.org/packages/03/5f/6e2a7d80c353587751ef3d44bb947f0565ec008a2e0927821c007e96d3a7/greenlet-3.3.2-cp310-cp310-manylinux_2_24_s390x.manylinux_2_28_s390x.whl", hash = "sha256:508c7f01f1791fbc8e011bd508f6794cb95397fdb198a46cb6635eb5b78d85a7", size = 602132, upload-time = "2026-02-20T21:02:43.261Z" }, - { url = "https://files.pythonhosted.org/packages/ad/55/9f1ebb5a825215fadcc0f7d5073f6e79e3007e3282b14b22d6aba7ca6cb8/greenlet-3.3.2-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:ad0c8917dd42a819fe77e6bdfcb84e3379c0de956469301d9fd36427a1ca501f", size = 591729, upload-time = "2026-02-20T20:20:58.395Z" }, - { url = "https://files.pythonhosted.org/packages/24/b4/21f5455773d37f94b866eb3cf5caed88d6cea6dd2c6e1f9c34f463cba3ec/greenlet-3.3.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:97245cc10e5515dbc8c3104b2928f7f02b6813002770cfaffaf9a6e0fc2b94ef", size = 1551946, upload-time = "2026-02-20T20:49:31.102Z" }, - { url = "https://files.pythonhosted.org/packages/00/68/91f061a926abead128fe1a87f0b453ccf07368666bd59ffa46016627a930/greenlet-3.3.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8c1fdd7d1b309ff0da81d60a9688a8bd044ac4e18b250320a96fc68d31c209ca", size = 1618494, upload-time = "2026-02-20T20:21:06.541Z" }, - { url = "https://files.pythonhosted.org/packages/ac/78/f93e840cbaef8becaf6adafbaf1319682a6c2d8c1c20224267a5c6c8c891/greenlet-3.3.2-cp310-cp310-win_amd64.whl", hash = "sha256:5d0e35379f93a6d0222de929a25ab47b5eb35b5ef4721c2b9cbcc4036129ff1f", size = 230092, upload-time = "2026-02-20T20:17:09.379Z" }, { url = "https://files.pythonhosted.org/packages/f3/47/16400cb42d18d7a6bb46f0626852c1718612e35dcb0dffa16bbaffdf5dd2/greenlet-3.3.2-cp311-cp311-macosx_11_0_universal2.whl", hash = "sha256:c56692189a7d1c7606cb794be0a8381470d95c57ce5be03fb3d0ef57c7853b86", size = 278890, upload-time = "2026-02-20T20:19:39.263Z" }, { url = "https://files.pythonhosted.org/packages/a3/90/42762b77a5b6aa96cd8c0e80612663d39211e8ae8a6cd47c7f1249a66262/greenlet-3.3.2-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1ebd458fa8285960f382841da585e02201b53a5ec2bac6b156fc623b5ce4499f", size = 581120, upload-time = "2026-02-20T20:47:30.161Z" }, { url = "https://files.pythonhosted.org/packages/bf/6f/f3d64f4fa0a9c7b5c5b3c810ff1df614540d5aa7d519261b53fba55d4df9/greenlet-3.3.2-cp311-cp311-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:a443358b33c4ec7b05b79a7c8b466f5d275025e750298be7340f8fc63dff2a55", size = 594363, upload-time = "2026-02-20T20:55:56.965Z" }, @@ -2612,20 +1149,10 @@ name = "grpcio" version = "1.78.1" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "typing-extensions", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "typing-extensions" }, ] sdist = { url = "https://files.pythonhosted.org/packages/1f/de/de568532d9907552700f80dcec38219d8d298ad9e71f5e0a095abaf2761e/grpcio-1.78.1.tar.gz", hash = "sha256:27c625532d33ace45d57e775edf1982e183ff8641c72e4e91ef7ba667a149d72", size = 12835760, upload-time = "2026-02-20T01:16:10.869Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/44/30/0534b643dafd54824769d6260b89c71d518e4ef8b5ad16b84d1ae9272978/grpcio-1.78.1-cp310-cp310-linux_armv7l.whl", hash = "sha256:4393bef64cf26dc07cd6f18eaa5170ae4eebaafd4418e7e3a59ca9526a6fa30b", size = 5947661, upload-time = "2026-02-20T01:12:34.922Z" }, - { url = "https://files.pythonhosted.org/packages/4a/f8/f678566655ab822da0f713789555e7eddca7ef93da99f480c63de3aa94b4/grpcio-1.78.1-cp310-cp310-macosx_11_0_universal2.whl", hash = "sha256:917047c19cd120b40aab9a4b8a22e9ce3562f4a1343c0d62b3cd2d5199da3d67", size = 11819948, upload-time = "2026-02-20T01:12:39.709Z" }, - { url = "https://files.pythonhosted.org/packages/ff/0b/a4b4210d946055f4e5a8430f2802202ae8f831b4b00d36d55055c5cf4b6a/grpcio-1.78.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:ff7de398bb3528d44d17e6913a7cfe639e3b15c65595a71155322df16978c5e1", size = 6519850, upload-time = "2026-02-20T01:12:42.715Z" }, - { url = "https://files.pythonhosted.org/packages/ea/d9/a1e657a73000a71fa75ec7140ff3a8dc32eb3427560620e477c6a2735527/grpcio-1.78.1-cp310-cp310-manylinux2014_i686.manylinux_2_17_i686.whl", hash = "sha256:15f6e636d1152667ddb4022b37534c161c8477274edb26a0b65b215dd0a81e97", size = 7198654, upload-time = "2026-02-20T01:12:46.164Z" }, - { url = "https://files.pythonhosted.org/packages/aa/28/a61c5bdf53c1638e657bb5eebb93c789837820e1fdb965145f05eccc2994/grpcio-1.78.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:27b5cb669603efb7883a882275db88b6b5d6b6c9f0267d5846ba8699b7ace338", size = 6727238, upload-time = "2026-02-20T01:12:48.472Z" }, - { url = "https://files.pythonhosted.org/packages/9d/3e/aa143d0687801986a29d85788c96089449f36651cd4e2a493737ae0c5be9/grpcio-1.78.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:86edb3966778fa05bfdb333688fde5dc9079f9e2a9aa6a5c42e9564b7656ba04", size = 7300960, upload-time = "2026-02-20T01:12:51.139Z" }, - { url = "https://files.pythonhosted.org/packages/30/d3/53e0f26b46417f28d14b5951fc6a1eff79c08c8a339e967c0a19ec7cf9e9/grpcio-1.78.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:849cc62eb989bc3be5629d4f3acef79be0d0ff15622201ed251a86d17fef6494", size = 8285274, upload-time = "2026-02-20T01:12:53.315Z" }, - { url = "https://files.pythonhosted.org/packages/29/d0/e0e9fd477ce86c07ed1ed1d5c34790f050b6d58bfde77b02b36e23f8b235/grpcio-1.78.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:9a00992d6fafe19d648b9ccb4952200c50d8e36d0cce8cf026c56ed3fdc28465", size = 7726620, upload-time = "2026-02-20T01:12:56.498Z" }, - { url = "https://files.pythonhosted.org/packages/5e/b5/e138a9f7810d196081b2e047c378ca12358c5906d79c42ddec41bb43d528/grpcio-1.78.1-cp310-cp310-win32.whl", hash = "sha256:f8759a1347f3b4f03d9a9d4ce8f9f31ad5e5d0144ba06ccfb1ffaeb0ba4c1e20", size = 4076778, upload-time = "2026-02-20T01:12:59.098Z" }, - { url = "https://files.pythonhosted.org/packages/4e/95/9b02316b85731df0943a635ca6d02f155f673c4f17e60be0c4892a6eb051/grpcio-1.78.1-cp310-cp310-win_amd64.whl", hash = "sha256:e840405a3f1249509892be2399f668c59b9d492068a2cf326d661a8c79e5e747", size = 4798925, upload-time = "2026-02-20T01:13:03.186Z" }, { url = "https://files.pythonhosted.org/packages/bf/1e/ad774af3b2c84f49c6d8c4a7bea4c40f02268ea8380630c28777edda463b/grpcio-1.78.1-cp311-cp311-linux_armv7l.whl", hash = "sha256:3a8aa79bc6e004394c0abefd4b034c14affda7b66480085d87f5fbadf43b593b", size = 5951132, upload-time = "2026-02-20T01:13:05.942Z" }, { url = "https://files.pythonhosted.org/packages/48/9d/ad3c284bedd88c545e20675d98ae904114d8517a71b0efc0901e9166628f/grpcio-1.78.1-cp311-cp311-macosx_11_0_universal2.whl", hash = "sha256:8e1fcb419da5811deb47b7749b8049f7c62b993ba17822e3c7231e3e0ba65b79", size = 11831052, upload-time = "2026-02-20T01:13:09.604Z" }, { url = "https://files.pythonhosted.org/packages/6d/08/20d12865e47242d03c3ade9bb2127f5b4aded964f373284cfb357d47c5ac/grpcio-1.78.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:b071dccac245c32cd6b1dd96b722283b855881ca0bf1c685cf843185f5d5d51e", size = 6524749, upload-time = "2026-02-20T01:13:21.692Z" }, @@ -2656,16 +1183,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/e2/37/b980e0265479ec65e26b6e300a39ceac33ecb3f762c2861d4bac990317cf/grpcio-1.78.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:ffbb760df1cd49e0989f9826b2fd48930700db6846ac171eaff404f3cfbe5c28", size = 7695243, upload-time = "2026-02-20T01:14:51.376Z" }, { url = "https://files.pythonhosted.org/packages/98/46/5fc42c100ab702fa1ea41a75c890c563c3f96432b4a287d5a6369654f323/grpcio-1.78.1-cp313-cp313-win32.whl", hash = "sha256:1a56bf3ee99af5cf32d469de91bf5de79bdac2e18082b495fc1063ea33f4f2d0", size = 4065329, upload-time = "2026-02-20T01:14:53.952Z" }, { url = "https://files.pythonhosted.org/packages/b0/da/806d60bb6611dfc16cf463d982bd92bd8b6bd5f87dfac66b0a44dfe20995/grpcio-1.78.1-cp313-cp313-win_amd64.whl", hash = "sha256:8991c2add0d8505178ff6c3ae54bd9386279e712be82fa3733c54067aae9eda1", size = 4797637, upload-time = "2026-02-20T01:14:57.276Z" }, - { url = "https://files.pythonhosted.org/packages/66/3a/0195cdf3f4fcde27fe82e2ec93913bf6575e7c7449b006bb5eff1fa75faf/grpcio-1.78.1-cp39-cp39-linux_armv7l.whl", hash = "sha256:559f58b6823e1abc38f82e157800aff649146f8906f7998c356cd48ae274d512", size = 5949570, upload-time = "2026-02-20T01:15:39.478Z" }, - { url = "https://files.pythonhosted.org/packages/b4/4a/59741882c26c4d21a9af0b3552262711e3e9b0c4eb67696568366790cfc2/grpcio-1.78.1-cp39-cp39-macosx_11_0_universal2.whl", hash = "sha256:36aeff5ba8aaf70ceb2cbf6cbba9ad6beef715ad744841f3e0cd977ec02e5966", size = 11825370, upload-time = "2026-02-20T01:15:42.432Z" }, - { url = "https://files.pythonhosted.org/packages/31/a9/a62a0b0fe9bc5fe2cce031c0df5746115296ffd35e5eb075f04c2460c378/grpcio-1.78.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:0fa9943d4c7f4a14a9a876153a4e8ee2bb20a410b65c09f31510b2a42271f41b", size = 6521350, upload-time = "2026-02-20T01:15:46.334Z" }, - { url = "https://files.pythonhosted.org/packages/ad/37/39c1ac921df29b530d56a67457195d5883462360771eaf635399390cf680/grpcio-1.78.1-cp39-cp39-manylinux2014_i686.manylinux_2_17_i686.whl", hash = "sha256:75fa92c47d048d696f12b81a775316fca68385ffc6e6cb1ed1d76c8562579f74", size = 7198980, upload-time = "2026-02-20T01:15:49.779Z" }, - { url = "https://files.pythonhosted.org/packages/ab/ce/12062fc4d702e274a11bfa6e76ef87d0da38cb49872f62c24dac178aedd5/grpcio-1.78.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:ca6aebae928383e971d5eace4f1a217fd7aadaf18d5ddd3163d80354105e9068", size = 6727055, upload-time = "2026-02-20T01:15:52.38Z" }, - { url = "https://files.pythonhosted.org/packages/ab/28/33a96519cf0315fe065e028a8241e6cf15e175df3a58e902890f112556b3/grpcio-1.78.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:5572c5dd1e43dbb452b466be9794f77e3502bdb6aa6a1a7feca72c98c5085ca7", size = 7298944, upload-time = "2026-02-20T01:15:55.624Z" }, - { url = "https://files.pythonhosted.org/packages/3b/f3/fd420ef1e0fef3202f5a2f83264dc9f030f3547dcc9cf42c53294de33237/grpcio-1.78.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:e49e720cd6b092504ec7bb2f60eb459aaaf4ce0e5fe20521c201b179e93b5d5d", size = 8285531, upload-time = "2026-02-20T01:15:58.957Z" }, - { url = "https://files.pythonhosted.org/packages/60/43/808c927e5fe8d82eba42c38e6b5bfb53f82c182baee3f35e70992ba05580/grpcio-1.78.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:ebeec1383aed86530a5f39646984e92d6596c050629982ac54eeb4e2f6ead668", size = 7724167, upload-time = "2026-02-20T01:16:02.439Z" }, - { url = "https://files.pythonhosted.org/packages/34/c4/c91ad78f61b274405fcdc2430cf16da8f31cc1ccf82c9e97573c603f5e91/grpcio-1.78.1-cp39-cp39-win32.whl", hash = "sha256:263307118791bc350f4642749a9c8c2d13fec496228ab11070973e568c256bfd", size = 4077361, upload-time = "2026-02-20T01:16:05.053Z" }, - { url = "https://files.pythonhosted.org/packages/a0/4a/bbb2eeb77dab12e1b8d1a3a19af37aa783913b64f67340a9f65bde2bd1af/grpcio-1.78.1-cp39-cp39-win_amd64.whl", hash = "sha256:13937b28986f45fee342806b07c6344db785ad74a549ebcb00c659142973556f", size = 4800213, upload-time = "2026-02-20T01:16:07.75Z" }, ] [[package]] @@ -2704,8 +1221,8 @@ name = "httpcore" version = "1.0.9" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "certifi", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "h11", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "certifi" }, + { name = "h11" }, ] sdist = { url = "https://files.pythonhosted.org/packages/06/94/82699a10bca87a5556c9c59b5963f2d039dbd239f25bc2a63907a05a14cb/httpcore-1.0.9.tar.gz", hash = "sha256:6e34463af53fd2ab5d807f399a9b45ea31c3dfa2276f15a2c3f00afff6e176e8", size = 85484, upload-time = "2025-04-24T22:06:22.219Z" } wheels = [ @@ -2717,10 +1234,10 @@ name = "httpx" version = "0.28.1" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "anyio", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "certifi", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "httpcore", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "idna", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "anyio" }, + { name = "certifi" }, + { name = "httpcore" }, + { name = "idna" }, ] sdist = { url = "https://files.pythonhosted.org/packages/b1/df/48c586a5fe32a0f01324ee087459e112ebb7224f646c0b5023f5e79e9956/httpx-0.28.1.tar.gz", hash = "sha256:75e98c5f16b0f35b567856f597f06ff2270a374470a5c2392242528e3e3e42fc", size = 141406, upload-time = "2024-12-06T15:37:23.222Z" } wheels = [ @@ -2732,67 +1249,40 @@ name = "huggingface-hub" version = "0.36.2" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version >= '3.13' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", ] dependencies = [ - { name = "filelock", version = "3.19.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "filelock", version = "3.24.3", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "fsspec", marker = "python_full_version < '3.10' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "hf-xet", marker = "(python_full_version < '3.10' and platform_machine == 'aarch64') or (python_full_version < '3.10' and platform_machine == 'amd64') or (python_full_version < '3.10' and platform_machine == 'arm64') or (python_full_version < '3.10' and platform_machine == 'x86_64') or (platform_machine != 'aarch64' and platform_machine != 'amd64' and platform_machine != 'arm64' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'aarch64' and platform_machine != 'amd64' and platform_machine != 'arm64' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and platform_machine != 'amd64' and platform_machine != 'arm64' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine == 'amd64' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine == 'aarch64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine == 'amd64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "packaging", marker = "python_full_version < '3.10' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "pyyaml", marker = "python_full_version < '3.10' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "requests", marker = "python_full_version < '3.10' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "tqdm", marker = "python_full_version < '3.10' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "typing-extensions", marker = "python_full_version < '3.10' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "filelock", marker = "extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "fsspec", marker = "extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "hf-xet", marker = "(platform_machine == 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine == 'amd64' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "packaging", marker = "extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "pyyaml", marker = "extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "requests", marker = "extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "tqdm", marker = "extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "typing-extensions", marker = "extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/7c/b7/8cb61d2eece5fb05a83271da168186721c450eb74e3c31f7ef3169fa475b/huggingface_hub-0.36.2.tar.gz", hash = "sha256:1934304d2fb224f8afa3b87007d58501acfda9215b334eed53072dd5e815ff7a", size = 649782, upload-time = "2026-02-06T09:24:13.098Z" } wheels = [ @@ -2806,82 +1296,60 @@ source = { registry = "https://pypi.org/simple" } resolution-markers = [ "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.11.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.10.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.11.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.10.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", "python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", ] dependencies = [ - { name = "filelock", version = "3.24.3", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "fsspec", marker = "(python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "hf-xet", marker = "(python_full_version >= '3.10' and platform_machine == 'AMD64' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.10' and platform_machine == 'aarch64' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.10' and platform_machine == 'amd64' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.10' and platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.10' and platform_machine == 'x86_64' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine != 'AMD64' and platform_machine != 'aarch64' and platform_machine != 'amd64' and platform_machine != 'arm64' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'AMD64' and platform_machine != 'aarch64' and platform_machine != 'amd64' and platform_machine != 'arm64' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'AMD64' and platform_machine != 'aarch64' and platform_machine != 'amd64' and platform_machine != 'arm64' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'AMD64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine == 'AMD64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'aarch64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine == 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'amd64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine == 'amd64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "httpx", marker = "(python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "packaging", marker = "(python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "pyyaml", marker = "(python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "shellingham", marker = "(python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "tqdm", marker = "(python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "typer-slim", marker = "(python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "typing-extensions", marker = "(python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "filelock", marker = "extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "fsspec", marker = "extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "hf-xet", marker = "(platform_machine == 'AMD64' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine == 'aarch64' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine == 'amd64' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine == 'x86_64' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "httpx", marker = "extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "packaging", marker = "extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "pyyaml", marker = "extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "shellingham", marker = "extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "tqdm", marker = "extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "typer-slim", marker = "extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "typing-extensions", marker = "extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/c4/fc/eb9bc06130e8bbda6a616e1b80a7aa127681c448d6b49806f61db2670b61/huggingface_hub-1.4.1.tar.gz", hash = "sha256:b41131ec35e631e7383ab26d6146b8d8972abc8b6309b963b306fbcca87f5ed5", size = 642156, upload-time = "2026-02-06T09:20:03.013Z" } wheels = [ { url = "https://files.pythonhosted.org/packages/d5/ae/2f6d96b4e6c5478d87d606a1934b5d436c4a2bce6bb7c6fdece891c128e3/huggingface_hub-1.4.1-py3-none-any.whl", hash = "sha256:9931d075fb7a79af5abc487106414ec5fba2c0ae86104c0c62fd6cae38873d18", size = 553326, upload-time = "2026-02-06T09:20:00.728Z" }, ] -[[package]] -name = "humanfriendly" -version = "10.0" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "pyreadline3", marker = "(python_full_version < '3.10' and sys_platform == 'win32') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/cc/3f/2c29224acb2e2df4d2046e4c73ee2662023c58ff5b113c4c1adac0886c43/humanfriendly-10.0.tar.gz", hash = "sha256:6b0b831ce8f15f7300721aa49829fc4e83921a9a301cc7f606be6686a2288ddc", size = 360702, upload-time = "2021-09-17T21:40:43.31Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/f0/0f/310fb31e39e2d734ccaa2c0fb981ee41f7bd5056ce9bc29b2248bd569169/humanfriendly-10.0-py2.py3-none-any.whl", hash = "sha256:1697e1a8a8f550fd43c2865cd84542fc175a61dcb779b6fee18cf6b6ccba1477", size = 86794, upload-time = "2021-09-17T21:40:39.897Z" }, -] - [[package]] name = "hydra-core" version = "1.3.2" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "antlr4-python3-runtime", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "omegaconf", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "packaging", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "antlr4-python3-runtime" }, + { name = "omegaconf" }, + { name = "packaging" }, ] sdist = { url = "https://files.pythonhosted.org/packages/6d/8e/07e42bc434a847154083b315779b0a81d567154504624e181caf2c71cd98/hydra-core-1.3.2.tar.gz", hash = "sha256:8a878ed67216997c3e9d88a8e72e7b4767e81af37afb4ea3334b269a4390a824", size = 3263494, upload-time = "2023-02-23T18:33:43.03Z" } wheels = [ @@ -2910,30 +1378,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/0e/61/66938bbb5fc52dbdf84594873d5b51fb1f7c7794e9c0f5bd885f30bc507b/idna-3.11-py3-none-any.whl", hash = "sha256:771a87f49d9defaf64091e6e6fe9c18d4833f140bd19464795bc32d966ca37ea", size = 71008, upload-time = "2025-10-12T14:55:18.883Z" }, ] -[[package]] -name = "importlib-metadata" -version = "8.7.1" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "zipp", marker = "(python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/f3/49/3b30cad09e7771a4982d9975a8cbf64f00d4a1ececb53297f1d9a7be1b10/importlib_metadata-8.7.1.tar.gz", hash = "sha256:49fef1ae6440c182052f407c8d34a68f72efc36db9ca90dc0113398f2fdde8bb", size = 57107, upload-time = "2025-12-21T10:00:19.278Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/fa/5e/f8e9a1d23b9c20a551a8a02ea3637b4642e22c2626e3a13a9a29cdea99eb/importlib_metadata-8.7.1-py3-none-any.whl", hash = "sha256:5a1f80bf1daa489495071efbb095d75a634cf28a8bc299581244063b53176151", size = 27865, upload-time = "2025-12-21T10:00:18.329Z" }, -] - -[[package]] -name = "importlib-resources" -version = "6.5.2" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "zipp", marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/cf/8c/f834fbf984f691b4f7ff60f50b514cc3de5cc08abfc3295564dd89c5e2e7/importlib_resources-6.5.2.tar.gz", hash = "sha256:185f87adef5bcc288449d98fb4fba07cea78bc036455dd44c5fc4a2fe78fed2c", size = 44693, upload-time = "2025-01-03T18:51:56.698Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/a4/ed/1f1afb2e9e7f38a545d628f864d562a5ae64fe6f7a10e28ffb9b185b4e89/importlib_resources-6.5.2-py3-none-any.whl", hash = "sha256:789cfdc3ed28c78b67a06acb8126751ced69a3d5f79c095a98298cd8a760ccec", size = 37461, upload-time = "2025-01-03T18:51:54.306Z" }, -] - [[package]] name = "indic-numtowords" version = "1.1.0" @@ -2948,121 +1392,18 @@ name = "inflect" version = "7.5.0" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "more-itertools", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "typeguard", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "more-itertools" }, + { name = "typeguard" }, ] sdist = { url = "https://files.pythonhosted.org/packages/78/c6/943357d44a21fd995723d07ccaddd78023eace03c1846049a2645d4324a3/inflect-7.5.0.tar.gz", hash = "sha256:faf19801c3742ed5a05a8ce388e0d8fe1a07f8d095c82201eb904f5d27ad571f", size = 73751, upload-time = "2024-12-28T17:11:18.897Z" } wheels = [ { url = "https://files.pythonhosted.org/packages/8a/eb/427ed2b20a38a4ee29f24dbe4ae2dafab198674fe9a85e3d6adf9e5f5f41/inflect-7.5.0-py3-none-any.whl", hash = "sha256:2aea70e5e70c35d8350b8097396ec155ffd68def678c7ff97f51aa69c1d92344", size = 35197, upload-time = "2024-12-28T17:11:15.931Z" }, ] -[[package]] -name = "iniconfig" -version = "2.1.0" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", -] -sdist = { url = "https://files.pythonhosted.org/packages/f2/97/ebf4da567aa6827c909642694d71c9fcf53e5b504f2d96afea02718862f3/iniconfig-2.1.0.tar.gz", hash = "sha256:3abbd2e30b36733fee78f9c7f7308f2d0050e88f0087fd25c2645f63c773e1c7", size = 4793, upload-time = "2025-03-19T20:09:59.721Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/2c/e1/e6716421ea10d38022b952c159d5161ca1193197fb744506875fbb87ea7b/iniconfig-2.1.0-py3-none-any.whl", hash = "sha256:9deba5723312380e77435581c6bf4935c94cbfab9b1ed33ef8d238ea168eb760", size = 6050, upload-time = "2025-03-19T20:10:01.071Z" }, -] - [[package]] name = "iniconfig" version = "2.3.0" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.11.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.10.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.11.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.10.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", -] sdist = { url = "https://files.pythonhosted.org/packages/72/34/14ca021ce8e5dfedc35312d08ba8bf51fdd999c576889fc2c24cb97f4f10/iniconfig-2.3.0.tar.gz", hash = "sha256:c76315c77db068650d49c5b56314774a7804df16fee4402c1f19d6d15d8c4730", size = 20503, upload-time = "2025-10-18T21:55:43.219Z" } wheels = [ { url = "https://files.pythonhosted.org/packages/cb/b1/3846dd7f199d53cb17f49cba7e651e9ce294d8497c8c150530ed11865bb8/iniconfig-2.3.0-py3-none-any.whl", hash = "sha256:f631c04d2c48c52b84d0d0549c99ff3859c98df65b3101406327ecc7d53fbf12", size = 7484, upload-time = "2025-10-18T21:55:41.639Z" }, @@ -3073,87 +1414,29 @@ name = "intervaltree" version = "3.2.1" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "sortedcontainers", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "sortedcontainers" }, ] sdist = { url = "https://files.pythonhosted.org/packages/53/c3/b2afa612aa0373f3e6bb190e6de35f293b307d1537f109e3e25dbfcdf212/intervaltree-3.2.1.tar.gz", hash = "sha256:f3f7e8baeb7dd75b9f7a6d33cf3ec10025984a8e66e3016d537e52130c73cfe2", size = 1231531, upload-time = "2025-12-24T04:25:06.773Z" } wheels = [ { url = "https://files.pythonhosted.org/packages/83/7f/8a80a1c7c2ed05822b5a2b312d2995f30c533641f8198366ba2e26a7bb03/intervaltree-3.2.1-py2.py3-none-any.whl", hash = "sha256:a8a8381bbd35d48ceebee932c77ffc988492d22fb1d27d0ba1d74a7694eb8f0b", size = 25929, upload-time = "2025-12-24T04:25:05.298Z" }, ] -[[package]] -name = "ipython" -version = "8.38.0" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", -] -dependencies = [ - { name = "colorama", marker = "(python_full_version == '3.10.*' and sys_platform == 'win32') or (python_full_version != '3.10.*' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "decorator", marker = "python_full_version == '3.10.*' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "exceptiongroup", marker = "python_full_version == '3.10.*' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "jedi", marker = "python_full_version == '3.10.*' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "matplotlib-inline", marker = "python_full_version == '3.10.*' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "pexpect", marker = "(python_full_version == '3.10.*' and sys_platform != 'emscripten' and sys_platform != 'win32') or (python_full_version != '3.10.*' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "prompt-toolkit", marker = "python_full_version == '3.10.*' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "pygments", marker = "python_full_version == '3.10.*' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "stack-data", marker = "python_full_version == '3.10.*' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "traitlets", marker = "python_full_version == '3.10.*' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "typing-extensions", marker = "python_full_version == '3.10.*' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/e5/61/1810830e8b93c72dcd3c0f150c80a00c3deb229562d9423807ec92c3a539/ipython-8.38.0.tar.gz", hash = "sha256:9cfea8c903ce0867cc2f23199ed8545eb741f3a69420bfcf3743ad1cec856d39", size = 5513996, upload-time = "2026-01-05T10:59:06.901Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/9f/df/db59624f4c71b39717c423409950ac3f2c8b2ce4b0aac843112c7fb3f721/ipython-8.38.0-py3-none-any.whl", hash = "sha256:750162629d800ac65bb3b543a14e7a74b0e88063eac9b92124d4b2aa3f6d8e86", size = 831813, upload-time = "2026-01-05T10:59:04.239Z" }, -] - [[package]] name = "ipython" version = "9.10.0" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", -] dependencies = [ - { name = "colorama", marker = "(python_full_version >= '3.11' and sys_platform == 'win32') or (python_full_version < '3.11' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "decorator", marker = "python_full_version >= '3.11' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "ipython-pygments-lexers", marker = "python_full_version >= '3.11' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "jedi", marker = "python_full_version >= '3.11' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "matplotlib-inline", marker = "python_full_version >= '3.11' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "pexpect", marker = "(python_full_version >= '3.11' and sys_platform != 'emscripten' and sys_platform != 'win32') or (python_full_version < '3.11' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "prompt-toolkit", marker = "python_full_version >= '3.11' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "pygments", marker = "python_full_version >= '3.11' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "stack-data", marker = "python_full_version >= '3.11' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "traitlets", marker = "python_full_version >= '3.11' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "typing-extensions", marker = "python_full_version == '3.11.*' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "colorama", marker = "sys_platform == 'win32' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "decorator" }, + { name = "ipython-pygments-lexers" }, + { name = "jedi" }, + { name = "matplotlib-inline" }, + { name = "pexpect", marker = "(sys_platform != 'emscripten' and sys_platform != 'win32') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "prompt-toolkit" }, + { name = "pygments" }, + { name = "stack-data" }, + { name = "traitlets" }, + { name = "typing-extensions", marker = "python_full_version < '3.12' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/a6/60/2111715ea11f39b1535bed6024b7dec7918b71e5e5d30855a5b503056b50/ipython-9.10.0.tar.gz", hash = "sha256:cd9e656be97618a0676d058134cd44e6dc7012c0e5cb36a9ce96a8c904adaf77", size = 4426526, upload-time = "2026-02-02T10:00:33.594Z" } wheels = [ @@ -3165,7 +1448,7 @@ name = "ipython-pygments-lexers" version = "1.1.1" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "pygments", marker = "python_full_version >= '3.11' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "pygments" }, ] sdist = { url = "https://files.pythonhosted.org/packages/ef/4c/5dd1d8af08107f88c7f741ead7a40854b8ac24ddf9ae850afbcf698aa552/ipython_pygments_lexers-1.1.1.tar.gz", hash = "sha256:09c0138009e56b6854f9535736f4171d855c8c08a563a0dcd8022f78355c7e81", size = 8393, upload-time = "2025-01-17T11:24:34.505Z" } wheels = [ @@ -3177,7 +1460,7 @@ name = "jedi" version = "0.19.2" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "parso", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "parso" }, ] sdist = { url = "https://files.pythonhosted.org/packages/72/3a/79a912fbd4d8dd6fbb02bf69afd3bb72cf0c729bb3063c6f4498603db17a/jedi-0.19.2.tar.gz", hash = "sha256:4770dc3de41bde3966b02eb84fbcf557fb33cce26ad23da12c742fb50ecb11f0", size = 1231287, upload-time = "2024-11-11T01:41:42.873Z" } wheels = [ @@ -3201,8 +1484,8 @@ name = "jiwer" version = "3.1.0" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "click", version = "8.3.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "rapidfuzz", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "click" }, + { name = "rapidfuzz" }, ] sdist = { url = "https://files.pythonhosted.org/packages/85/3e/71b95cf0e2179fb5de8744a79fd36c8bd4e02e1803129a16d423884b6654/jiwer-3.1.0.tar.gz", hash = "sha256:dc492d09e570f1baba98c76aba09baf8e09c06e6808a4ba412dd4bde67fb79ac", size = 103187, upload-time = "2025-01-31T12:14:10.86Z" } wheels = [ @@ -3218,60 +1501,15 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/7b/91/984aca2ec129e2757d1e4e3c81c3fcda9d0f85b74670a094cc443d9ee949/joblib-1.5.3-py3-none-any.whl", hash = "sha256:5fc3c5039fc5ca8c0276333a188bbd59d6b7ab37fe6632daa76bc7f9ec18e713", size = 309071, upload-time = "2025-12-15T08:41:44.973Z" }, ] -[[package]] -name = "jsonschema" -version = "4.25.1" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", -] -dependencies = [ - { name = "attrs", marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "jsonschema-specifications", marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "referencing", version = "0.36.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "rpds-py", version = "0.27.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/74/69/f7185de793a29082a9f3c7728268ffb31cb5095131a9c139a74078e27336/jsonschema-4.25.1.tar.gz", hash = "sha256:e4a9655ce0da0c0b67a085847e00a3a51449e1157f4f75e9fb5aa545e122eb85", size = 357342, upload-time = "2025-08-18T17:03:50.038Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/bf/9c/8c95d856233c1f82500c2450b8c68576b4cf1c871db3afac5c34ff84e6fd/jsonschema-4.25.1-py3-none-any.whl", hash = "sha256:3fba0169e345c7175110351d456342c364814cfcf3b964ba4587f22915230a63", size = 90040, upload-time = "2025-08-18T17:03:48.373Z" }, -] - [[package]] name = "jsonschema" version = "4.26.0" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.11.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.10.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", -] dependencies = [ - { name = "attrs", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "jsonschema-specifications", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "referencing", version = "0.37.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "rpds-py", version = "0.30.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "attrs" }, + { name = "jsonschema-specifications" }, + { name = "referencing" }, + { name = "rpds-py" }, ] sdist = { url = "https://files.pythonhosted.org/packages/b3/fc/e067678238fa451312d4c62bf6e6cf5ec56375422aee02f9cb5f909b3047/jsonschema-4.26.0.tar.gz", hash = "sha256:0c26707e2efad8aa1bfc5b7ce170f3fccc2e4918ff85989ba9ffa9facb2be326", size = 366583, upload-time = "2026-01-07T13:41:07.246Z" } wheels = [ @@ -3283,8 +1521,7 @@ name = "jsonschema-specifications" version = "2025.9.1" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "referencing", version = "0.36.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "referencing", version = "0.37.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "referencing" }, ] sdist = { url = "https://files.pythonhosted.org/packages/19/74/a633ee74eb36c44aa6d1095e7cc5569bebf04342ee146178e2d36600708b/jsonschema_specifications-2025.9.1.tar.gz", hash = "sha256:b540987f239e745613c7a9176f3edb72b832a4ac465cf02712288397832b5e8d", size = 32855, upload-time = "2025-09-08T01:34:59.186Z" } wheels = [ @@ -3296,12 +1533,9 @@ name = "julius" version = "0.2.7" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and sys_platform == 'darwin') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.8.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(python_full_version < '3.10' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.8.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.10.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version >= '3.10' and sys_platform == 'darwin') or (python_full_version >= '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.10.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(python_full_version >= '3.10' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.10.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(python_full_version >= '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.10.0", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or sys_platform == 'darwin' or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.10.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.10.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/a1/19/c9e1596b5572c786b93428d0904280e964c930fae7e6c9368ed9e1b63922/julius-0.2.7.tar.gz", hash = "sha256:3c0f5f5306d7d6016fcc95196b274cae6f07e2c9596eed314e4e7641554fbb08", size = 59640, upload-time = "2022-09-19T16:13:34.2Z" } @@ -3310,7 +1544,7 @@ name = "kaldi-python-io" version = "1.2.2" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "numpy", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "numpy" }, ] sdist = { url = "https://files.pythonhosted.org/packages/80/45/e3e542ffa8970ebd782fcece35e2295de9c60e8c396c2c1a403410d1b24e/kaldi-python-io-1.2.2.tar.gz", hash = "sha256:4ebb4029c6c58296cc0abf96edff02832ba341d290ed37624a8d00105f0f7c00", size = 8814, upload-time = "2021-03-18T12:02:05.832Z" } @@ -3319,11 +1553,6 @@ name = "kaldialign" version = "0.9.1" source = { registry = "https://pypi.org/simple" } wheels = [ - { url = "https://files.pythonhosted.org/packages/d2/a0/f94eee8b64d7d20bac0725baf8221223e033a76387f9677845893dbcea4d/kaldialign-0.9.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:026f713cf18e272ef35602acb55294a92a7245ff94a3c45dcce0c3090f20d115", size = 113321, upload-time = "2024-03-17T23:17:25.378Z" }, - { url = "https://files.pythonhosted.org/packages/99/d0/6791cf1e0aac7e2dcb4430397b48046654a1109dbe8ab40f92c0c3cd07c7/kaldialign-0.9.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8d75a3a1716b299225e8b6f6ec2f6300dccae0ee35cf5bd2b40e493a89f13bb8", size = 87360, upload-time = "2024-03-17T23:22:28.638Z" }, - { url = "https://files.pythonhosted.org/packages/c7/b0/2d074f332743993f0938021d730fa1f6735f4312ada4245d4ad97295c8a1/kaldialign-0.9.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0a3f7af4ee8180d05cba148de79a6c81ea7f17822bb31707c1b00b9d9d5b5d50", size = 91767, upload-time = "2024-03-17T23:16:23.476Z" }, - { url = "https://files.pythonhosted.org/packages/61/ec/d62225522e188bc70950f8c0a07a5c945018f39cb3660ce690c7b2e5ddd1/kaldialign-0.9.1-cp310-cp310-win32.whl", hash = "sha256:154725a816022632f166ea842c7becd7236f6d7dffc82f6549f36a5c940c8a1e", size = 61726, upload-time = "2024-03-17T23:19:34.868Z" }, - { url = "https://files.pythonhosted.org/packages/85/57/d3e270229acd86207d06e1ed5ef0f5aba572877cdd671004f4cd6656b60d/kaldialign-0.9.1-cp310-cp310-win_amd64.whl", hash = "sha256:80c17a8723589291f68daece92f25c98bad21d49ecaf8d64b158ba343e79f5bd", size = 70277, upload-time = "2024-03-17T23:21:26.124Z" }, { url = "https://files.pythonhosted.org/packages/1d/6f/5d4ecd96842e5a6ba1288095daa35264e79d3e72fac326a7a2a80d1220f9/kaldialign-0.9.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:14991bef6400fe6f93f6ebbc5923b9baa5bb5f979baa66cb5e116496b030192d", size = 113339, upload-time = "2024-03-17T23:16:29.101Z" }, { url = "https://files.pythonhosted.org/packages/a5/d9/1effbcd3e7b8a5975d9661ea232f28d1694748676184e5ce21a61398a940/kaldialign-0.9.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:886386e06bee54929b5a56ac7693bcd22dd6568e257a0e15a58946eb5cb64bd9", size = 87375, upload-time = "2024-03-17T23:25:30.547Z" }, { url = "https://files.pythonhosted.org/packages/86/2c/6adf305326f48bac470985069036e2eb1ed198fcbd8a5ca04d8055c4373f/kaldialign-0.9.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:49a7eb2790acfa9e50409c4253fd785e0ecb0a23cc123bc97f1b06caf6382f8f", size = 91755, upload-time = "2024-03-17T23:16:44.306Z" }, @@ -3336,226 +1565,14 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/83/b2/aac02ff83128f8068898ad37eb0077cecad0548d1207ec0ff5f61107f8e2/kaldialign-0.9.1-cp312-cp312-win_amd64.whl", hash = "sha256:c6090ef4ebdaf95fa78b46d7eda05b7367d8d889228a67696217487d4ceb783c", size = 70822, upload-time = "2024-03-17T23:22:40.849Z" }, { url = "https://files.pythonhosted.org/packages/da/32/a565d6828502782fc31d07d7676dc39adb16df5b64eec11f2225ac8a2d21/kaldialign-0.9.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9b6e8122ca31f1bab2690d225f74cf0493387c4e6794ff02d2425d2800117fd4", size = 92152, upload-time = "2025-05-14T19:40:03.882Z" }, { url = "https://files.pythonhosted.org/packages/c4/e1/940a24ce5f164fa53fcb07ff9889dbb2ad131784e3fab4085ad6f3e13b5c/kaldialign-0.9.1-cp313-cp313-win_amd64.whl", hash = "sha256:2bd9647cc76d294fa0e35cc27f2fb96f88077c5a03f07475fd80a7216f6b334b", size = 74749, upload-time = "2025-05-14T19:41:20.461Z" }, - { url = "https://files.pythonhosted.org/packages/38/69/7742e25757759dc690026edd7e54b505fff343040bb5e40aa5e1470816f1/kaldialign-0.9.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:ceab2a7da2d56358570eccf6e05e401e0164a4eff608755353954df57143f11c", size = 113565, upload-time = "2024-03-17T23:17:24.944Z" }, - { url = "https://files.pythonhosted.org/packages/d1/8d/462123424fca571297dcdd0bf1c9ee16c6b013d06716822e50f6bc040eea/kaldialign-0.9.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8abb5daffe21987ab34c8ed6e6b5cfd15055d4dc8e5234bf5611279396f49e55", size = 87459, upload-time = "2024-03-17T23:26:51.435Z" }, - { url = "https://files.pythonhosted.org/packages/f8/7c/e013269eb08b62d17f95ac3071fce96d39f521974a77665590c38dfdccb5/kaldialign-0.9.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f0b6efd8d014f101098642ec2d99ee9a3d0c780c818e6e6ce5c18b6f4240f799", size = 91987, upload-time = "2024-03-17T23:19:16.394Z" }, - { url = "https://files.pythonhosted.org/packages/ce/e8/eab1e587d9acca69baa880f0ebbfe5a4f942b494fbcbdfc29dadc8dacbb1/kaldialign-0.9.1-cp39-cp39-win32.whl", hash = "sha256:b5d15974a86f3899aea2557f961b516f0a15157919663b50a89b6e5a17e54801", size = 61956, upload-time = "2024-03-17T23:19:37.971Z" }, - { url = "https://files.pythonhosted.org/packages/d3/16/9b215d9cebe397f937c39c890a6ed8eafea941b51d35728565ad386afaef/kaldialign-0.9.1-cp39-cp39-win_amd64.whl", hash = "sha256:6a92738abc4100f2e2e5ae9fc50311491550af4fbfe3dddec1438263a4132bc4", size = 70359, upload-time = "2024-03-17T23:24:35.086Z" }, -] - -[[package]] -name = "kiwisolver" -version = "1.4.7" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", -] -sdist = { url = "https://files.pythonhosted.org/packages/85/4d/2255e1c76304cbd60b48cee302b66d1dde4468dc5b1160e4b7cb43778f2a/kiwisolver-1.4.7.tar.gz", hash = "sha256:9893ff81bd7107f7b685d3017cc6583daadb4fc26e4a888350df530e41980a60", size = 97286, upload-time = "2024-09-04T09:39:44.302Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/97/14/fc943dd65268a96347472b4fbe5dcc2f6f55034516f80576cd0dd3a8930f/kiwisolver-1.4.7-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:8a9c83f75223d5e48b0bc9cb1bf2776cf01563e00ade8775ffe13b0b6e1af3a6", size = 122440, upload-time = "2024-09-04T09:03:44.9Z" }, - { url = "https://files.pythonhosted.org/packages/1e/46/e68fed66236b69dd02fcdb506218c05ac0e39745d696d22709498896875d/kiwisolver-1.4.7-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:58370b1ffbd35407444d57057b57da5d6549d2d854fa30249771775c63b5fe17", size = 65758, upload-time = "2024-09-04T09:03:46.582Z" }, - { url = "https://files.pythonhosted.org/packages/ef/fa/65de49c85838681fc9cb05de2a68067a683717321e01ddafb5b8024286f0/kiwisolver-1.4.7-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:aa0abdf853e09aff551db11fce173e2177d00786c688203f52c87ad7fcd91ef9", size = 64311, upload-time = "2024-09-04T09:03:47.973Z" }, - { url = "https://files.pythonhosted.org/packages/42/9c/cc8d90f6ef550f65443bad5872ffa68f3dee36de4974768628bea7c14979/kiwisolver-1.4.7-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:8d53103597a252fb3ab8b5845af04c7a26d5e7ea8122303dd7a021176a87e8b9", size = 1637109, upload-time = "2024-09-04T09:03:49.281Z" }, - { url = "https://files.pythonhosted.org/packages/55/91/0a57ce324caf2ff5403edab71c508dd8f648094b18cfbb4c8cc0fde4a6ac/kiwisolver-1.4.7-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:88f17c5ffa8e9462fb79f62746428dd57b46eb931698e42e990ad63103f35e6c", size = 1617814, upload-time = "2024-09-04T09:03:51.444Z" }, - { url = "https://files.pythonhosted.org/packages/12/5d/c36140313f2510e20207708adf36ae4919416d697ee0236b0ddfb6fd1050/kiwisolver-1.4.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:88a9ca9c710d598fd75ee5de59d5bda2684d9db36a9f50b6125eaea3969c2599", size = 1400881, upload-time = "2024-09-04T09:03:53.357Z" }, - { url = "https://files.pythonhosted.org/packages/56/d0/786e524f9ed648324a466ca8df86298780ef2b29c25313d9a4f16992d3cf/kiwisolver-1.4.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f4d742cb7af1c28303a51b7a27aaee540e71bb8e24f68c736f6f2ffc82f2bf05", size = 1512972, upload-time = "2024-09-04T09:03:55.082Z" }, - { url = "https://files.pythonhosted.org/packages/67/5a/77851f2f201e6141d63c10a0708e996a1363efaf9e1609ad0441b343763b/kiwisolver-1.4.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e28c7fea2196bf4c2f8d46a0415c77a1c480cc0724722f23d7410ffe9842c407", size = 1444787, upload-time = "2024-09-04T09:03:56.588Z" }, - { url = "https://files.pythonhosted.org/packages/06/5f/1f5eaab84355885e224a6fc8d73089e8713dc7e91c121f00b9a1c58a2195/kiwisolver-1.4.7-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:e968b84db54f9d42046cf154e02911e39c0435c9801681e3fc9ce8a3c4130278", size = 2199212, upload-time = "2024-09-04T09:03:58.557Z" }, - { url = "https://files.pythonhosted.org/packages/b5/28/9152a3bfe976a0ae21d445415defc9d1cd8614b2910b7614b30b27a47270/kiwisolver-1.4.7-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:0c18ec74c0472de033e1bebb2911c3c310eef5649133dd0bedf2a169a1b269e5", size = 2346399, upload-time = "2024-09-04T09:04:00.178Z" }, - { url = "https://files.pythonhosted.org/packages/26/f6/453d1904c52ac3b400f4d5e240ac5fec25263716723e44be65f4d7149d13/kiwisolver-1.4.7-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:8f0ea6da6d393d8b2e187e6a5e3fb81f5862010a40c3945e2c6d12ae45cfb2ad", size = 2308688, upload-time = "2024-09-04T09:04:02.216Z" }, - { url = "https://files.pythonhosted.org/packages/5a/9a/d4968499441b9ae187e81745e3277a8b4d7c60840a52dc9d535a7909fac3/kiwisolver-1.4.7-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:f106407dda69ae456dd1227966bf445b157ccc80ba0dff3802bb63f30b74e895", size = 2445493, upload-time = "2024-09-04T09:04:04.571Z" }, - { url = "https://files.pythonhosted.org/packages/07/c9/032267192e7828520dacb64dfdb1d74f292765f179e467c1cba97687f17d/kiwisolver-1.4.7-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:84ec80df401cfee1457063732d90022f93951944b5b58975d34ab56bb150dfb3", size = 2262191, upload-time = "2024-09-04T09:04:05.969Z" }, - { url = "https://files.pythonhosted.org/packages/6c/ad/db0aedb638a58b2951da46ddaeecf204be8b4f5454df020d850c7fa8dca8/kiwisolver-1.4.7-cp310-cp310-win32.whl", hash = "sha256:71bb308552200fb2c195e35ef05de12f0c878c07fc91c270eb3d6e41698c3bcc", size = 46644, upload-time = "2024-09-04T09:04:07.408Z" }, - { url = "https://files.pythonhosted.org/packages/12/ca/d0f7b7ffbb0be1e7c2258b53554efec1fd652921f10d7d85045aff93ab61/kiwisolver-1.4.7-cp310-cp310-win_amd64.whl", hash = "sha256:44756f9fd339de0fb6ee4f8c1696cfd19b2422e0d70b4cefc1cc7f1f64045a8c", size = 55877, upload-time = "2024-09-04T09:04:08.869Z" }, - { url = "https://files.pythonhosted.org/packages/97/6c/cfcc128672f47a3e3c0d918ecb67830600078b025bfc32d858f2e2d5c6a4/kiwisolver-1.4.7-cp310-cp310-win_arm64.whl", hash = "sha256:78a42513018c41c2ffd262eb676442315cbfe3c44eed82385c2ed043bc63210a", size = 48347, upload-time = "2024-09-04T09:04:10.106Z" }, - { url = "https://files.pythonhosted.org/packages/e9/44/77429fa0a58f941d6e1c58da9efe08597d2e86bf2b2cce6626834f49d07b/kiwisolver-1.4.7-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:d2b0e12a42fb4e72d509fc994713d099cbb15ebf1103545e8a45f14da2dfca54", size = 122442, upload-time = "2024-09-04T09:04:11.432Z" }, - { url = "https://files.pythonhosted.org/packages/e5/20/8c75caed8f2462d63c7fd65e16c832b8f76cda331ac9e615e914ee80bac9/kiwisolver-1.4.7-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:2a8781ac3edc42ea4b90bc23e7d37b665d89423818e26eb6df90698aa2287c95", size = 65762, upload-time = "2024-09-04T09:04:12.468Z" }, - { url = "https://files.pythonhosted.org/packages/f4/98/fe010f15dc7230f45bc4cf367b012d651367fd203caaa992fd1f5963560e/kiwisolver-1.4.7-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:46707a10836894b559e04b0fd143e343945c97fd170d69a2d26d640b4e297935", size = 64319, upload-time = "2024-09-04T09:04:13.635Z" }, - { url = "https://files.pythonhosted.org/packages/8b/1b/b5d618f4e58c0675654c1e5051bcf42c776703edb21c02b8c74135541f60/kiwisolver-1.4.7-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ef97b8df011141c9b0f6caf23b29379f87dd13183c978a30a3c546d2c47314cb", size = 1334260, upload-time = "2024-09-04T09:04:14.878Z" }, - { url = "https://files.pythonhosted.org/packages/b8/01/946852b13057a162a8c32c4c8d2e9ed79f0bb5d86569a40c0b5fb103e373/kiwisolver-1.4.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3ab58c12a2cd0fc769089e6d38466c46d7f76aced0a1f54c77652446733d2d02", size = 1426589, upload-time = "2024-09-04T09:04:16.514Z" }, - { url = "https://files.pythonhosted.org/packages/70/d1/c9f96df26b459e15cf8a965304e6e6f4eb291e0f7a9460b4ad97b047561e/kiwisolver-1.4.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:803b8e1459341c1bb56d1c5c010406d5edec8a0713a0945851290a7930679b51", size = 1541080, upload-time = "2024-09-04T09:04:18.322Z" }, - { url = "https://files.pythonhosted.org/packages/d3/73/2686990eb8b02d05f3de759d6a23a4ee7d491e659007dd4c075fede4b5d0/kiwisolver-1.4.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f9a9e8a507420fe35992ee9ecb302dab68550dedc0da9e2880dd88071c5fb052", size = 1470049, upload-time = "2024-09-04T09:04:20.266Z" }, - { url = "https://files.pythonhosted.org/packages/a7/4b/2db7af3ed3af7c35f388d5f53c28e155cd402a55432d800c543dc6deb731/kiwisolver-1.4.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:18077b53dc3bb490e330669a99920c5e6a496889ae8c63b58fbc57c3d7f33a18", size = 1426376, upload-time = "2024-09-04T09:04:22.419Z" }, - { url = "https://files.pythonhosted.org/packages/05/83/2857317d04ea46dc5d115f0df7e676997bbd968ced8e2bd6f7f19cfc8d7f/kiwisolver-1.4.7-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:6af936f79086a89b3680a280c47ea90b4df7047b5bdf3aa5c524bbedddb9e545", size = 2222231, upload-time = "2024-09-04T09:04:24.526Z" }, - { url = "https://files.pythonhosted.org/packages/0d/b5/866f86f5897cd4ab6d25d22e403404766a123f138bd6a02ecb2cdde52c18/kiwisolver-1.4.7-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:3abc5b19d24af4b77d1598a585b8a719beb8569a71568b66f4ebe1fb0449460b", size = 2368634, upload-time = "2024-09-04T09:04:25.899Z" }, - { url = "https://files.pythonhosted.org/packages/c1/ee/73de8385403faba55f782a41260210528fe3273d0cddcf6d51648202d6d0/kiwisolver-1.4.7-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:933d4de052939d90afbe6e9d5273ae05fb836cc86c15b686edd4b3560cc0ee36", size = 2329024, upload-time = "2024-09-04T09:04:28.523Z" }, - { url = "https://files.pythonhosted.org/packages/a1/e7/cd101d8cd2cdfaa42dc06c433df17c8303d31129c9fdd16c0ea37672af91/kiwisolver-1.4.7-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:65e720d2ab2b53f1f72fb5da5fb477455905ce2c88aaa671ff0a447c2c80e8e3", size = 2468484, upload-time = "2024-09-04T09:04:30.547Z" }, - { url = "https://files.pythonhosted.org/packages/e1/72/84f09d45a10bc57a40bb58b81b99d8f22b58b2040c912b7eb97ebf625bf2/kiwisolver-1.4.7-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:3bf1ed55088f214ba6427484c59553123fdd9b218a42bbc8c6496d6754b1e523", size = 2284078, upload-time = "2024-09-04T09:04:33.218Z" }, - { url = "https://files.pythonhosted.org/packages/d2/d4/71828f32b956612dc36efd7be1788980cb1e66bfb3706e6dec9acad9b4f9/kiwisolver-1.4.7-cp311-cp311-win32.whl", hash = "sha256:4c00336b9dd5ad96d0a558fd18a8b6f711b7449acce4c157e7343ba92dd0cf3d", size = 46645, upload-time = "2024-09-04T09:04:34.371Z" }, - { url = "https://files.pythonhosted.org/packages/a1/65/d43e9a20aabcf2e798ad1aff6c143ae3a42cf506754bcb6a7ed8259c8425/kiwisolver-1.4.7-cp311-cp311-win_amd64.whl", hash = "sha256:929e294c1ac1e9f615c62a4e4313ca1823ba37326c164ec720a803287c4c499b", size = 56022, upload-time = "2024-09-04T09:04:35.786Z" }, - { url = "https://files.pythonhosted.org/packages/35/b3/9f75a2e06f1b4ca00b2b192bc2b739334127d27f1d0625627ff8479302ba/kiwisolver-1.4.7-cp311-cp311-win_arm64.whl", hash = "sha256:e33e8fbd440c917106b237ef1a2f1449dfbb9b6f6e1ce17c94cd6a1e0d438376", size = 48536, upload-time = "2024-09-04T09:04:37.525Z" }, - { url = "https://files.pythonhosted.org/packages/97/9c/0a11c714cf8b6ef91001c8212c4ef207f772dd84540104952c45c1f0a249/kiwisolver-1.4.7-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:5360cc32706dab3931f738d3079652d20982511f7c0ac5711483e6eab08efff2", size = 121808, upload-time = "2024-09-04T09:04:38.637Z" }, - { url = "https://files.pythonhosted.org/packages/f2/d8/0fe8c5f5d35878ddd135f44f2af0e4e1d379e1c7b0716f97cdcb88d4fd27/kiwisolver-1.4.7-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:942216596dc64ddb25adb215c3c783215b23626f8d84e8eff8d6d45c3f29f75a", size = 65531, upload-time = "2024-09-04T09:04:39.694Z" }, - { url = "https://files.pythonhosted.org/packages/80/c5/57fa58276dfdfa612241d640a64ca2f76adc6ffcebdbd135b4ef60095098/kiwisolver-1.4.7-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:48b571ecd8bae15702e4f22d3ff6a0f13e54d3d00cd25216d5e7f658242065ee", size = 63894, upload-time = "2024-09-04T09:04:41.6Z" }, - { url = "https://files.pythonhosted.org/packages/8b/e9/26d3edd4c4ad1c5b891d8747a4f81b1b0aba9fb9721de6600a4adc09773b/kiwisolver-1.4.7-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ad42ba922c67c5f219097b28fae965e10045ddf145d2928bfac2eb2e17673640", size = 1369296, upload-time = "2024-09-04T09:04:42.886Z" }, - { url = "https://files.pythonhosted.org/packages/b6/67/3f4850b5e6cffb75ec40577ddf54f7b82b15269cc5097ff2e968ee32ea7d/kiwisolver-1.4.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:612a10bdae23404a72941a0fc8fa2660c6ea1217c4ce0dbcab8a8f6543ea9e7f", size = 1461450, upload-time = "2024-09-04T09:04:46.284Z" }, - { url = "https://files.pythonhosted.org/packages/52/be/86cbb9c9a315e98a8dc6b1d23c43cffd91d97d49318854f9c37b0e41cd68/kiwisolver-1.4.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9e838bba3a3bac0fe06d849d29772eb1afb9745a59710762e4ba3f4cb8424483", size = 1579168, upload-time = "2024-09-04T09:04:47.91Z" }, - { url = "https://files.pythonhosted.org/packages/0f/00/65061acf64bd5fd34c1f4ae53f20b43b0a017a541f242a60b135b9d1e301/kiwisolver-1.4.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:22f499f6157236c19f4bbbd472fa55b063db77a16cd74d49afe28992dff8c258", size = 1507308, upload-time = "2024-09-04T09:04:49.465Z" }, - { url = "https://files.pythonhosted.org/packages/21/e4/c0b6746fd2eb62fe702118b3ca0cb384ce95e1261cfada58ff693aeec08a/kiwisolver-1.4.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:693902d433cf585133699972b6d7c42a8b9f8f826ebcaf0132ff55200afc599e", size = 1464186, upload-time = "2024-09-04T09:04:50.949Z" }, - { url = "https://files.pythonhosted.org/packages/0a/0f/529d0a9fffb4d514f2782c829b0b4b371f7f441d61aa55f1de1c614c4ef3/kiwisolver-1.4.7-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4e77f2126c3e0b0d055f44513ed349038ac180371ed9b52fe96a32aa071a5107", size = 2247877, upload-time = "2024-09-04T09:04:52.388Z" }, - { url = "https://files.pythonhosted.org/packages/d1/e1/66603ad779258843036d45adcbe1af0d1a889a07af4635f8b4ec7dccda35/kiwisolver-1.4.7-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:657a05857bda581c3656bfc3b20e353c232e9193eb167766ad2dc58b56504948", size = 2404204, upload-time = "2024-09-04T09:04:54.385Z" }, - { url = "https://files.pythonhosted.org/packages/8d/61/de5fb1ca7ad1f9ab7970e340a5b833d735df24689047de6ae71ab9d8d0e7/kiwisolver-1.4.7-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:4bfa75a048c056a411f9705856abfc872558e33c055d80af6a380e3658766038", size = 2352461, upload-time = "2024-09-04T09:04:56.307Z" }, - { url = "https://files.pythonhosted.org/packages/ba/d2/0edc00a852e369827f7e05fd008275f550353f1f9bcd55db9363d779fc63/kiwisolver-1.4.7-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:34ea1de54beef1c104422d210c47c7d2a4999bdecf42c7b5718fbe59a4cac383", size = 2501358, upload-time = "2024-09-04T09:04:57.922Z" }, - { url = "https://files.pythonhosted.org/packages/84/15/adc15a483506aec6986c01fb7f237c3aec4d9ed4ac10b756e98a76835933/kiwisolver-1.4.7-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:90da3b5f694b85231cf93586dad5e90e2d71b9428f9aad96952c99055582f520", size = 2314119, upload-time = "2024-09-04T09:04:59.332Z" }, - { url = "https://files.pythonhosted.org/packages/36/08/3a5bb2c53c89660863a5aa1ee236912269f2af8762af04a2e11df851d7b2/kiwisolver-1.4.7-cp312-cp312-win32.whl", hash = "sha256:18e0cca3e008e17fe9b164b55735a325140a5a35faad8de92dd80265cd5eb80b", size = 46367, upload-time = "2024-09-04T09:05:00.804Z" }, - { url = "https://files.pythonhosted.org/packages/19/93/c05f0a6d825c643779fc3c70876bff1ac221f0e31e6f701f0e9578690d70/kiwisolver-1.4.7-cp312-cp312-win_amd64.whl", hash = "sha256:58cb20602b18f86f83a5c87d3ee1c766a79c0d452f8def86d925e6c60fbf7bfb", size = 55884, upload-time = "2024-09-04T09:05:01.924Z" }, - { url = "https://files.pythonhosted.org/packages/d2/f9/3828d8f21b6de4279f0667fb50a9f5215e6fe57d5ec0d61905914f5b6099/kiwisolver-1.4.7-cp312-cp312-win_arm64.whl", hash = "sha256:f5a8b53bdc0b3961f8b6125e198617c40aeed638b387913bf1ce78afb1b0be2a", size = 48528, upload-time = "2024-09-04T09:05:02.983Z" }, - { url = "https://files.pythonhosted.org/packages/c4/06/7da99b04259b0f18b557a4effd1b9c901a747f7fdd84cf834ccf520cb0b2/kiwisolver-1.4.7-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:2e6039dcbe79a8e0f044f1c39db1986a1b8071051efba3ee4d74f5b365f5226e", size = 121913, upload-time = "2024-09-04T09:05:04.072Z" }, - { url = "https://files.pythonhosted.org/packages/97/f5/b8a370d1aa593c17882af0a6f6755aaecd643640c0ed72dcfd2eafc388b9/kiwisolver-1.4.7-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:a1ecf0ac1c518487d9d23b1cd7139a6a65bc460cd101ab01f1be82ecf09794b6", size = 65627, upload-time = "2024-09-04T09:05:05.119Z" }, - { url = "https://files.pythonhosted.org/packages/2a/fc/6c0374f7503522539e2d4d1b497f5ebad3f8ed07ab51aed2af988dd0fb65/kiwisolver-1.4.7-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:7ab9ccab2b5bd5702ab0803676a580fffa2aa178c2badc5557a84cc943fcf750", size = 63888, upload-time = "2024-09-04T09:05:06.191Z" }, - { url = "https://files.pythonhosted.org/packages/bf/3e/0b7172793d0f41cae5c923492da89a2ffcd1adf764c16159ca047463ebd3/kiwisolver-1.4.7-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f816dd2277f8d63d79f9c8473a79fe54047bc0467754962840782c575522224d", size = 1369145, upload-time = "2024-09-04T09:05:07.919Z" }, - { url = "https://files.pythonhosted.org/packages/77/92/47d050d6f6aced2d634258123f2688fbfef8ded3c5baf2c79d94d91f1f58/kiwisolver-1.4.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cf8bcc23ceb5a1b624572a1623b9f79d2c3b337c8c455405ef231933a10da379", size = 1461448, upload-time = "2024-09-04T09:05:10.01Z" }, - { url = "https://files.pythonhosted.org/packages/9c/1b/8f80b18e20b3b294546a1adb41701e79ae21915f4175f311a90d042301cf/kiwisolver-1.4.7-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dea0bf229319828467d7fca8c7c189780aa9ff679c94539eed7532ebe33ed37c", size = 1578750, upload-time = "2024-09-04T09:05:11.598Z" }, - { url = "https://files.pythonhosted.org/packages/a4/fe/fe8e72f3be0a844f257cadd72689c0848c6d5c51bc1d60429e2d14ad776e/kiwisolver-1.4.7-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7c06a4c7cf15ec739ce0e5971b26c93638730090add60e183530d70848ebdd34", size = 1507175, upload-time = "2024-09-04T09:05:13.22Z" }, - { url = "https://files.pythonhosted.org/packages/39/fa/cdc0b6105d90eadc3bee525fecc9179e2b41e1ce0293caaf49cb631a6aaf/kiwisolver-1.4.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:913983ad2deb14e66d83c28b632fd35ba2b825031f2fa4ca29675e665dfecbe1", size = 1463963, upload-time = "2024-09-04T09:05:15.925Z" }, - { url = "https://files.pythonhosted.org/packages/6e/5c/0c03c4e542720c6177d4f408e56d1c8315899db72d46261a4e15b8b33a41/kiwisolver-1.4.7-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:5337ec7809bcd0f424c6b705ecf97941c46279cf5ed92311782c7c9c2026f07f", size = 2248220, upload-time = "2024-09-04T09:05:17.434Z" }, - { url = "https://files.pythonhosted.org/packages/3d/ee/55ef86d5a574f4e767df7da3a3a7ff4954c996e12d4fbe9c408170cd7dcc/kiwisolver-1.4.7-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4c26ed10c4f6fa6ddb329a5120ba3b6db349ca192ae211e882970bfc9d91420b", size = 2404463, upload-time = "2024-09-04T09:05:18.997Z" }, - { url = "https://files.pythonhosted.org/packages/0f/6d/73ad36170b4bff4825dc588acf4f3e6319cb97cd1fb3eb04d9faa6b6f212/kiwisolver-1.4.7-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:c619b101e6de2222c1fcb0531e1b17bbffbe54294bfba43ea0d411d428618c27", size = 2352842, upload-time = "2024-09-04T09:05:21.299Z" }, - { url = "https://files.pythonhosted.org/packages/0b/16/fa531ff9199d3b6473bb4d0f47416cdb08d556c03b8bc1cccf04e756b56d/kiwisolver-1.4.7-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:073a36c8273647592ea332e816e75ef8da5c303236ec0167196793eb1e34657a", size = 2501635, upload-time = "2024-09-04T09:05:23.588Z" }, - { url = "https://files.pythonhosted.org/packages/78/7e/aa9422e78419db0cbe75fb86d8e72b433818f2e62e2e394992d23d23a583/kiwisolver-1.4.7-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:3ce6b2b0231bda412463e152fc18335ba32faf4e8c23a754ad50ffa70e4091ee", size = 2314556, upload-time = "2024-09-04T09:05:25.907Z" }, - { url = "https://files.pythonhosted.org/packages/a8/b2/15f7f556df0a6e5b3772a1e076a9d9f6c538ce5f05bd590eca8106508e06/kiwisolver-1.4.7-cp313-cp313-win32.whl", hash = "sha256:f4c9aee212bc89d4e13f58be11a56cc8036cabad119259d12ace14b34476fd07", size = 46364, upload-time = "2024-09-04T09:05:27.184Z" }, - { url = "https://files.pythonhosted.org/packages/0b/db/32e897e43a330eee8e4770bfd2737a9584b23e33587a0812b8e20aac38f7/kiwisolver-1.4.7-cp313-cp313-win_amd64.whl", hash = "sha256:8a3ec5aa8e38fc4c8af308917ce12c536f1c88452ce554027e55b22cbbfbff76", size = 55887, upload-time = "2024-09-04T09:05:28.372Z" }, - { url = "https://files.pythonhosted.org/packages/c8/a4/df2bdca5270ca85fd25253049eb6708d4127be2ed0e5c2650217450b59e9/kiwisolver-1.4.7-cp313-cp313-win_arm64.whl", hash = "sha256:76c8094ac20ec259471ac53e774623eb62e6e1f56cd8690c67ce6ce4fcb05650", size = 48530, upload-time = "2024-09-04T09:05:30.225Z" }, - { url = "https://files.pythonhosted.org/packages/11/88/37ea0ea64512997b13d69772db8dcdc3bfca5442cda3a5e4bb943652ee3e/kiwisolver-1.4.7-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:3f9362ecfca44c863569d3d3c033dbe8ba452ff8eed6f6b5806382741a1334bd", size = 122449, upload-time = "2024-09-04T09:05:55.311Z" }, - { url = "https://files.pythonhosted.org/packages/4e/45/5a5c46078362cb3882dcacad687c503089263c017ca1241e0483857791eb/kiwisolver-1.4.7-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:e8df2eb9b2bac43ef8b082e06f750350fbbaf2887534a5be97f6cf07b19d9583", size = 65757, upload-time = "2024-09-04T09:05:56.906Z" }, - { url = "https://files.pythonhosted.org/packages/8a/be/a6ae58978772f685d48dd2e84460937761c53c4bbd84e42b0336473d9775/kiwisolver-1.4.7-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f32d6edbc638cde7652bd690c3e728b25332acbadd7cad670cc4a02558d9c417", size = 64312, upload-time = "2024-09-04T09:05:58.384Z" }, - { url = "https://files.pythonhosted.org/packages/f4/04/18ef6f452d311e1e1eb180c9bf5589187fa1f042db877e6fe443ef10099c/kiwisolver-1.4.7-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:e2e6c39bd7b9372b0be21456caab138e8e69cc0fc1190a9dfa92bd45a1e6e904", size = 1626966, upload-time = "2024-09-04T09:05:59.855Z" }, - { url = "https://files.pythonhosted.org/packages/21/b1/40655f6c3fa11ce740e8a964fa8e4c0479c87d6a7944b95af799c7a55dfe/kiwisolver-1.4.7-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:dda56c24d869b1193fcc763f1284b9126550eaf84b88bbc7256e15028f19188a", size = 1607044, upload-time = "2024-09-04T09:06:02.16Z" }, - { url = "https://files.pythonhosted.org/packages/fd/93/af67dbcfb9b3323bbd2c2db1385a7139d8f77630e4a37bb945b57188eb2d/kiwisolver-1.4.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:79849239c39b5e1fd906556c474d9b0439ea6792b637511f3fe3a41158d89ca8", size = 1391879, upload-time = "2024-09-04T09:06:03.908Z" }, - { url = "https://files.pythonhosted.org/packages/40/6f/d60770ef98e77b365d96061d090c0cd9e23418121c55fff188fa4bdf0b54/kiwisolver-1.4.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5e3bc157fed2a4c02ec468de4ecd12a6e22818d4f09cde2c31ee3226ffbefab2", size = 1504751, upload-time = "2024-09-04T09:06:05.58Z" }, - { url = "https://files.pythonhosted.org/packages/fa/3a/5f38667d313e983c432f3fcd86932177519ed8790c724e07d77d1de0188a/kiwisolver-1.4.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3da53da805b71e41053dc670f9a820d1157aae77b6b944e08024d17bcd51ef88", size = 1436990, upload-time = "2024-09-04T09:06:08.126Z" }, - { url = "https://files.pythonhosted.org/packages/cb/3b/1520301a47326e6a6043b502647e42892be33b3f051e9791cc8bb43f1a32/kiwisolver-1.4.7-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8705f17dfeb43139a692298cb6637ee2e59c0194538153e83e9ee0c75c2eddde", size = 2191122, upload-time = "2024-09-04T09:06:10.345Z" }, - { url = "https://files.pythonhosted.org/packages/cf/c4/eb52da300c166239a2233f1f9c4a1b767dfab98fae27681bfb7ea4873cb6/kiwisolver-1.4.7-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:82a5c2f4b87c26bb1a0ef3d16b5c4753434633b83d365cc0ddf2770c93829e3c", size = 2338126, upload-time = "2024-09-04T09:06:12.321Z" }, - { url = "https://files.pythonhosted.org/packages/1a/cb/42b92fd5eadd708dd9107c089e817945500685f3437ce1fd387efebc6d6e/kiwisolver-1.4.7-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:ce8be0466f4c0d585cdb6c1e2ed07232221df101a4c6f28821d2aa754ca2d9e2", size = 2298313, upload-time = "2024-09-04T09:06:14.562Z" }, - { url = "https://files.pythonhosted.org/packages/4f/eb/be25aa791fe5fc75a8b1e0c965e00f942496bc04635c9aae8035f6b76dcd/kiwisolver-1.4.7-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:409afdfe1e2e90e6ee7fc896f3df9a7fec8e793e58bfa0d052c8a82f99c37abb", size = 2437784, upload-time = "2024-09-04T09:06:16.767Z" }, - { url = "https://files.pythonhosted.org/packages/c5/22/30a66be7f3368d76ff95689e1c2e28d382383952964ab15330a15d8bfd03/kiwisolver-1.4.7-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:5b9c3f4ee0b9a439d2415012bd1b1cc2df59e4d6a9939f4d669241d30b414327", size = 2253988, upload-time = "2024-09-04T09:06:18.705Z" }, - { url = "https://files.pythonhosted.org/packages/35/d3/5f2ecb94b5211c8a04f218a76133cc8d6d153b0f9cd0b45fad79907f0689/kiwisolver-1.4.7-cp39-cp39-win32.whl", hash = "sha256:a79ae34384df2b615eefca647a2873842ac3b596418032bef9a7283675962644", size = 46980, upload-time = "2024-09-04T09:06:20.106Z" }, - { url = "https://files.pythonhosted.org/packages/ef/17/cd10d020578764ea91740204edc6b3236ed8106228a46f568d716b11feb2/kiwisolver-1.4.7-cp39-cp39-win_amd64.whl", hash = "sha256:cf0438b42121a66a3a667de17e779330fc0f20b0d97d59d2f2121e182b0505e4", size = 55847, upload-time = "2024-09-04T09:06:21.407Z" }, - { url = "https://files.pythonhosted.org/packages/91/84/32232502020bd78d1d12be7afde15811c64a95ed1f606c10456db4e4c3ac/kiwisolver-1.4.7-cp39-cp39-win_arm64.whl", hash = "sha256:764202cc7e70f767dab49e8df52c7455e8de0df5d858fa801a11aa0d882ccf3f", size = 48494, upload-time = "2024-09-04T09:06:22.648Z" }, - { url = "https://files.pythonhosted.org/packages/ac/59/741b79775d67ab67ced9bb38552da688c0305c16e7ee24bba7a2be253fb7/kiwisolver-1.4.7-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:94252291e3fe68001b1dd747b4c0b3be12582839b95ad4d1b641924d68fd4643", size = 59491, upload-time = "2024-09-04T09:06:24.188Z" }, - { url = "https://files.pythonhosted.org/packages/58/cc/fb239294c29a5656e99e3527f7369b174dd9cc7c3ef2dea7cb3c54a8737b/kiwisolver-1.4.7-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:5b7dfa3b546da08a9f622bb6becdb14b3e24aaa30adba66749d38f3cc7ea9706", size = 57648, upload-time = "2024-09-04T09:06:25.559Z" }, - { url = "https://files.pythonhosted.org/packages/3b/ef/2f009ac1f7aab9f81efb2d837301d255279d618d27b6015780115ac64bdd/kiwisolver-1.4.7-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bd3de6481f4ed8b734da5df134cd5a6a64fe32124fe83dde1e5b5f29fe30b1e6", size = 84257, upload-time = "2024-09-04T09:06:27.038Z" }, - { url = "https://files.pythonhosted.org/packages/81/e1/c64f50987f85b68b1c52b464bb5bf73e71570c0f7782d626d1eb283ad620/kiwisolver-1.4.7-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a91b5f9f1205845d488c928e8570dcb62b893372f63b8b6e98b863ebd2368ff2", size = 80906, upload-time = "2024-09-04T09:06:28.48Z" }, - { url = "https://files.pythonhosted.org/packages/fd/71/1687c5c0a0be2cee39a5c9c389e546f9c6e215e46b691d00d9f646892083/kiwisolver-1.4.7-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:40fa14dbd66b8b8f470d5fc79c089a66185619d31645f9b0773b88b19f7223c4", size = 79951, upload-time = "2024-09-04T09:06:29.966Z" }, - { url = "https://files.pythonhosted.org/packages/ea/8b/d7497df4a1cae9367adf21665dd1f896c2a7aeb8769ad77b662c5e2bcce7/kiwisolver-1.4.7-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:eb542fe7933aa09d8d8f9d9097ef37532a7df6497819d16efe4359890a2f417a", size = 55715, upload-time = "2024-09-04T09:06:31.489Z" }, - { url = "https://files.pythonhosted.org/packages/d5/df/ce37d9b26f07ab90880923c94d12a6ff4d27447096b4c849bfc4339ccfdf/kiwisolver-1.4.7-pp39-pypy39_pp73-macosx_10_15_x86_64.whl", hash = "sha256:8b01aac285f91ca889c800042c35ad3b239e704b150cfd3382adfc9dcc780e39", size = 58666, upload-time = "2024-09-04T09:06:43.756Z" }, - { url = "https://files.pythonhosted.org/packages/b0/d3/e4b04f43bc629ac8e186b77b2b1a251cdfa5b7610fa189dc0db622672ce6/kiwisolver-1.4.7-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:48be928f59a1f5c8207154f935334d374e79f2b5d212826307d072595ad76a2e", size = 57088, upload-time = "2024-09-04T09:06:45.406Z" }, - { url = "https://files.pythonhosted.org/packages/30/1c/752df58e2d339e670a535514d2db4fe8c842ce459776b8080fbe08ebb98e/kiwisolver-1.4.7-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f37cfe618a117e50d8c240555331160d73d0411422b59b5ee217843d7b693608", size = 84321, upload-time = "2024-09-04T09:06:47.557Z" }, - { url = "https://files.pythonhosted.org/packages/f0/f8/fe6484e847bc6e238ec9f9828089fb2c0bb53f2f5f3a79351fde5b565e4f/kiwisolver-1.4.7-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:599b5c873c63a1f6ed7eead644a8a380cfbdf5db91dcb6f85707aaab213b1674", size = 80776, upload-time = "2024-09-04T09:06:49.235Z" }, - { url = "https://files.pythonhosted.org/packages/9b/57/d7163c0379f250ef763aba85330a19feefb5ce6cb541ade853aaba881524/kiwisolver-1.4.7-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:801fa7802e5cfabe3ab0c81a34c323a319b097dfb5004be950482d882f3d7225", size = 79984, upload-time = "2024-09-04T09:06:51.336Z" }, - { url = "https://files.pythonhosted.org/packages/8c/95/4a103776c265d13b3d2cd24fb0494d4e04ea435a8ef97e1b2c026d43250b/kiwisolver-1.4.7-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:0c6c43471bc764fad4bc99c5c2d6d16a676b1abf844ca7c8702bdae92df01ee0", size = 55811, upload-time = "2024-09-04T09:06:53.078Z" }, ] [[package]] name = "kiwisolver" version = "1.4.9" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.11.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.10.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.11.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.10.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", -] sdist = { url = "https://files.pythonhosted.org/packages/5c/3c/85844f1b0feb11ee581ac23fe5fce65cd049a200c1446708cc1b7f922875/kiwisolver-1.4.9.tar.gz", hash = "sha256:c3b22c26c6fd6811b0ae8363b95ca8ce4ea3c202d3d0975b2914310ceb1bcc4d", size = 97564, upload-time = "2025-08-10T21:27:49.279Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/c6/5d/8ce64e36d4e3aac5ca96996457dcf33e34e6051492399a3f1fec5657f30b/kiwisolver-1.4.9-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:b4b4d74bda2b8ebf4da5bd42af11d02d04428b2c32846e4c2c93219df8a7987b", size = 124159, upload-time = "2025-08-10T21:25:35.472Z" }, - { url = "https://files.pythonhosted.org/packages/96/1e/22f63ec454874378175a5f435d6ea1363dd33fb2af832c6643e4ccea0dc8/kiwisolver-1.4.9-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:fb3b8132019ea572f4611d770991000d7f58127560c4889729248eb5852a102f", size = 66578, upload-time = "2025-08-10T21:25:36.73Z" }, - { url = "https://files.pythonhosted.org/packages/41/4c/1925dcfff47a02d465121967b95151c82d11027d5ec5242771e580e731bd/kiwisolver-1.4.9-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:84fd60810829c27ae375114cd379da1fa65e6918e1da405f356a775d49a62bcf", size = 65312, upload-time = "2025-08-10T21:25:37.658Z" }, - { url = "https://files.pythonhosted.org/packages/d4/42/0f333164e6307a0687d1eb9ad256215aae2f4bd5d28f4653d6cd319a3ba3/kiwisolver-1.4.9-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:b78efa4c6e804ecdf727e580dbb9cba85624d2e1c6b5cb059c66290063bd99a9", size = 1628458, upload-time = "2025-08-10T21:25:39.067Z" }, - { url = "https://files.pythonhosted.org/packages/86/b6/2dccb977d651943995a90bfe3495c2ab2ba5cd77093d9f2318a20c9a6f59/kiwisolver-1.4.9-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:d4efec7bcf21671db6a3294ff301d2fc861c31faa3c8740d1a94689234d1b415", size = 1225640, upload-time = "2025-08-10T21:25:40.489Z" }, - { url = "https://files.pythonhosted.org/packages/50/2b/362ebd3eec46c850ccf2bfe3e30f2fc4c008750011f38a850f088c56a1c6/kiwisolver-1.4.9-cp310-cp310-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:90f47e70293fc3688b71271100a1a5453aa9944a81d27ff779c108372cf5567b", size = 1244074, upload-time = "2025-08-10T21:25:42.221Z" }, - { url = "https://files.pythonhosted.org/packages/6f/bb/f09a1e66dab8984773d13184a10a29fe67125337649d26bdef547024ed6b/kiwisolver-1.4.9-cp310-cp310-manylinux_2_24_s390x.manylinux_2_28_s390x.whl", hash = "sha256:8fdca1def57a2e88ef339de1737a1449d6dbf5fab184c54a1fca01d541317154", size = 1293036, upload-time = "2025-08-10T21:25:43.801Z" }, - { url = "https://files.pythonhosted.org/packages/ea/01/11ecf892f201cafda0f68fa59212edaea93e96c37884b747c181303fccd1/kiwisolver-1.4.9-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:9cf554f21be770f5111a1690d42313e140355e687e05cf82cb23d0a721a64a48", size = 2175310, upload-time = "2025-08-10T21:25:45.045Z" }, - { url = "https://files.pythonhosted.org/packages/7f/5f/bfe11d5b934f500cc004314819ea92427e6e5462706a498c1d4fc052e08f/kiwisolver-1.4.9-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:fc1795ac5cd0510207482c3d1d3ed781143383b8cfd36f5c645f3897ce066220", size = 2270943, upload-time = "2025-08-10T21:25:46.393Z" }, - { url = "https://files.pythonhosted.org/packages/3d/de/259f786bf71f1e03e73d87e2db1a9a3bcab64d7b4fd780167123161630ad/kiwisolver-1.4.9-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:ccd09f20ccdbbd341b21a67ab50a119b64a403b09288c27481575105283c1586", size = 2440488, upload-time = "2025-08-10T21:25:48.074Z" }, - { url = "https://files.pythonhosted.org/packages/1b/76/c989c278faf037c4d3421ec07a5c452cd3e09545d6dae7f87c15f54e4edf/kiwisolver-1.4.9-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:540c7c72324d864406a009d72f5d6856f49693db95d1fbb46cf86febef873634", size = 2246787, upload-time = "2025-08-10T21:25:49.442Z" }, - { url = "https://files.pythonhosted.org/packages/a2/55/c2898d84ca440852e560ca9f2a0d28e6e931ac0849b896d77231929900e7/kiwisolver-1.4.9-cp310-cp310-win_amd64.whl", hash = "sha256:ede8c6d533bc6601a47ad4046080d36b8fc99f81e6f1c17b0ac3c2dc91ac7611", size = 73730, upload-time = "2025-08-10T21:25:51.102Z" }, - { url = "https://files.pythonhosted.org/packages/e8/09/486d6ac523dd33b80b368247f238125d027964cfacb45c654841e88fb2ae/kiwisolver-1.4.9-cp310-cp310-win_arm64.whl", hash = "sha256:7b4da0d01ac866a57dd61ac258c5607b4cd677f63abaec7b148354d2b2cdd536", size = 65036, upload-time = "2025-08-10T21:25:52.063Z" }, { url = "https://files.pythonhosted.org/packages/6f/ab/c80b0d5a9d8a1a65f4f815f2afff9798b12c3b9f31f1d304dd233dd920e2/kiwisolver-1.4.9-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:eb14a5da6dc7642b0f3a18f13654847cd8b7a2550e2645a5bda677862b03ba16", size = 124167, upload-time = "2025-08-10T21:25:53.403Z" }, { url = "https://files.pythonhosted.org/packages/a0/c0/27fe1a68a39cf62472a300e2879ffc13c0538546c359b86f149cc19f6ac3/kiwisolver-1.4.9-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:39a219e1c81ae3b103643d2aedb90f1ef22650deb266ff12a19e7773f3e5f089", size = 66579, upload-time = "2025-08-10T21:25:54.79Z" }, { url = "https://files.pythonhosted.org/packages/31/a2/a12a503ac1fd4943c50f9822678e8015a790a13b5490354c68afb8489814/kiwisolver-1.4.9-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:2405a7d98604b87f3fc28b1716783534b1b4b8510d8142adca34ee0bc3c87543", size = 65309, upload-time = "2025-08-10T21:25:55.76Z" }, @@ -3607,11 +1624,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/99/43/7320c50e4133575c66e9f7dadead35ab22d7c012a3b09bb35647792b2a6d/kiwisolver-1.4.9-cp313-cp313t-musllinux_1_2_s390x.whl", hash = "sha256:0ab74e19f6a2b027ea4f845a78827969af45ce790e6cb3e1ebab71bdf9f215ff", size = 2594639, upload-time = "2025-08-10T21:26:57.882Z" }, { url = "https://files.pythonhosted.org/packages/65/d6/17ae4a270d4a987ef8a385b906d2bdfc9fce502d6dc0d3aea865b47f548c/kiwisolver-1.4.9-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:dba5ee5d3981160c28d5490f0d1b7ed730c22470ff7f6cc26cfcfaacb9896a07", size = 2391741, upload-time = "2025-08-10T21:26:59.237Z" }, { url = "https://files.pythonhosted.org/packages/2a/8f/8f6f491d595a9e5912971f3f863d81baddccc8a4d0c3749d6a0dd9ffc9df/kiwisolver-1.4.9-cp313-cp313t-win_arm64.whl", hash = "sha256:0749fd8f4218ad2e851e11cc4dc05c7cbc0cbc4267bdfdb31782e65aace4ee9c", size = 68646, upload-time = "2025-08-10T21:27:00.52Z" }, - { url = "https://files.pythonhosted.org/packages/a2/63/fde392691690f55b38d5dd7b3710f5353bf7a8e52de93a22968801ab8978/kiwisolver-1.4.9-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:4d1d9e582ad4d63062d34077a9a1e9f3c34088a2ec5135b1f7190c07cf366527", size = 60183, upload-time = "2025-08-10T21:27:37.669Z" }, - { url = "https://files.pythonhosted.org/packages/27/b1/6aad34edfdb7cced27f371866f211332bba215bfd918ad3322a58f480d8b/kiwisolver-1.4.9-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:deed0c7258ceb4c44ad5ec7d9918f9f14fd05b2be86378d86cf50e63d1e7b771", size = 58675, upload-time = "2025-08-10T21:27:39.031Z" }, - { url = "https://files.pythonhosted.org/packages/9d/1a/23d855a702bb35a76faed5ae2ba3de57d323f48b1f6b17ee2176c4849463/kiwisolver-1.4.9-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:0a590506f303f512dff6b7f75fd2fd18e16943efee932008fe7140e5fa91d80e", size = 80277, upload-time = "2025-08-10T21:27:40.129Z" }, - { url = "https://files.pythonhosted.org/packages/5a/5b/5239e3c2b8fb5afa1e8508f721bb77325f740ab6994d963e61b2b7abcc1e/kiwisolver-1.4.9-pp310-pypy310_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:e09c2279a4d01f099f52d5c4b3d9e208e91edcbd1a175c9662a8b16e000fece9", size = 77994, upload-time = "2025-08-10T21:27:41.181Z" }, - { url = "https://files.pythonhosted.org/packages/f9/1c/5d4d468fb16f8410e596ed0eac02d2c68752aa7dc92997fe9d60a7147665/kiwisolver-1.4.9-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:c9e7cdf45d594ee04d5be1b24dd9d49f3d1590959b2271fb30b5ca2b262c00fb", size = 73744, upload-time = "2025-08-10T21:27:42.254Z" }, { url = "https://files.pythonhosted.org/packages/a3/0f/36d89194b5a32c054ce93e586d4049b6c2c22887b0eb229c61c68afd3078/kiwisolver-1.4.9-pp311-pypy311_pp73-macosx_10_15_x86_64.whl", hash = "sha256:720e05574713db64c356e86732c0f3c5252818d05f9df320f0ad8380641acea5", size = 60104, upload-time = "2025-08-10T21:27:43.287Z" }, { url = "https://files.pythonhosted.org/packages/52/ba/4ed75f59e4658fd21fe7dde1fee0ac397c678ec3befba3fe6482d987af87/kiwisolver-1.4.9-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:17680d737d5335b552994a2008fab4c851bcd7de33094a82067ef3a576ff02fa", size = 58592, upload-time = "2025-08-10T21:27:44.314Z" }, { url = "https://files.pythonhosted.org/packages/33/01/a8ea7c5ea32a9b45ceeaee051a04c8ed4320f5add3c51bfa20879b765b70/kiwisolver-1.4.9-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:85b5352f94e490c028926ea567fc569c52ec79ce131dadb968d3853e809518c2", size = 80281, upload-time = "2025-08-10T21:27:45.369Z" }, @@ -3636,20 +1648,20 @@ name = "lhotse" version = "1.31.1" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "audioread", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "click", version = "8.3.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "cytoolz", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "intervaltree", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "lilcom", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "numpy", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "packaging", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "pyyaml", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "soundfile", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "tabulate", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "torch", version = "2.10.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.10.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(python_full_version >= '3.10' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.10.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(python_full_version >= '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "tqdm", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "audioread" }, + { name = "click" }, + { name = "cytoolz" }, + { name = "intervaltree" }, + { name = "lilcom" }, + { name = "numpy" }, + { name = "packaging" }, + { name = "pyyaml" }, + { name = "soundfile" }, + { name = "tabulate" }, + { name = "torch", version = "2.10.0", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "torch", version = "2.10.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.10.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "tqdm" }, ] sdist = { url = "https://files.pythonhosted.org/packages/03/28/ef2fb33e424e29dec83d2a150d76fb1920418a5d93d5268e6ce401cc33ad/lhotse-1.31.1.tar.gz", hash = "sha256:2ebc3c103c3e09313dff0c4e8740584e28ec35d74e985412c6b37279144a9716", size = 654706, upload-time = "2025-09-18T21:43:51.262Z" } wheels = [ @@ -3661,19 +1673,11 @@ name = "libcst" version = "1.8.6" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "pyyaml", marker = "(python_full_version >= '3.10' and python_full_version < '3.13') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "pyyaml", marker = "python_full_version < '3.13' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, { name = "pyyaml-ft", marker = "python_full_version >= '3.13' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/de/cd/337df968b38d94c5aabd3e1b10630f047a2b345f6e1d4456bd9fe7417537/libcst-1.8.6.tar.gz", hash = "sha256:f729c37c9317126da9475bdd06a7208eb52fcbd180a6341648b45a56b4ba708b", size = 891354, upload-time = "2025-11-03T22:33:30.621Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/c4/52/97d5454dee9d014821fe0c88f3dc0e83131b97dd074a4d49537056a75475/libcst-1.8.6-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:a20c5182af04332cc94d8520792befda06d73daf2865e6dddc5161c72ea92cb9", size = 2211698, upload-time = "2025-11-03T22:31:50.117Z" }, - { url = "https://files.pythonhosted.org/packages/6c/a4/d1205985d378164687af3247a9c8f8bdb96278b0686ac98ab951bc6d336a/libcst-1.8.6-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:36473e47cb199b7e6531d653ee6ffed057de1d179301e6c67f651f3af0b499d6", size = 2093104, upload-time = "2025-11-03T22:31:52.189Z" }, - { url = "https://files.pythonhosted.org/packages/9e/de/1338da681b7625b51e584922576d54f1b8db8fc7ff4dc79121afc5d4d2cd/libcst-1.8.6-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:06fc56335a45d61b7c1b856bfab4587b84cfe31e9d6368f60bb3c9129d900f58", size = 2237419, upload-time = "2025-11-03T22:31:53.526Z" }, - { url = "https://files.pythonhosted.org/packages/50/06/ee66f2d83b870534756e593d464d8b33b0914c224dff3a407e0f74dc04e0/libcst-1.8.6-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:6b23d14a7fc0addd9795795763af26b185deb7c456b1e7cc4d5228e69dab5ce8", size = 2300820, upload-time = "2025-11-03T22:31:55.995Z" }, - { url = "https://files.pythonhosted.org/packages/9c/ca/959088729de8e0eac8dd516e4fb8623d8d92bad539060fa85c9e94d418a5/libcst-1.8.6-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:16cfe0cfca5fd840e1fb2c30afb628b023d3085b30c3484a79b61eae9d6fe7ba", size = 2301201, upload-time = "2025-11-03T22:31:57.347Z" }, - { url = "https://files.pythonhosted.org/packages/c2/4c/2a21a8c452436097dfe1da277f738c3517f3f728713f16d84b9a3d67ca8d/libcst-1.8.6-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:455f49a93aea4070132c30ebb6c07c2dea0ba6c1fde5ffde59fc45dbb9cfbe4b", size = 2408213, upload-time = "2025-11-03T22:31:59.221Z" }, - { url = "https://files.pythonhosted.org/packages/3e/26/8f7b671fad38a515bb20b038718fd2221ab658299119ac9bcec56c2ced27/libcst-1.8.6-cp310-cp310-win_amd64.whl", hash = "sha256:72cca15800ffc00ba25788e4626189fe0bc5fe2a0c1cb4294bce2e4df21cc073", size = 2119189, upload-time = "2025-11-03T22:32:00.696Z" }, - { url = "https://files.pythonhosted.org/packages/5b/bf/ffb23a48e27001165cc5c81c5d9b3d6583b21b7f5449109e03a0020b060c/libcst-1.8.6-cp310-cp310-win_arm64.whl", hash = "sha256:6cad63e3a26556b020b634d25a8703b605c0e0b491426b3e6b9e12ed20f09100", size = 2001736, upload-time = "2025-11-03T22:32:02.986Z" }, { url = "https://files.pythonhosted.org/packages/dc/15/95c2ecadc0fb4af8a7057ac2012a4c0ad5921b9ef1ace6c20006b56d3b5f/libcst-1.8.6-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:3649a813660fbffd7bc24d3f810b1f75ac98bd40d9d6f56d1f0ee38579021073", size = 2211289, upload-time = "2025-11-03T22:32:04.673Z" }, { url = "https://files.pythonhosted.org/packages/80/c3/7e1107acd5ed15cf60cc07c7bb64498a33042dc4821874aea3ec4942f3cd/libcst-1.8.6-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:0cbe17067055829607c5ba4afa46bfa4d0dd554c0b5a583546e690b7367a29b6", size = 2092927, upload-time = "2025-11-03T22:32:06.209Z" }, { url = "https://files.pythonhosted.org/packages/c1/ff/0d2be87f67e2841a4a37d35505e74b65991d30693295c46fc0380ace0454/libcst-1.8.6-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:59a7e388c57d21d63722018978a8ddba7b176e3a99bd34b9b84a576ed53f2978", size = 2237002, upload-time = "2025-11-03T22:32:07.559Z" }, @@ -3706,14 +1710,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/ad/cd/15762659a3f5799d36aab1bc2b7e732672722e249d7800e3c5f943b41250/libcst-1.8.6-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:7f04febcd70e1e67917be7de513c8d4749d2e09206798558d7fe632134426ea4", size = 2392661, upload-time = "2025-11-03T22:32:47.232Z" }, { url = "https://files.pythonhosted.org/packages/e4/6b/b7f9246c323910fcbe021241500f82e357521495dcfe419004dbb272c7cb/libcst-1.8.6-cp313-cp313t-win_amd64.whl", hash = "sha256:1dc3b897c8b0f7323412da3f4ad12b16b909150efc42238e19cbf19b561cc330", size = 2105068, upload-time = "2025-11-03T22:32:49.145Z" }, { url = "https://files.pythonhosted.org/packages/a6/0b/4fd40607bc4807ec2b93b054594373d7fa3d31bb983789901afcb9bcebe9/libcst-1.8.6-cp313-cp313t-win_arm64.whl", hash = "sha256:44f38139fa95e488db0f8976f9c7ca39a64d6bc09f2eceef260aa1f6da6a2e42", size = 1985181, upload-time = "2025-11-03T22:32:50.597Z" }, - { url = "https://files.pythonhosted.org/packages/0c/09/69a0cd1eeb358f03c3ccd79ca22778afc1c1c723158270ad84ce86266eed/libcst-1.8.6-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:cb2679ef532f9fa5be5c5a283b6357cb6e9888a8dd889c4bb2b01845a29d8c0b", size = 2211812, upload-time = "2025-11-03T22:33:17.748Z" }, - { url = "https://files.pythonhosted.org/packages/ff/38/b965fa7bc4409520404261ce6bdf019e56bed1674b9a68ddfc9e25bc904c/libcst-1.8.6-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:203ec2a83f259baf686b9526268cd23d048d38be5589594ef143aee50a4faf7e", size = 2093137, upload-time = "2025-11-03T22:33:19.457Z" }, - { url = "https://files.pythonhosted.org/packages/a9/7c/083084b91db049343c49a27279c226f4eb27d28bef4942965386418e643e/libcst-1.8.6-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:6366ab2107425bf934b0c83311177f2a371bfc757ee8c6ad4a602d7cbcc2f363", size = 2237609, upload-time = "2025-11-03T22:33:21.083Z" }, - { url = "https://files.pythonhosted.org/packages/26/c5/fcf60600a809b9e4cf75e82484a7a9a4bdc80ba3c9939a6a18af3379c6c7/libcst-1.8.6-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:6aa11df6c58812f731172b593fcb485d7ba09ccc3b52fea6c7f26a43377dc748", size = 2301394, upload-time = "2025-11-03T22:33:22.847Z" }, - { url = "https://files.pythonhosted.org/packages/9f/73/d72942eb3f520bc9444e61a48236694dee3cdc13f6b59179e5288d725b93/libcst-1.8.6-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:351ab879c2fd20d9cb2844ed1ea3e617ed72854d3d1e2b0880ede9c3eea43ba8", size = 2301816, upload-time = "2025-11-03T22:33:24.295Z" }, - { url = "https://files.pythonhosted.org/packages/03/a9/5732b20569a434ee3ff96f1b263e6e3f3df70d8dba5cf7c8f7d4b1d6aa41/libcst-1.8.6-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:98fa1ca321c81fb1f02e5c43f956ca543968cc1a30b264fd8e0a2e1b0b0bf106", size = 2408392, upload-time = "2025-11-03T22:33:25.873Z" }, - { url = "https://files.pythonhosted.org/packages/f9/ad/ecb1275796504a34a9d6d5d4f73bd81cb12930064e98871ad4b4042b82e1/libcst-1.8.6-cp39-cp39-win_amd64.whl", hash = "sha256:25fc7a1303cad7639ad45ec38c06789b4540b7258e9a108924aaa2c132af4aca", size = 2119206, upload-time = "2025-11-03T22:33:27.642Z" }, - { url = "https://files.pythonhosted.org/packages/94/32/b6521d32a7cde089380efa948e05a7cff95c7ece8f7c36380dd6b4bf2263/libcst-1.8.6-cp39-cp39-win_arm64.whl", hash = "sha256:4d7bbdd35f3abdfb5ac5d1a674923572dab892b126a58da81ff2726102d6ec2e", size = 2001882, upload-time = "2025-11-03T22:33:29.06Z" }, ] [[package]] @@ -3726,16 +1722,11 @@ dependencies = [ { name = "joblib" }, { name = "lazy-loader" }, { name = "msgpack" }, - { name = "numba", version = "0.60.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "numba", version = "0.61.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numba" }, { name = "numpy" }, { name = "pooch" }, - { name = "scikit-learn", version = "1.6.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "scikit-learn", version = "1.7.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version == '3.10.*' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "scikit-learn", version = "1.8.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "scipy", version = "1.13.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "scipy", version = "1.15.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version == '3.10.*' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "scipy", version = "1.17.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "scikit-learn" }, + { name = "scipy" }, { name = "soundfile" }, { name = "soxr" }, { name = "standard-aifc", marker = "python_full_version >= '3.13' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, @@ -3753,18 +1744,13 @@ version = "2.4.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "fsspec", extra = ["http"] }, - { name = "lightning-utilities", version = "0.15.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "lightning-utilities", version = "0.15.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "lightning-utilities" }, { name = "packaging" }, - { name = "pytorch-lightning", version = "2.6.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "pytorch-lightning", version = "2.6.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "pytorch-lightning" }, { name = "pyyaml" }, - { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and sys_platform == 'darwin') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.8.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(python_full_version < '3.10' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.8.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.10.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version >= '3.10' and sys_platform == 'darwin') or (python_full_version >= '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.10.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(python_full_version >= '3.10' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.10.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(python_full_version >= '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.10.0", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or sys_platform == 'darwin' or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.10.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.10.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, { name = "torchmetrics" }, { name = "tqdm" }, { name = "typing-extensions" }, @@ -3774,121 +1760,13 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/a3/2c/85eaf42c983b0cd81bcda5876da2c8e2a9fd347908666ea9855724369171/lightning-2.4.0-py3-none-any.whl", hash = "sha256:560163af9711cf59055c448232c473150a299089efce0d2be3cc3288082d8768", size = 810971, upload-time = "2024-08-07T09:46:39.874Z" }, ] -[[package]] -name = "lightning-utilities" -version = "0.15.2" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", -] -dependencies = [ - { name = "packaging", marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "setuptools", marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "typing-extensions", marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/b8/39/6fc58ca81492db047149b4b8fd385aa1bfb8c28cd7cacb0c7eb0c44d842f/lightning_utilities-0.15.2.tar.gz", hash = "sha256:cdf12f530214a63dacefd713f180d1ecf5d165338101617b4742e8f22c032e24", size = 31090, upload-time = "2025-08-06T13:57:39.242Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/de/73/3d757cb3fc16f0f9794dd289bcd0c4a031d9cf54d8137d6b984b2d02edf3/lightning_utilities-0.15.2-py3-none-any.whl", hash = "sha256:ad3ab1703775044bbf880dbf7ddaaac899396c96315f3aa1779cec9d618a9841", size = 29431, upload-time = "2025-08-06T13:57:38.046Z" }, -] - [[package]] name = "lightning-utilities" version = "0.15.3" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.11.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.10.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.11.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.10.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", -] dependencies = [ - { name = "packaging", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "typing-extensions", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "packaging" }, + { name = "typing-extensions" }, ] sdist = { url = "https://files.pythonhosted.org/packages/f1/45/7fa8f56b17dc0f0a41ec70dd307ecd6787254483549843bef4c30ab5adce/lightning_utilities-0.15.3.tar.gz", hash = "sha256:792ae0204c79f6859721ac7f386c237a33b0ed06ba775009cb894e010a842033", size = 33553, upload-time = "2026-02-22T14:48:53.348Z" } wheels = [ @@ -3900,14 +1778,10 @@ name = "lilcom" version = "1.8.2" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "numpy", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "numpy" }, ] sdist = { url = "https://files.pythonhosted.org/packages/29/18/dad9eb84512a517f3c810f5fa47959303b3b33b100fca93d6f5796a7251f/lilcom-1.8.2.tar.gz", hash = "sha256:674dc1bef8c7d403d2e8f274705a4e3e1c1f1e430d4e94e209356b57c1619aca", size = 46683, upload-time = "2026-01-20T00:25:41.872Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/83/a0/8df96b9c184574bcd4ec8ed2dd95aee123d06ceb60843f51229af72350b9/lilcom-1.8.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:3f4a225c645f033c9bec75e3c10d2711613533e2cdecd07fd0ff5171d16de20c", size = 117519, upload-time = "2026-01-15T01:55:48.76Z" }, - { url = "https://files.pythonhosted.org/packages/8a/48/1a7b1fc2a1abf5b20c2f14fafa54cccccd25027e946be43ec0d2b6ab0577/lilcom-1.8.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:c34a2fc511c2de382c1e414f58388f0bca62e19d689efbc6459fb036ef6e4e6f", size = 86593, upload-time = "2026-01-15T01:49:09.802Z" }, - { url = "https://files.pythonhosted.org/packages/fe/7a/447e4b8d98976dbe946cf2c59b09147c0bd70370bba608b786f16c8af054/lilcom-1.8.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:a6b1f8cbb2100a6342749af389f707053a4eb78a778c1159680ddec60d5c7c42", size = 92336, upload-time = "2026-01-20T00:25:48.216Z" }, - { url = "https://files.pythonhosted.org/packages/5c/7a/d80515faf9e45d122bf39395dc028133f6ade04e86d1a6c97716a4a630c6/lilcom-1.8.2-cp310-cp310-win_amd64.whl", hash = "sha256:63b9dad9873cc03a9a99efd7951079461b94d3f1d510e92378ba89dc1f7a5b1c", size = 68523, upload-time = "2026-01-15T01:48:43.389Z" }, { url = "https://files.pythonhosted.org/packages/f7/2c/9b4fd5cf5efeb3a7e76e46d465baf5cf808c18233d9c127cc2dfec050af0/lilcom-1.8.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:845c1365b6f16377a5846b27e8be56e64740d29913e8534a9206cf73c8d5afd0", size = 119986, upload-time = "2026-01-15T01:49:48.125Z" }, { url = "https://files.pythonhosted.org/packages/37/12/26f37710806001a933fde08c92337e12fb0f2fb9380650b6a075d0b077be/lilcom-1.8.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:324d9251d2690586868ce88ad557a43e5e408f592260d877f24ac15b0a0b582a", size = 88440, upload-time = "2026-01-15T01:50:55.064Z" }, { url = "https://files.pythonhosted.org/packages/14/7c/cd8374371c2fe5cfb9364f67601d18ec158e7f0290a57a7e58a5f71c8b93/lilcom-1.8.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:7a4b78053567e0b39f0479b159bf98c45dba8dcc4a7c7fa03b9ae4900d6bf419", size = 94254, upload-time = "2026-01-20T00:28:40.618Z" }, @@ -3920,145 +1794,14 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/b0/8e/66dc6509608f2e23ab6fa0e260eb4c37d840a091ba1502e670208042b4df/lilcom-1.8.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:35012978dcd94b27b878ca5566c4c0d713c89544673aa41a971ac0e09fe38245", size = 86849, upload-time = "2026-01-15T01:51:12.155Z" }, { url = "https://files.pythonhosted.org/packages/43/08/ed28f4a048229029a07b6808cdbdc26de0c0be889ca29454e07677cc303b/lilcom-1.8.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:988538da5b7e819443f2e10f800d79299fe8055ec3a91db8b1ed661dab3223bc", size = 93485, upload-time = "2026-01-20T00:28:43.271Z" }, { url = "https://files.pythonhosted.org/packages/a3/07/4febd60c0571f838a33a5342e7235a997369c0cac5ab71ea3fea04b65585/lilcom-1.8.2-cp313-cp313-win_amd64.whl", hash = "sha256:13d387472a9860909dbead72af29ceaa4f92be27d694df388a1b4a299c42d6a0", size = 69719, upload-time = "2026-01-15T01:48:42.389Z" }, - { url = "https://files.pythonhosted.org/packages/71/b5/06e406f00f1c1422de8d6b1c06370e372e5dab23bdda64ee21d224fdb092/lilcom-1.8.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:7df109f05283c35276ecade8f2c170394a417a2ccc2525e416cf4522907f8643", size = 117690, upload-time = "2026-01-15T01:51:26.232Z" }, - { url = "https://files.pythonhosted.org/packages/b3/6c/eb88558b5465048adeccabeb0573b38847f184d65118b9f9d81ef1d120ba/lilcom-1.8.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:d3390f2eab3520bd0a7ce5565053b72a6967d192973d6f319b0fd517e28a9ee0", size = 86835, upload-time = "2026-01-15T01:48:45.779Z" }, - { url = "https://files.pythonhosted.org/packages/d8/31/1b7210d1b5a41e0d5f6580bde69c20d61052cc37a17b149e1962428f8ebd/lilcom-1.8.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:64c7f015dd3744217edbf00e94563ba0c94817b4503459d05f11ff1d01f99c7a", size = 92396, upload-time = "2026-01-20T00:25:46.333Z" }, - { url = "https://files.pythonhosted.org/packages/d5/b2/056dd9dc670ade2603e853734d5e8e93654ad3133a6472ada4ac1982e259/lilcom-1.8.2-cp39-cp39-win_amd64.whl", hash = "sha256:ef8466e10c795d4329c59985e20a0ebe1ad1a9224bfeb5be74101818c6cfdc9d", size = 68185, upload-time = "2026-01-15T01:48:59.047Z" }, -] - -[[package]] -name = "llvmlite" -version = "0.43.0" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", -] -sdist = { url = "https://files.pythonhosted.org/packages/9f/3d/f513755f285db51ab363a53e898b85562e950f79a2e6767a364530c2f645/llvmlite-0.43.0.tar.gz", hash = "sha256:ae2b5b5c3ef67354824fb75517c8db5fbe93bc02cd9671f3c62271626bc041d5", size = 157069, upload-time = "2024-06-13T18:09:32.641Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/23/ff/6ca7e98998b573b4bd6566f15c35e5c8bea829663a6df0c7aa55ab559da9/llvmlite-0.43.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:a289af9a1687c6cf463478f0fa8e8aa3b6fb813317b0d70bf1ed0759eab6f761", size = 31064408, upload-time = "2024-06-13T18:08:13.462Z" }, - { url = "https://files.pythonhosted.org/packages/ca/5c/a27f9257f86f0cda3f764ff21d9f4217b9f6a0d45e7a39ecfa7905f524ce/llvmlite-0.43.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:6d4fd101f571a31acb1559ae1af30f30b1dc4b3186669f92ad780e17c81e91bc", size = 28793153, upload-time = "2024-06-13T18:08:17.336Z" }, - { url = "https://files.pythonhosted.org/packages/7e/3c/4410f670ad0a911227ea2ecfcba9f672a77cf1924df5280c4562032ec32d/llvmlite-0.43.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7d434ec7e2ce3cc8f452d1cd9a28591745de022f931d67be688a737320dfcead", size = 42857276, upload-time = "2024-06-13T18:08:21.071Z" }, - { url = "https://files.pythonhosted.org/packages/c6/21/2ffbab5714e72f2483207b4a1de79b2eecd9debbf666ff4e7067bcc5c134/llvmlite-0.43.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6912a87782acdff6eb8bf01675ed01d60ca1f2551f8176a300a886f09e836a6a", size = 43871781, upload-time = "2024-06-13T18:08:26.32Z" }, - { url = "https://files.pythonhosted.org/packages/f2/26/b5478037c453554a61625ef1125f7e12bb1429ae11c6376f47beba9b0179/llvmlite-0.43.0-cp310-cp310-win_amd64.whl", hash = "sha256:14f0e4bf2fd2d9a75a3534111e8ebeb08eda2f33e9bdd6dfa13282afacdde0ed", size = 28123487, upload-time = "2024-06-13T18:08:30.348Z" }, - { url = "https://files.pythonhosted.org/packages/95/8c/de3276d773ab6ce3ad676df5fab5aac19696b2956319d65d7dd88fb10f19/llvmlite-0.43.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3e8d0618cb9bfe40ac38a9633f2493d4d4e9fcc2f438d39a4e854f39cc0f5f98", size = 31064409, upload-time = "2024-06-13T18:08:34.006Z" }, - { url = "https://files.pythonhosted.org/packages/ee/e1/38deed89ced4cf378c61e232265cfe933ccde56ae83c901aa68b477d14b1/llvmlite-0.43.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:e0a9a1a39d4bf3517f2af9d23d479b4175ead205c592ceeb8b89af48a327ea57", size = 28793149, upload-time = "2024-06-13T18:08:37.42Z" }, - { url = "https://files.pythonhosted.org/packages/2f/b2/4429433eb2dc8379e2cb582502dca074c23837f8fd009907f78a24de4c25/llvmlite-0.43.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c1da416ab53e4f7f3bc8d4eeba36d801cc1894b9fbfbf2022b29b6bad34a7df2", size = 42857277, upload-time = "2024-06-13T18:08:40.822Z" }, - { url = "https://files.pythonhosted.org/packages/6b/99/5d00a7d671b1ba1751fc9f19d3b36f3300774c6eebe2bcdb5f6191763eb4/llvmlite-0.43.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:977525a1e5f4059316b183fb4fd34fa858c9eade31f165427a3977c95e3ee749", size = 43871781, upload-time = "2024-06-13T18:08:46.41Z" }, - { url = "https://files.pythonhosted.org/packages/20/ab/ed5ed3688c6ba4f0b8d789da19fd8e30a9cf7fc5852effe311bc5aefe73e/llvmlite-0.43.0-cp311-cp311-win_amd64.whl", hash = "sha256:d5bd550001d26450bd90777736c69d68c487d17bf371438f975229b2b8241a91", size = 28107433, upload-time = "2024-06-13T18:08:50.834Z" }, - { url = "https://files.pythonhosted.org/packages/0b/67/9443509e5d2b6d8587bae3ede5598fa8bd586b1c7701696663ea8af15b5b/llvmlite-0.43.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:f99b600aa7f65235a5a05d0b9a9f31150c390f31261f2a0ba678e26823ec38f7", size = 31064409, upload-time = "2024-06-13T18:08:54.375Z" }, - { url = "https://files.pythonhosted.org/packages/a2/9c/24139d3712d2d352e300c39c0e00d167472c08b3bd350c3c33d72c88ff8d/llvmlite-0.43.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:35d80d61d0cda2d767f72de99450766250560399edc309da16937b93d3b676e7", size = 28793145, upload-time = "2024-06-13T18:08:57.953Z" }, - { url = "https://files.pythonhosted.org/packages/bf/f1/4c205a48488e574ee9f6505d50e84370a978c90f08dab41a42d8f2c576b6/llvmlite-0.43.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:eccce86bba940bae0d8d48ed925f21dbb813519169246e2ab292b5092aba121f", size = 42857276, upload-time = "2024-06-13T18:09:02.067Z" }, - { url = "https://files.pythonhosted.org/packages/00/5f/323c4d56e8401c50185fd0e875fcf06b71bf825a863699be1eb10aa2a9cb/llvmlite-0.43.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:df6509e1507ca0760787a199d19439cc887bfd82226f5af746d6977bd9f66844", size = 43871781, upload-time = "2024-06-13T18:09:06.667Z" }, - { url = "https://files.pythonhosted.org/packages/c6/94/dea10e263655ce78d777e78d904903faae39d1fc440762be4a9dc46bed49/llvmlite-0.43.0-cp312-cp312-win_amd64.whl", hash = "sha256:7a2872ee80dcf6b5dbdc838763d26554c2a18aa833d31a2635bff16aafefb9c9", size = 28107442, upload-time = "2024-06-13T18:09:10.709Z" }, - { url = "https://files.pythonhosted.org/packages/2a/73/12925b1bbb3c2beb6d96f892ef5b4d742c34f00ddb9f4a125e9e87b22f52/llvmlite-0.43.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9cd2a7376f7b3367019b664c21f0c61766219faa3b03731113ead75107f3b66c", size = 31064410, upload-time = "2024-06-13T18:09:14.091Z" }, - { url = "https://files.pythonhosted.org/packages/cc/61/58c70aa0808a8cba825a7d98cc65bef4801b99328fba80837bfcb5fc767f/llvmlite-0.43.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:18e9953c748b105668487b7c81a3e97b046d8abf95c4ddc0cd3c94f4e4651ae8", size = 28793145, upload-time = "2024-06-13T18:09:17.531Z" }, - { url = "https://files.pythonhosted.org/packages/c8/c6/9324eb5de2ba9d99cbed853d85ba7a318652a48e077797bec27cf40f911d/llvmlite-0.43.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:74937acd22dc11b33946b67dca7680e6d103d6e90eeaaaf932603bec6fe7b03a", size = 42857276, upload-time = "2024-06-13T18:09:21.377Z" }, - { url = "https://files.pythonhosted.org/packages/e0/d0/889e9705107db7b1ec0767b03f15d7b95b4c4f9fdf91928ab1c7e9ffacf6/llvmlite-0.43.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc9efc739cc6ed760f795806f67889923f7274276f0eb45092a1473e40d9b867", size = 43871777, upload-time = "2024-06-13T18:09:25.76Z" }, - { url = "https://files.pythonhosted.org/packages/df/41/73cc26a2634b538cfe813f618c91e7e9960b8c163f8f0c94a2b0f008b9da/llvmlite-0.43.0-cp39-cp39-win_amd64.whl", hash = "sha256:47e147cdda9037f94b399bf03bfd8a6b6b1f2f90be94a454e3386f006455a9b4", size = 28123489, upload-time = "2024-06-13T18:09:29.78Z" }, ] [[package]] name = "llvmlite" version = "0.44.0" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.11.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.10.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.11.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.10.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", -] sdist = { url = "https://files.pythonhosted.org/packages/89/6a/95a3d3610d5c75293d5dbbb2a76480d5d4eeba641557b69fe90af6c5b84e/llvmlite-0.44.0.tar.gz", hash = "sha256:07667d66a5d150abed9157ab6c0b9393c9356f229784a4385c02f99e94fc94d4", size = 171880, upload-time = "2025-01-20T11:14:41.342Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/41/75/d4863ddfd8ab5f6e70f4504cf8cc37f4e986ec6910f4ef8502bb7d3c1c71/llvmlite-0.44.0-cp310-cp310-macosx_10_14_x86_64.whl", hash = "sha256:9fbadbfba8422123bab5535b293da1cf72f9f478a65645ecd73e781f962ca614", size = 28132306, upload-time = "2025-01-20T11:12:18.634Z" }, - { url = "https://files.pythonhosted.org/packages/37/d9/6e8943e1515d2f1003e8278819ec03e4e653e2eeb71e4d00de6cfe59424e/llvmlite-0.44.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:cccf8eb28f24840f2689fb1a45f9c0f7e582dd24e088dcf96e424834af11f791", size = 26201096, upload-time = "2025-01-20T11:12:24.544Z" }, - { url = "https://files.pythonhosted.org/packages/aa/46/8ffbc114def88cc698906bf5acab54ca9fdf9214fe04aed0e71731fb3688/llvmlite-0.44.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7202b678cdf904823c764ee0fe2dfe38a76981f4c1e51715b4cb5abb6cf1d9e8", size = 42361859, upload-time = "2025-01-20T11:12:31.839Z" }, - { url = "https://files.pythonhosted.org/packages/30/1c/9366b29ab050a726af13ebaae8d0dff00c3c58562261c79c635ad4f5eb71/llvmlite-0.44.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:40526fb5e313d7b96bda4cbb2c85cd5374e04d80732dd36a282d72a560bb6408", size = 41184199, upload-time = "2025-01-20T11:12:40.049Z" }, - { url = "https://files.pythonhosted.org/packages/69/07/35e7c594b021ecb1938540f5bce543ddd8713cff97f71d81f021221edc1b/llvmlite-0.44.0-cp310-cp310-win_amd64.whl", hash = "sha256:41e3839150db4330e1b2716c0be3b5c4672525b4c9005e17c7597f835f351ce2", size = 30332381, upload-time = "2025-01-20T11:12:47.054Z" }, { url = "https://files.pythonhosted.org/packages/b5/e2/86b245397052386595ad726f9742e5223d7aea999b18c518a50e96c3aca4/llvmlite-0.44.0-cp311-cp311-macosx_10_14_x86_64.whl", hash = "sha256:eed7d5f29136bda63b6d7804c279e2b72e08c952b7c5df61f45db408e0ee52f3", size = 28132305, upload-time = "2025-01-20T11:12:53.936Z" }, { url = "https://files.pythonhosted.org/packages/ff/ec/506902dc6870249fbe2466d9cf66d531265d0f3a1157213c8f986250c033/llvmlite-0.44.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:ace564d9fa44bb91eb6e6d8e7754977783c68e90a471ea7ce913bff30bd62427", size = 26201090, upload-time = "2025-01-20T11:12:59.847Z" }, { url = "https://files.pythonhosted.org/packages/99/fe/d030f1849ebb1f394bb3f7adad5e729b634fb100515594aca25c354ffc62/llvmlite-0.44.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c5d22c3bfc842668168a786af4205ec8e3ad29fb1bc03fd11fd48460d0df64c1", size = 42361858, upload-time = "2025-01-20T11:13:07.623Z" }, @@ -4097,118 +1840,12 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/de/1f/77fa3081e4f66ca3576c896ae5d31c3002ac6607f9747d2e3aa49227e464/markdown-3.10.2-py3-none-any.whl", hash = "sha256:e91464b71ae3ee7afd3017d9f358ef0baf158fd9a298db92f1d4761133824c36", size = 108180, upload-time = "2026-02-09T14:57:25.787Z" }, ] -[[package]] -name = "markdown-it-py" -version = "3.0.0" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", -] -dependencies = [ - { name = "mdurl", marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/38/71/3b932df36c1a044d397a1f92d1cf91ee0a503d91e470cbd670aa66b07ed0/markdown-it-py-3.0.0.tar.gz", hash = "sha256:e3f60a94fa066dc52ec76661e37c851cb232d92f9886b15cb560aaada2df8feb", size = 74596, upload-time = "2023-06-03T06:41:14.443Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/42/d7/1ec15b46af6af88f19b8e5ffea08fa375d433c998b8a7639e76935c14f1f/markdown_it_py-3.0.0-py3-none-any.whl", hash = "sha256:355216845c60bd96232cd8d8c40e8f9765cc86f46880e43a8fd22dc1a1a8cab1", size = 87528, upload-time = "2023-06-03T06:41:11.019Z" }, -] - [[package]] name = "markdown-it-py" version = "4.0.0" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.11.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.10.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.11.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.10.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", -] dependencies = [ - { name = "mdurl", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "mdurl" }, ] sdist = { url = "https://files.pythonhosted.org/packages/5b/f5/4ec618ed16cc4f8fb3b701563655a69816155e79e24a17b651541804721d/markdown_it_py-4.0.0.tar.gz", hash = "sha256:cb0a2b4aa34f932c007117b194e945bd74e0ec24133ceb5bac59009cda1cb9f3", size = 73070, upload-time = "2025-08-11T12:57:52.854Z" } wheels = [ @@ -4221,17 +1858,6 @@ version = "3.0.3" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/7e/99/7690b6d4034fffd95959cbe0c02de8deb3098cc577c67bb6a24fe5d7caa7/markupsafe-3.0.3.tar.gz", hash = "sha256:722695808f4b6457b320fdc131280796bdceb04ab50fe1795cd540799ebe1698", size = 80313, upload-time = "2025-09-27T18:37:40.426Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/e8/4b/3541d44f3937ba468b75da9eebcae497dcf67adb65caa16760b0a6807ebb/markupsafe-3.0.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:2f981d352f04553a7171b8e44369f2af4055f888dfb147d55e42d29e29e74559", size = 11631, upload-time = "2025-09-27T18:36:05.558Z" }, - { url = "https://files.pythonhosted.org/packages/98/1b/fbd8eed11021cabd9226c37342fa6ca4e8a98d8188a8d9b66740494960e4/markupsafe-3.0.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e1c1493fb6e50ab01d20a22826e57520f1284df32f2d8601fdd90b6304601419", size = 12057, upload-time = "2025-09-27T18:36:07.165Z" }, - { url = "https://files.pythonhosted.org/packages/40/01/e560d658dc0bb8ab762670ece35281dec7b6c1b33f5fbc09ebb57a185519/markupsafe-3.0.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1ba88449deb3de88bd40044603fafffb7bc2b055d626a330323a9ed736661695", size = 22050, upload-time = "2025-09-27T18:36:08.005Z" }, - { url = "https://files.pythonhosted.org/packages/af/cd/ce6e848bbf2c32314c9b237839119c5a564a59725b53157c856e90937b7a/markupsafe-3.0.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:f42d0984e947b8adf7dd6dde396e720934d12c506ce84eea8476409563607591", size = 20681, upload-time = "2025-09-27T18:36:08.881Z" }, - { url = "https://files.pythonhosted.org/packages/c9/2a/b5c12c809f1c3045c4d580b035a743d12fcde53cf685dbc44660826308da/markupsafe-3.0.3-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:c0c0b3ade1c0b13b936d7970b1d37a57acde9199dc2aecc4c336773e1d86049c", size = 20705, upload-time = "2025-09-27T18:36:10.131Z" }, - { url = "https://files.pythonhosted.org/packages/cf/e3/9427a68c82728d0a88c50f890d0fc072a1484de2f3ac1ad0bfc1a7214fd5/markupsafe-3.0.3-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:0303439a41979d9e74d18ff5e2dd8c43ed6c6001fd40e5bf2e43f7bd9bbc523f", size = 21524, upload-time = "2025-09-27T18:36:11.324Z" }, - { url = "https://files.pythonhosted.org/packages/bc/36/23578f29e9e582a4d0278e009b38081dbe363c5e7165113fad546918a232/markupsafe-3.0.3-cp310-cp310-musllinux_1_2_riscv64.whl", hash = "sha256:d2ee202e79d8ed691ceebae8e0486bd9a2cd4794cec4824e1c99b6f5009502f6", size = 20282, upload-time = "2025-09-27T18:36:12.573Z" }, - { url = "https://files.pythonhosted.org/packages/56/21/dca11354e756ebd03e036bd8ad58d6d7168c80ce1fe5e75218e4945cbab7/markupsafe-3.0.3-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:177b5253b2834fe3678cb4a5f0059808258584c559193998be2601324fdeafb1", size = 20745, upload-time = "2025-09-27T18:36:13.504Z" }, - { url = "https://files.pythonhosted.org/packages/87/99/faba9369a7ad6e4d10b6a5fbf71fa2a188fe4a593b15f0963b73859a1bbd/markupsafe-3.0.3-cp310-cp310-win32.whl", hash = "sha256:2a15a08b17dd94c53a1da0438822d70ebcd13f8c3a95abe3a9ef9f11a94830aa", size = 14571, upload-time = "2025-09-27T18:36:14.779Z" }, - { url = "https://files.pythonhosted.org/packages/d6/25/55dc3ab959917602c96985cb1253efaa4ff42f71194bddeb61eb7278b8be/markupsafe-3.0.3-cp310-cp310-win_amd64.whl", hash = "sha256:c4ffb7ebf07cfe8931028e3e4c85f0357459a3f9f9490886198848f4fa002ec8", size = 15056, upload-time = "2025-09-27T18:36:16.125Z" }, - { url = "https://files.pythonhosted.org/packages/d0/9e/0a02226640c255d1da0b8d12e24ac2aa6734da68bff14c05dd53b94a0fc3/markupsafe-3.0.3-cp310-cp310-win_arm64.whl", hash = "sha256:e2103a929dfa2fcaf9bb4e7c091983a49c9ac3b19c9061b6d5427dd7d14d81a1", size = 13932, upload-time = "2025-09-27T18:36:17.311Z" }, { url = "https://files.pythonhosted.org/packages/08/db/fefacb2136439fc8dd20e797950e749aa1f4997ed584c62cfb8ef7c2be0e/markupsafe-3.0.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:1cc7ea17a6824959616c525620e387f6dd30fec8cb44f649e31712db02123dad", size = 11631, upload-time = "2025-09-27T18:36:18.185Z" }, { url = "https://files.pythonhosted.org/packages/e1/2e/5898933336b61975ce9dc04decbc0a7f2fee78c30353c5efba7f2d6ff27a/markupsafe-3.0.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:4bd4cd07944443f5a265608cc6aab442e4f74dff8088b0dfc8238647b8f6ae9a", size = 12058, upload-time = "2025-09-27T18:36:19.444Z" }, { url = "https://files.pythonhosted.org/packages/1d/09/adf2df3699d87d1d8184038df46a9c80d78c0148492323f4693df54e17bb/markupsafe-3.0.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6b5420a1d9450023228968e7e6a9ce57f65d148ab56d2313fcd589eee96a7a50", size = 24287, upload-time = "2025-09-27T18:36:20.768Z" }, @@ -4276,210 +1902,34 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/80/d6/2d1b89f6ca4bff1036499b1e29a1d02d282259f3681540e16563f27ebc23/markupsafe-3.0.3-cp313-cp313t-win32.whl", hash = "sha256:69c0b73548bc525c8cb9a251cddf1931d1db4d2258e9599c28c07ef3580ef354", size = 14612, upload-time = "2025-09-27T18:37:02.639Z" }, { url = "https://files.pythonhosted.org/packages/2b/98/e48a4bfba0a0ffcf9925fe2d69240bfaa19c6f7507b8cd09c70684a53c1e/markupsafe-3.0.3-cp313-cp313t-win_amd64.whl", hash = "sha256:1b4b79e8ebf6b55351f0d91fe80f893b4743f104bff22e90697db1590e47a218", size = 15200, upload-time = "2025-09-27T18:37:03.582Z" }, { url = "https://files.pythonhosted.org/packages/0e/72/e3cc540f351f316e9ed0f092757459afbc595824ca724cbc5a5d4263713f/markupsafe-3.0.3-cp313-cp313t-win_arm64.whl", hash = "sha256:ad2cf8aa28b8c020ab2fc8287b0f823d0a7d8630784c31e9ee5edea20f406287", size = 13973, upload-time = "2025-09-27T18:37:04.929Z" }, - { url = "https://files.pythonhosted.org/packages/56/23/0d8c13a44bde9154821586520840643467aee574d8ce79a17da539ee7fed/markupsafe-3.0.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:15d939a21d546304880945ca1ecb8a039db6b4dc49b2c5a400387cdae6a62e26", size = 11623, upload-time = "2025-09-27T18:37:29.296Z" }, - { url = "https://files.pythonhosted.org/packages/fd/23/07a2cb9a8045d5f3f0890a8c3bc0859d7a47bfd9a560b563899bec7b72ed/markupsafe-3.0.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f71a396b3bf33ecaa1626c255855702aca4d3d9fea5e051b41ac59a9c1c41edc", size = 12049, upload-time = "2025-09-27T18:37:30.234Z" }, - { url = "https://files.pythonhosted.org/packages/bc/e4/6be85eb81503f8e11b61c0b6369b6e077dcf0a74adbd9ebf6b349937b4e9/markupsafe-3.0.3-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:0f4b68347f8c5eab4a13419215bdfd7f8c9b19f2b25520968adfad23eb0ce60c", size = 21923, upload-time = "2025-09-27T18:37:31.177Z" }, - { url = "https://files.pythonhosted.org/packages/6f/bc/4dc914ead3fe6ddaef035341fee0fc956949bbd27335b611829292b89ee2/markupsafe-3.0.3-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:e8fc20152abba6b83724d7ff268c249fa196d8259ff481f3b1476383f8f24e42", size = 20543, upload-time = "2025-09-27T18:37:32.168Z" }, - { url = "https://files.pythonhosted.org/packages/89/6e/5fe81fbcfba4aef4093d5f856e5c774ec2057946052d18d168219b7bd9f9/markupsafe-3.0.3-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:949b8d66bc381ee8b007cd945914c721d9aba8e27f71959d750a46f7c282b20b", size = 20585, upload-time = "2025-09-27T18:37:33.166Z" }, - { url = "https://files.pythonhosted.org/packages/f6/f6/e0e5a3d3ae9c4020f696cd055f940ef86b64fe88de26f3a0308b9d3d048c/markupsafe-3.0.3-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:3537e01efc9d4dccdf77221fb1cb3b8e1a38d5428920e0657ce299b20324d758", size = 21387, upload-time = "2025-09-27T18:37:34.185Z" }, - { url = "https://files.pythonhosted.org/packages/c8/25/651753ef4dea08ea790f4fbb65146a9a44a014986996ca40102e237aa49a/markupsafe-3.0.3-cp39-cp39-musllinux_1_2_riscv64.whl", hash = "sha256:591ae9f2a647529ca990bc681daebdd52c8791ff06c2bfa05b65163e28102ef2", size = 20133, upload-time = "2025-09-27T18:37:35.138Z" }, - { url = "https://files.pythonhosted.org/packages/dc/0a/c3cf2b4fef5f0426e8a6d7fce3cb966a17817c568ce59d76b92a233fdbec/markupsafe-3.0.3-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:a320721ab5a1aba0a233739394eb907f8c8da5c98c9181d1161e77a0c8e36f2d", size = 20588, upload-time = "2025-09-27T18:37:36.096Z" }, - { url = "https://files.pythonhosted.org/packages/cd/1b/a7782984844bd519ad4ffdbebbba2671ec5d0ebbeac34736c15fb86399e8/markupsafe-3.0.3-cp39-cp39-win32.whl", hash = "sha256:df2449253ef108a379b8b5d6b43f4b1a8e81a061d6537becd5582fba5f9196d7", size = 14566, upload-time = "2025-09-27T18:37:37.09Z" }, - { url = "https://files.pythonhosted.org/packages/18/1f/8d9c20e1c9440e215a44be5ab64359e207fcb4f675543f1cf9a2a7f648d0/markupsafe-3.0.3-cp39-cp39-win_amd64.whl", hash = "sha256:7c3fb7d25180895632e5d3148dbdc29ea38ccb7fd210aa27acbd1201a1902c6e", size = 15053, upload-time = "2025-09-27T18:37:38.054Z" }, - { url = "https://files.pythonhosted.org/packages/4e/d3/fe08482b5cd995033556d45041a4f4e76e7f0521112a9c9991d40d39825f/markupsafe-3.0.3-cp39-cp39-win_arm64.whl", hash = "sha256:38664109c14ffc9e7437e86b4dceb442b0096dfe3541d7864d9cbe1da4cf36c8", size = 13928, upload-time = "2025-09-27T18:37:39.037Z" }, ] [[package]] name = "marshmallow" version = "4.2.2" source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "backports-datetime-fromisoformat", marker = "python_full_version == '3.10.*' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "typing-extensions", marker = "python_full_version == '3.10.*' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, -] sdist = { url = "https://files.pythonhosted.org/packages/f9/03/261af5efb3d3ce0e2db3fd1e11dc5a96b74a4fb76e488da1c845a8f12345/marshmallow-4.2.2.tar.gz", hash = "sha256:ba40340683a2d1c15103647994ff2f6bc2c8c80da01904cbe5d96ee4baa78d9f", size = 221404, upload-time = "2026-02-04T15:47:03.401Z" } wheels = [ { url = "https://files.pythonhosted.org/packages/aa/70/bb89f807a6a6704bdc4d6f850d5d32954f6c1965e3248e31455defdf2f30/marshmallow-4.2.2-py3-none-any.whl", hash = "sha256:084a9466111b7ec7183ca3a65aed758739af919fedc5ebdab60fb39d6b4dc121", size = 48454, upload-time = "2026-02-04T15:47:02.013Z" }, ] -[[package]] -name = "matplotlib" -version = "3.9.4" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", -] -dependencies = [ - { name = "contourpy", version = "1.3.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "cycler", marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "fonttools", version = "4.60.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "importlib-resources", marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "kiwisolver", version = "1.4.7", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "numpy", marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "packaging", marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "pillow", version = "11.3.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "pyparsing", marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "python-dateutil", marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/df/17/1747b4154034befd0ed33b52538f5eb7752d05bb51c5e2a31470c3bc7d52/matplotlib-3.9.4.tar.gz", hash = "sha256:1e00e8be7393cbdc6fedfa8a6fba02cf3e83814b285db1c60b906a023ba41bc3", size = 36106529, upload-time = "2024-12-13T05:56:34.184Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/7e/94/27d2e2c30d54b56c7b764acc1874a909e34d1965a427fc7092bb6a588b63/matplotlib-3.9.4-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:c5fdd7abfb706dfa8d307af64a87f1a862879ec3cd8d0ec8637458f0885b9c50", size = 7885089, upload-time = "2024-12-13T05:54:24.224Z" }, - { url = "https://files.pythonhosted.org/packages/c6/25/828273307e40a68eb8e9df832b6b2aaad075864fdc1de4b1b81e40b09e48/matplotlib-3.9.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d89bc4e85e40a71d1477780366c27fb7c6494d293e1617788986f74e2a03d7ff", size = 7770600, upload-time = "2024-12-13T05:54:27.214Z" }, - { url = "https://files.pythonhosted.org/packages/f2/65/f841a422ec994da5123368d76b126acf4fc02ea7459b6e37c4891b555b83/matplotlib-3.9.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ddf9f3c26aae695c5daafbf6b94e4c1a30d6cd617ba594bbbded3b33a1fcfa26", size = 8200138, upload-time = "2024-12-13T05:54:29.497Z" }, - { url = "https://files.pythonhosted.org/packages/07/06/272aca07a38804d93b6050813de41ca7ab0e29ba7a9dd098e12037c919a9/matplotlib-3.9.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:18ebcf248030173b59a868fda1fe42397253f6698995b55e81e1f57431d85e50", size = 8312711, upload-time = "2024-12-13T05:54:34.396Z" }, - { url = "https://files.pythonhosted.org/packages/98/37/f13e23b233c526b7e27ad61be0a771894a079e0f7494a10d8d81557e0e9a/matplotlib-3.9.4-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:974896ec43c672ec23f3f8c648981e8bc880ee163146e0312a9b8def2fac66f5", size = 9090622, upload-time = "2024-12-13T05:54:36.808Z" }, - { url = "https://files.pythonhosted.org/packages/4f/8c/b1f5bd2bd70e60f93b1b54c4d5ba7a992312021d0ddddf572f9a1a6d9348/matplotlib-3.9.4-cp310-cp310-win_amd64.whl", hash = "sha256:4598c394ae9711cec135639374e70871fa36b56afae17bdf032a345be552a88d", size = 7828211, upload-time = "2024-12-13T05:54:40.596Z" }, - { url = "https://files.pythonhosted.org/packages/74/4b/65be7959a8fa118a3929b49a842de5b78bb55475236fcf64f3e308ff74a0/matplotlib-3.9.4-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:d4dd29641d9fb8bc4492420c5480398dd40a09afd73aebe4eb9d0071a05fbe0c", size = 7894430, upload-time = "2024-12-13T05:54:44.049Z" }, - { url = "https://files.pythonhosted.org/packages/e9/18/80f70d91896e0a517b4a051c3fd540daa131630fd75e02e250365353b253/matplotlib-3.9.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:30e5b22e8bcfb95442bf7d48b0d7f3bdf4a450cbf68986ea45fca3d11ae9d099", size = 7780045, upload-time = "2024-12-13T05:54:46.414Z" }, - { url = "https://files.pythonhosted.org/packages/a2/73/ccb381026e3238c5c25c3609ba4157b2d1a617ec98d65a8b4ee4e1e74d02/matplotlib-3.9.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2bb0030d1d447fd56dcc23b4c64a26e44e898f0416276cac1ebc25522e0ac249", size = 8209906, upload-time = "2024-12-13T05:54:49.459Z" }, - { url = "https://files.pythonhosted.org/packages/ab/33/1648da77b74741c89f5ea95cbf42a291b4b364f2660b316318811404ed97/matplotlib-3.9.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:aca90ed222ac3565d2752b83dbb27627480d27662671e4d39da72e97f657a423", size = 8322873, upload-time = "2024-12-13T05:54:53.066Z" }, - { url = "https://files.pythonhosted.org/packages/57/d3/8447ba78bc6593c9044c372d1609f8ea10fb1e071e7a9e0747bea74fc16c/matplotlib-3.9.4-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a181b2aa2906c608fcae72f977a4a2d76e385578939891b91c2550c39ecf361e", size = 9099566, upload-time = "2024-12-13T05:54:55.522Z" }, - { url = "https://files.pythonhosted.org/packages/23/e1/4f0e237bf349c02ff9d1b6e7109f1a17f745263809b9714a8576dc17752b/matplotlib-3.9.4-cp311-cp311-win_amd64.whl", hash = "sha256:1f6882828231eca17f501c4dcd98a05abb3f03d157fbc0769c6911fe08b6cfd3", size = 7838065, upload-time = "2024-12-13T05:54:58.337Z" }, - { url = "https://files.pythonhosted.org/packages/1a/2b/c918bf6c19d6445d1cefe3d2e42cb740fb997e14ab19d4daeb6a7ab8a157/matplotlib-3.9.4-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:dfc48d67e6661378a21c2983200a654b72b5c5cdbd5d2cf6e5e1ece860f0cc70", size = 7891131, upload-time = "2024-12-13T05:55:02.837Z" }, - { url = "https://files.pythonhosted.org/packages/c1/e5/b4e8fc601ca302afeeabf45f30e706a445c7979a180e3a978b78b2b681a4/matplotlib-3.9.4-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:47aef0fab8332d02d68e786eba8113ffd6f862182ea2999379dec9e237b7e483", size = 7776365, upload-time = "2024-12-13T05:55:05.158Z" }, - { url = "https://files.pythonhosted.org/packages/99/06/b991886c506506476e5d83625c5970c656a491b9f80161458fed94597808/matplotlib-3.9.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fba1f52c6b7dc764097f52fd9ab627b90db452c9feb653a59945de16752e965f", size = 8200707, upload-time = "2024-12-13T05:55:09.48Z" }, - { url = "https://files.pythonhosted.org/packages/c3/e2/556b627498cb27e61026f2d1ba86a78ad1b836fef0996bef5440e8bc9559/matplotlib-3.9.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:173ac3748acaac21afcc3fa1633924609ba1b87749006bc25051c52c422a5d00", size = 8313761, upload-time = "2024-12-13T05:55:12.95Z" }, - { url = "https://files.pythonhosted.org/packages/58/ff/165af33ec766ff818306ea88e91f9f60d2a6ed543be1eb122a98acbf3b0d/matplotlib-3.9.4-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:320edea0cadc07007765e33f878b13b3738ffa9745c5f707705692df70ffe0e0", size = 9095284, upload-time = "2024-12-13T05:55:16.199Z" }, - { url = "https://files.pythonhosted.org/packages/9f/8b/3d0c7a002db3b1ed702731c2a9a06d78d035f1f2fb0fb936a8e43cc1e9f4/matplotlib-3.9.4-cp312-cp312-win_amd64.whl", hash = "sha256:a4a4cfc82330b27042a7169533da7991e8789d180dd5b3daeaee57d75cd5a03b", size = 7841160, upload-time = "2024-12-13T05:55:19.991Z" }, - { url = "https://files.pythonhosted.org/packages/49/b1/999f89a7556d101b23a2f0b54f1b6e140d73f56804da1398f2f0bc0924bc/matplotlib-3.9.4-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:37eeffeeca3c940985b80f5b9a7b95ea35671e0e7405001f249848d2b62351b6", size = 7891499, upload-time = "2024-12-13T05:55:22.142Z" }, - { url = "https://files.pythonhosted.org/packages/87/7b/06a32b13a684977653396a1bfcd34d4e7539c5d55c8cbfaa8ae04d47e4a9/matplotlib-3.9.4-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:3e7465ac859ee4abcb0d836137cd8414e7bb7ad330d905abced457217d4f0f45", size = 7776802, upload-time = "2024-12-13T05:55:25.947Z" }, - { url = "https://files.pythonhosted.org/packages/65/87/ac498451aff739e515891bbb92e566f3c7ef31891aaa878402a71f9b0910/matplotlib-3.9.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f4c12302c34afa0cf061bea23b331e747e5e554b0fa595c96e01c7b75bc3b858", size = 8200802, upload-time = "2024-12-13T05:55:28.461Z" }, - { url = "https://files.pythonhosted.org/packages/f8/6b/9eb761c00e1cb838f6c92e5f25dcda3f56a87a52f6cb8fdfa561e6cf6a13/matplotlib-3.9.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2b8c97917f21b75e72108b97707ba3d48f171541a74aa2a56df7a40626bafc64", size = 8313880, upload-time = "2024-12-13T05:55:30.965Z" }, - { url = "https://files.pythonhosted.org/packages/d7/a2/c8eaa600e2085eec7e38cbbcc58a30fc78f8224939d31d3152bdafc01fd1/matplotlib-3.9.4-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:0229803bd7e19271b03cb09f27db76c918c467aa4ce2ae168171bc67c3f508df", size = 9094637, upload-time = "2024-12-13T05:55:33.701Z" }, - { url = "https://files.pythonhosted.org/packages/71/1f/c6e1daea55b7bfeb3d84c6cb1abc449f6a02b181e7e2a5e4db34c3afb793/matplotlib-3.9.4-cp313-cp313-win_amd64.whl", hash = "sha256:7c0d8ef442ebf56ff5e206f8083d08252ee738e04f3dc88ea882853a05488799", size = 7841311, upload-time = "2024-12-13T05:55:36.737Z" }, - { url = "https://files.pythonhosted.org/packages/c0/3a/2757d3f7d388b14dd48f5a83bea65b6d69f000e86b8f28f74d86e0d375bd/matplotlib-3.9.4-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:a04c3b00066a688834356d196136349cb32f5e1003c55ac419e91585168b88fb", size = 7919989, upload-time = "2024-12-13T05:55:39.024Z" }, - { url = "https://files.pythonhosted.org/packages/24/28/f5077c79a4f521589a37fe1062d6a6ea3534e068213f7357e7cfffc2e17a/matplotlib-3.9.4-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:04c519587f6c210626741a1e9a68eefc05966ede24205db8982841826af5871a", size = 7809417, upload-time = "2024-12-13T05:55:42.412Z" }, - { url = "https://files.pythonhosted.org/packages/36/c8/c523fd2963156692916a8eb7d4069084cf729359f7955cf09075deddfeaf/matplotlib-3.9.4-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:308afbf1a228b8b525fcd5cec17f246bbbb63b175a3ef6eb7b4d33287ca0cf0c", size = 8226258, upload-time = "2024-12-13T05:55:47.259Z" }, - { url = "https://files.pythonhosted.org/packages/f6/88/499bf4b8fa9349b6f5c0cf4cead0ebe5da9d67769129f1b5651e5ac51fbc/matplotlib-3.9.4-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ddb3b02246ddcffd3ce98e88fed5b238bc5faff10dbbaa42090ea13241d15764", size = 8335849, upload-time = "2024-12-13T05:55:49.763Z" }, - { url = "https://files.pythonhosted.org/packages/b8/9f/20a4156b9726188646a030774ee337d5ff695a965be45ce4dbcb9312c170/matplotlib-3.9.4-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:8a75287e9cb9eee48cb79ec1d806f75b29c0fde978cb7223a1f4c5848d696041", size = 9102152, upload-time = "2024-12-13T05:55:51.997Z" }, - { url = "https://files.pythonhosted.org/packages/10/11/237f9c3a4e8d810b1759b67ff2da7c32c04f9c80aa475e7beb36ed43a8fb/matplotlib-3.9.4-cp313-cp313t-win_amd64.whl", hash = "sha256:488deb7af140f0ba86da003e66e10d55ff915e152c78b4b66d231638400b1965", size = 7896987, upload-time = "2024-12-13T05:55:55.941Z" }, - { url = "https://files.pythonhosted.org/packages/56/eb/501b465c9fef28f158e414ea3a417913dc2ac748564c7ed41535f23445b4/matplotlib-3.9.4-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:3c3724d89a387ddf78ff88d2a30ca78ac2b4c89cf37f2db4bd453c34799e933c", size = 7885919, upload-time = "2024-12-13T05:55:59.66Z" }, - { url = "https://files.pythonhosted.org/packages/da/36/236fbd868b6c91309a5206bd90c3f881f4f44b2d997cd1d6239ef652f878/matplotlib-3.9.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:d5f0a8430ffe23d7e32cfd86445864ccad141797f7d25b7c41759a5b5d17cfd7", size = 7771486, upload-time = "2024-12-13T05:56:04.264Z" }, - { url = "https://files.pythonhosted.org/packages/e0/4b/105caf2d54d5ed11d9f4335398f5103001a03515f2126c936a752ccf1461/matplotlib-3.9.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6bb0141a21aef3b64b633dc4d16cbd5fc538b727e4958be82a0e1c92a234160e", size = 8201838, upload-time = "2024-12-13T05:56:06.792Z" }, - { url = "https://files.pythonhosted.org/packages/5d/a7/bb01188fb4013d34d274caf44a2f8091255b0497438e8b6c0a7c1710c692/matplotlib-3.9.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:57aa235109e9eed52e2c2949db17da185383fa71083c00c6c143a60e07e0888c", size = 8314492, upload-time = "2024-12-13T05:56:09.964Z" }, - { url = "https://files.pythonhosted.org/packages/33/19/02e1a37f7141fc605b193e927d0a9cdf9dc124a20b9e68793f4ffea19695/matplotlib-3.9.4-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:b18c600061477ccfdd1e6fd050c33d8be82431700f3452b297a56d9ed7037abb", size = 9092500, upload-time = "2024-12-13T05:56:13.55Z" }, - { url = "https://files.pythonhosted.org/packages/57/68/c2feb4667adbf882ffa4b3e0ac9967f848980d9f8b5bebd86644aa67ce6a/matplotlib-3.9.4-cp39-cp39-win_amd64.whl", hash = "sha256:ef5f2d1b67d2d2145ff75e10f8c008bfbf71d45137c4b648c87193e7dd053eac", size = 7822962, upload-time = "2024-12-13T05:56:16.358Z" }, - { url = "https://files.pythonhosted.org/packages/0c/22/2ef6a364cd3f565442b0b055e0599744f1e4314ec7326cdaaa48a4d864d7/matplotlib-3.9.4-pp39-pypy39_pp73-macosx_10_15_x86_64.whl", hash = "sha256:44e0ed786d769d85bc787b0606a53f2d8d2d1d3c8a2608237365e9121c1a338c", size = 7877995, upload-time = "2024-12-13T05:56:18.805Z" }, - { url = "https://files.pythonhosted.org/packages/87/b8/2737456e566e9f4d94ae76b8aa0d953d9acb847714f9a7ad80184474f5be/matplotlib-3.9.4-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:09debb9ce941eb23ecdbe7eab972b1c3e0276dcf01688073faff7b0f61d6c6ca", size = 7769300, upload-time = "2024-12-13T05:56:21.315Z" }, - { url = "https://files.pythonhosted.org/packages/b2/1f/e709c6ec7b5321e6568769baa288c7178e60a93a9da9e682b39450da0e29/matplotlib-3.9.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bcc53cf157a657bfd03afab14774d54ba73aa84d42cfe2480c91bd94873952db", size = 8313423, upload-time = "2024-12-13T05:56:26.719Z" }, - { url = "https://files.pythonhosted.org/packages/5e/b6/5a1f868782cd13f053a679984e222007ecff654a9bfbac6b27a65f4eeb05/matplotlib-3.9.4-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:ad45da51be7ad02387801fd154ef74d942f49fe3fcd26a64c94842ba7ec0d865", size = 7854624, upload-time = "2024-12-13T05:56:29.359Z" }, -] - [[package]] name = "matplotlib" version = "3.10.8" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.11.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.10.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.11.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.10.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", -] dependencies = [ - { name = "contourpy", version = "1.3.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version == '3.10.*' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "contourpy", version = "1.3.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "cycler", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "fonttools", version = "4.61.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "kiwisolver", version = "1.4.9", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "numpy", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "packaging", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "pillow", version = "12.1.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "pyparsing", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "python-dateutil", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "contourpy" }, + { name = "cycler" }, + { name = "fonttools" }, + { name = "kiwisolver" }, + { name = "numpy" }, + { name = "packaging" }, + { name = "pillow" }, + { name = "pyparsing" }, + { name = "python-dateutil" }, ] sdist = { url = "https://files.pythonhosted.org/packages/8a/76/d3c6e3a13fe484ebe7718d14e269c9569c4eb0020a968a327acb3b9a8fe6/matplotlib-3.10.8.tar.gz", hash = "sha256:2299372c19d56bcd35cf05a2738308758d32b9eaed2371898d8f5bd33f084aa3", size = 34806269, upload-time = "2025-12-10T22:56:51.155Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/58/be/a30bd917018ad220c400169fba298f2bb7003c8ccbc0c3e24ae2aacad1e8/matplotlib-3.10.8-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:00270d217d6b20d14b584c521f810d60c5c78406dc289859776550df837dcda7", size = 8239828, upload-time = "2025-12-10T22:55:02.313Z" }, - { url = "https://files.pythonhosted.org/packages/58/27/ca01e043c4841078e82cf6e80a6993dfecd315c3d79f5f3153afbb8e1ec6/matplotlib-3.10.8-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:37b3c1cc42aa184b3f738cfa18c1c1d72fd496d85467a6cf7b807936d39aa656", size = 8128050, upload-time = "2025-12-10T22:55:04.997Z" }, - { url = "https://files.pythonhosted.org/packages/cb/aa/7ab67f2b729ae6a91bcf9dcac0affb95fb8c56f7fd2b2af894ae0b0cf6fa/matplotlib-3.10.8-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:ee40c27c795bda6a5292e9cff9890189d32f7e3a0bf04e0e3c9430c4a00c37df", size = 8700452, upload-time = "2025-12-10T22:55:07.47Z" }, - { url = "https://files.pythonhosted.org/packages/73/ae/2d5817b0acee3c49b7e7ccfbf5b273f284957cc8e270adf36375db353190/matplotlib-3.10.8-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:a48f2b74020919552ea25d222d5cc6af9ca3f4eb43a93e14d068457f545c2a17", size = 9534928, upload-time = "2025-12-10T22:55:10.566Z" }, - { url = "https://files.pythonhosted.org/packages/c9/5b/8e66653e9f7c39cb2e5cab25fce4810daffa2bff02cbf5f3077cea9e942c/matplotlib-3.10.8-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:f254d118d14a7f99d616271d6c3c27922c092dac11112670b157798b89bf4933", size = 9586377, upload-time = "2025-12-10T22:55:12.362Z" }, - { url = "https://files.pythonhosted.org/packages/e2/e2/fd0bbadf837f81edb0d208ba8f8cb552874c3b16e27cb91a31977d90875d/matplotlib-3.10.8-cp310-cp310-win_amd64.whl", hash = "sha256:f9b587c9c7274c1613a30afabf65a272114cd6cdbe67b3406f818c79d7ab2e2a", size = 8128127, upload-time = "2025-12-10T22:55:14.436Z" }, { url = "https://files.pythonhosted.org/packages/f8/86/de7e3a1cdcfc941483af70609edc06b83e7c8a0e0dc9ac325200a3f4d220/matplotlib-3.10.8-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:6be43b667360fef5c754dda5d25a32e6307a03c204f3c0fc5468b78fa87b4160", size = 8251215, upload-time = "2025-12-10T22:55:16.175Z" }, { url = "https://files.pythonhosted.org/packages/fd/14/baad3222f424b19ce6ad243c71de1ad9ec6b2e4eb1e458a48fdc6d120401/matplotlib-3.10.8-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:a2b336e2d91a3d7006864e0990c83b216fcdca64b5a6484912902cef87313d78", size = 8139625, upload-time = "2025-12-10T22:55:17.712Z" }, { url = "https://files.pythonhosted.org/packages/8f/a0/7024215e95d456de5883e6732e708d8187d9753a21d32f8ddb3befc0c445/matplotlib-3.10.8-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:efb30e3baaea72ce5928e32bab719ab4770099079d66726a62b11b1ef7273be4", size = 8712614, upload-time = "2025-12-10T22:55:20.8Z" }, @@ -4508,9 +1958,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/c0/3d/8b94a481456dfc9dfe6e39e93b5ab376e50998cddfd23f4ae3b431708f16/matplotlib-3.10.8-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:0a33deb84c15ede243aead39f77e990469fff93ad1521163305095b77b72ce4a", size = 9614000, upload-time = "2025-12-10T22:56:05.411Z" }, { url = "https://files.pythonhosted.org/packages/bd/cd/bc06149fe5585ba800b189a6a654a75f1f127e8aab02fd2be10df7fa500c/matplotlib-3.10.8-cp313-cp313t-win_amd64.whl", hash = "sha256:3a48a78d2786784cc2413e57397981fb45c79e968d99656706018d6e62e57958", size = 8220043, upload-time = "2025-12-10T22:56:07.551Z" }, { url = "https://files.pythonhosted.org/packages/e3/de/b22cf255abec916562cc04eef457c13e58a1990048de0c0c3604d082355e/matplotlib-3.10.8-cp313-cp313t-win_arm64.whl", hash = "sha256:15d30132718972c2c074cd14638c7f4592bd98719e2308bccea40e0538bc0cb5", size = 8062075, upload-time = "2025-12-10T22:56:09.178Z" }, - { url = "https://files.pythonhosted.org/packages/f5/43/31d59500bb950b0d188e149a2e552040528c13d6e3d6e84d0cccac593dcd/matplotlib-3.10.8-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:f97aeb209c3d2511443f8797e3e5a569aebb040d4f8bc79aa3ee78a8fb9e3dd8", size = 8237252, upload-time = "2025-12-10T22:56:39.529Z" }, - { url = "https://files.pythonhosted.org/packages/0c/2c/615c09984f3c5f907f51c886538ad785cf72e0e11a3225de2c0f9442aecc/matplotlib-3.10.8-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:fb061f596dad3a0f52b60dc6a5dec4a0c300dec41e058a7efe09256188d170b7", size = 8124693, upload-time = "2025-12-10T22:56:41.758Z" }, - { url = "https://files.pythonhosted.org/packages/91/e1/2757277a1c56041e1fc104b51a0f7b9a4afc8eb737865d63cababe30bc61/matplotlib-3.10.8-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:12d90df9183093fcd479f4172ac26b322b1248b15729cb57f42f71f24c7e37a3", size = 8702205, upload-time = "2025-12-10T22:56:43.415Z" }, { url = "https://files.pythonhosted.org/packages/04/30/3afaa31c757f34b7725ab9d2ba8b48b5e89c2019c003e7d0ead143aabc5a/matplotlib-3.10.8-pp311-pypy311_pp73-macosx_10_15_x86_64.whl", hash = "sha256:6da7c2ce169267d0d066adcf63758f0604aa6c3eebf67458930f9d9b79ad1db1", size = 8249198, upload-time = "2025-12-10T22:56:45.584Z" }, { url = "https://files.pythonhosted.org/packages/48/2f/6334aec331f57485a642a7c8be03cb286f29111ae71c46c38b363230063c/matplotlib-3.10.8-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:9153c3292705be9f9c64498a8872118540c3f4123d1a1c840172edf262c8be4a", size = 8136817, upload-time = "2025-12-10T22:56:47.339Z" }, { url = "https://files.pythonhosted.org/packages/73/e4/6d6f14b2a759c622f191b2d67e9075a3f56aaccb3be4bb9bb6890030d0a0/matplotlib-3.10.8-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:1ae029229a57cd1e8fe542485f27e7ca7b23aa9e8944ddb4985d0bc444f1eca2", size = 8713867, upload-time = "2025-12-10T22:56:48.954Z" }, @@ -4521,7 +1968,7 @@ name = "matplotlib-inline" version = "0.2.1" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "traitlets", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "traitlets" }, ] sdist = { url = "https://files.pythonhosted.org/packages/c7/74/97e72a36efd4ae2bccb3463284300f8953f199b5ffbc04cbbb0ec78f74b1/matplotlib_inline-0.2.1.tar.gz", hash = "sha256:e1ee949c340d771fc39e241ea75683deb94762c8fa5f2927ec57c83c4dffa9fe", size = 8110, upload-time = "2025-10-23T09:00:22.126Z" } wheels = [ @@ -4542,85 +1989,29 @@ name = "mediapy" version = "1.1.6" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "ipython", version = "8.38.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version == '3.10.*' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "ipython", version = "9.10.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "matplotlib", version = "3.10.8", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "numpy", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "pillow", version = "12.1.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "ipython" }, + { name = "matplotlib" }, + { name = "numpy" }, + { name = "pillow" }, ] sdist = { url = "https://files.pythonhosted.org/packages/9e/b2/451be65c13d2d69b7601eded7ddd3f150884486715a9b3a705ffb08d0177/mediapy-1.1.6.tar.gz", hash = "sha256:9f44b760400964d8bea5121a213f94dc9a225d026d6a819901283a695e585634", size = 25459, upload-time = "2023-02-24T13:08:42.429Z" } wheels = [ { url = "https://files.pythonhosted.org/packages/e3/a0/0d55c59ea8a5f1b13b3eb931e1c0eab9c2a07322cad79cb51a596d2d2a5c/mediapy-1.1.6-py3-none-any.whl", hash = "sha256:c74370808b445666f95272bfdf0eb5707a43b7e05e5527f2dd0830e6892f976f", size = 24955, upload-time = "2023-02-24T13:08:40.53Z" }, ] -[[package]] -name = "mistral-common" -version = "1.8.5" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", -] -dependencies = [ - { name = "jsonschema", version = "4.25.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "numpy", marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "pillow", version = "11.3.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "pydantic", marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "pydantic-extra-types", extra = ["pycountry"], marker = "(python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "requests", marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "tiktoken", marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "typing-extensions", marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/ce/ff/1992a00ccc936f2c6e69ecb1f2cac678e0fd46c53c71bdab99eda4f89dfd/mistral_common-1.8.5.tar.gz", hash = "sha256:9f6204ede9c807f09040a208a9381ae78ef93e2e5a9cd5202dc12e712a025de8", size = 6331923, upload-time = "2025-09-12T06:43:01.937Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/91/4a/54e19c5e75939fd9418c7b806c21d12cf252ea2ba38f122b597272b459dd/mistral_common-1.8.5-py3-none-any.whl", hash = "sha256:f3cf87b61958a00485e603f3fe0530eb509d7e9b2f7178329dcd260e307eced1", size = 6515140, upload-time = "2025-09-12T06:42:59.622Z" }, -] - -[package.optional-dependencies] -audio = [ - { name = "soundfile", marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "soxr", marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, -] - [[package]] name = "mistral-common" version = "1.9.1" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.11.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.10.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", -] dependencies = [ - { name = "jsonschema", version = "4.26.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "numpy", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "pillow", version = "12.1.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "pydantic", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "pydantic-extra-types", extra = ["pycountry"], marker = "(python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "requests", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "tiktoken", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "typing-extensions", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "jsonschema" }, + { name = "numpy" }, + { name = "pillow" }, + { name = "pydantic" }, + { name = "pydantic-extra-types", extra = ["pycountry"], marker = "(extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "requests" }, + { name = "tiktoken" }, + { name = "typing-extensions" }, ] sdist = { url = "https://files.pythonhosted.org/packages/db/ce/685b8127a326478e05501cb4c9ca23d1cd9f37e16c465a1e832c75aea709/mistral_common-1.9.1.tar.gz", hash = "sha256:550583d70a395c3586cfb748ffab53bd1d7c3409507f0efc0118bff30ffb26e9", size = 6338922, upload-time = "2026-02-12T10:53:41.639Z" } wheels = [ @@ -4629,8 +2020,8 @@ wheels = [ [package.optional-dependencies] audio = [ - { name = "soundfile", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "soxr", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "soundfile" }, + { name = "soxr" }, ] [[package]] @@ -4669,14 +2060,6 @@ version = "1.1.2" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/4d/f2/bfb55a6236ed8725a96b0aa3acbd0ec17588e6a2c3b62a93eb513ed8783f/msgpack-1.1.2.tar.gz", hash = "sha256:3b60763c1373dd60f398488069bcdc703cd08a711477b5d480eecc9f9626f47e", size = 173581, upload-time = "2025-10-08T09:15:56.596Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/f5/a2/3b68a9e769db68668b25c6108444a35f9bd163bb848c0650d516761a59c0/msgpack-1.1.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0051fffef5a37ca2cd16978ae4f0aef92f164df86823871b5162812bebecd8e2", size = 81318, upload-time = "2025-10-08T09:14:38.722Z" }, - { url = "https://files.pythonhosted.org/packages/5b/e1/2b720cc341325c00be44e1ed59e7cfeae2678329fbf5aa68f5bda57fe728/msgpack-1.1.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a605409040f2da88676e9c9e5853b3449ba8011973616189ea5ee55ddbc5bc87", size = 83786, upload-time = "2025-10-08T09:14:40.082Z" }, - { url = "https://files.pythonhosted.org/packages/71/e5/c2241de64bfceac456b140737812a2ab310b10538a7b34a1d393b748e095/msgpack-1.1.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:8b696e83c9f1532b4af884045ba7f3aa741a63b2bc22617293a2c6a7c645f251", size = 398240, upload-time = "2025-10-08T09:14:41.151Z" }, - { url = "https://files.pythonhosted.org/packages/b7/09/2a06956383c0fdebaef5aa9246e2356776f12ea6f2a44bd1368abf0e46c4/msgpack-1.1.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:365c0bbe981a27d8932da71af63ef86acc59ed5c01ad929e09a0b88c6294e28a", size = 406070, upload-time = "2025-10-08T09:14:42.821Z" }, - { url = "https://files.pythonhosted.org/packages/0e/74/2957703f0e1ef20637d6aead4fbb314330c26f39aa046b348c7edcf6ca6b/msgpack-1.1.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:41d1a5d875680166d3ac5c38573896453bbbea7092936d2e107214daf43b1d4f", size = 393403, upload-time = "2025-10-08T09:14:44.38Z" }, - { url = "https://files.pythonhosted.org/packages/a5/09/3bfc12aa90f77b37322fc33e7a8a7c29ba7c8edeadfa27664451801b9860/msgpack-1.1.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:354e81bcdebaab427c3df4281187edc765d5d76bfb3a7c125af9da7a27e8458f", size = 398947, upload-time = "2025-10-08T09:14:45.56Z" }, - { url = "https://files.pythonhosted.org/packages/4b/4f/05fcebd3b4977cb3d840f7ef6b77c51f8582086de5e642f3fefee35c86fc/msgpack-1.1.2-cp310-cp310-win32.whl", hash = "sha256:e64c8d2f5e5d5fda7b842f55dec6133260ea8f53c4257d64494c534f306bf7a9", size = 64769, upload-time = "2025-10-08T09:14:47.334Z" }, - { url = "https://files.pythonhosted.org/packages/d0/3e/b4547e3a34210956382eed1c85935fff7e0f9b98be3106b3745d7dec9c5e/msgpack-1.1.2-cp310-cp310-win_amd64.whl", hash = "sha256:db6192777d943bdaaafb6ba66d44bf65aa0e9c5616fa1d2da9bb08828c6b39aa", size = 71293, upload-time = "2025-10-08T09:14:48.665Z" }, { url = "https://files.pythonhosted.org/packages/2c/97/560d11202bcd537abca693fd85d81cebe2107ba17301de42b01ac1677b69/msgpack-1.1.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:2e86a607e558d22985d856948c12a3fa7b42efad264dca8a3ebbcfa2735d786c", size = 82271, upload-time = "2025-10-08T09:14:49.967Z" }, { url = "https://files.pythonhosted.org/packages/83/04/28a41024ccbd67467380b6fb440ae916c1e4f25e2cd4c63abe6835ac566e/msgpack-1.1.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:283ae72fc89da59aa004ba147e8fc2f766647b1251500182fac0350d8af299c0", size = 84914, upload-time = "2025-10-08T09:14:50.958Z" }, { url = "https://files.pythonhosted.org/packages/71/46/b817349db6886d79e57a966346cf0902a426375aadc1e8e7a86a75e22f19/msgpack-1.1.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:61c8aa3bd513d87c72ed0b37b53dd5c5a0f58f2ff9f26e1555d3bd7948fb7296", size = 416962, upload-time = "2025-10-08T09:14:51.997Z" }, @@ -4704,43 +2087,14 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/67/32/f3cd1667028424fa7001d82e10ee35386eea1408b93d399b09fb0aa7875f/msgpack-1.1.2-cp313-cp313-win32.whl", hash = "sha256:a7787d353595c7c7e145e2331abf8b7ff1e6673a6b974ded96e6d4ec09f00c8c", size = 65037, upload-time = "2025-10-08T09:15:21.416Z" }, { url = "https://files.pythonhosted.org/packages/74/07/1ed8277f8653c40ebc65985180b007879f6a836c525b3885dcc6448ae6cb/msgpack-1.1.2-cp313-cp313-win_amd64.whl", hash = "sha256:a465f0dceb8e13a487e54c07d04ae3ba131c7c5b95e2612596eafde1dccf64a9", size = 72631, upload-time = "2025-10-08T09:15:22.431Z" }, { url = "https://files.pythonhosted.org/packages/e5/db/0314e4e2db56ebcf450f277904ffd84a7988b9e5da8d0d61ab2d057df2b6/msgpack-1.1.2-cp313-cp313-win_arm64.whl", hash = "sha256:e69b39f8c0aa5ec24b57737ebee40be647035158f14ed4b40e6f150077e21a84", size = 64118, upload-time = "2025-10-08T09:15:23.402Z" }, - { url = "https://files.pythonhosted.org/packages/46/73/85469b4aa71d25e5949fee50d3c2cf46f69cea619fe97cfe309058080f75/msgpack-1.1.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:ea5405c46e690122a76531ab97a079e184c0daf491e588592d6a23d3e32af99e", size = 81529, upload-time = "2025-10-08T09:15:46.069Z" }, - { url = "https://files.pythonhosted.org/packages/6c/3a/7d4077e8ae720b29d2b299a9591969f0d105146960681ea6f4121e6d0f8d/msgpack-1.1.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:9fba231af7a933400238cb357ecccf8ab5d51535ea95d94fc35b7806218ff844", size = 84106, upload-time = "2025-10-08T09:15:47.064Z" }, - { url = "https://files.pythonhosted.org/packages/df/c0/da451c74746ed9388dca1b4ec647c82945f4e2f8ce242c25fb7c0e12181f/msgpack-1.1.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:a8f6e7d30253714751aa0b0c84ae28948e852ee7fb0524082e6716769124bc23", size = 396656, upload-time = "2025-10-08T09:15:48.118Z" }, - { url = "https://files.pythonhosted.org/packages/e5/a1/20486c29a31ec9f0f88377fdf7eb7a67f30bcb5e0f89b7550f6f16d9373b/msgpack-1.1.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:94fd7dc7d8cb0a54432f296f2246bc39474e017204ca6f4ff345941d4ed285a7", size = 404722, upload-time = "2025-10-08T09:15:49.328Z" }, - { url = "https://files.pythonhosted.org/packages/ad/ae/e613b0a526d54ce85447d9665c2ff8c3210a784378d50573321d43d324b8/msgpack-1.1.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:350ad5353a467d9e3b126d8d1b90fe05ad081e2e1cef5753f8c345217c37e7b8", size = 391838, upload-time = "2025-10-08T09:15:50.517Z" }, - { url = "https://files.pythonhosted.org/packages/49/6a/07f3e10ed4503045b882ef7bf8512d01d8a9e25056950a977bd5f50df1c2/msgpack-1.1.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:6bde749afe671dc44893f8d08e83bf475a1a14570d67c4bb5cec5573463c8833", size = 397516, upload-time = "2025-10-08T09:15:51.646Z" }, - { url = "https://files.pythonhosted.org/packages/76/9b/a86828e75986c12a3809c1e5062f5eba8e0cae3dfa2bf724ed2b1bb72b4c/msgpack-1.1.2-cp39-cp39-win32.whl", hash = "sha256:ad09b984828d6b7bb52d1d1d0c9be68ad781fa004ca39216c8a1e63c0f34ba3c", size = 64863, upload-time = "2025-10-08T09:15:53.118Z" }, - { url = "https://files.pythonhosted.org/packages/14/a7/b1992b4fb3da3b413f5fb78a63bad42f256c3be2352eb69273c3789c2c96/msgpack-1.1.2-cp39-cp39-win_amd64.whl", hash = "sha256:67016ae8c8965124fdede9d3769528ad8284f14d635337ffa6a713a580f6c030", size = 71540, upload-time = "2025-10-08T09:15:55.573Z" }, ] [[package]] name = "multidict" version = "6.7.1" source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "typing-extensions", marker = "python_full_version < '3.11' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, -] sdist = { url = "https://files.pythonhosted.org/packages/1a/c2/c2d94cbe6ac1753f3fc980da97b3d930efe1da3af3c9f5125354436c073d/multidict-6.7.1.tar.gz", hash = "sha256:ec6652a1bee61c53a3e5776b6049172c53b6aaba34f18c9ad04f82712bac623d", size = 102010, upload-time = "2026-01-26T02:46:45.979Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/84/0b/19348d4c98980c4851d2f943f8ebafdece2ae7ef737adcfa5994ce8e5f10/multidict-6.7.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:c93c3db7ea657dd4637d57e74ab73de31bccefe144d3d4ce370052035bc85fb5", size = 77176, upload-time = "2026-01-26T02:42:59.784Z" }, - { url = "https://files.pythonhosted.org/packages/ef/04/9de3f8077852e3d438215c81e9b691244532d2e05b4270e89ce67b7d103c/multidict-6.7.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:974e72a2474600827abaeda71af0c53d9ebbc3c2eb7da37b37d7829ae31232d8", size = 44996, upload-time = "2026-01-26T02:43:01.674Z" }, - { url = "https://files.pythonhosted.org/packages/31/5c/08c7f7fe311f32e83f7621cd3f99d805f45519cd06fafb247628b861da7d/multidict-6.7.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:cdea2e7b2456cfb6694fb113066fd0ec7ea4d67e3a35e1f4cbeea0b448bf5872", size = 44631, upload-time = "2026-01-26T02:43:03.169Z" }, - { url = "https://files.pythonhosted.org/packages/b7/7f/0e3b1390ae772f27501199996b94b52ceeb64fe6f9120a32c6c3f6b781be/multidict-6.7.1-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:17207077e29342fdc2c9a82e4b306f1127bf1ea91f8b71e02d4798a70bb99991", size = 242561, upload-time = "2026-01-26T02:43:04.733Z" }, - { url = "https://files.pythonhosted.org/packages/dd/f4/8719f4f167586af317b69dd3e90f913416c91ca610cac79a45c53f590312/multidict-6.7.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:d4f49cb5661344764e4c7c7973e92a47a59b8fc19b6523649ec9dc4960e58a03", size = 242223, upload-time = "2026-01-26T02:43:06.695Z" }, - { url = "https://files.pythonhosted.org/packages/47/ab/7c36164cce64a6ad19c6d9a85377b7178ecf3b89f8fd589c73381a5eedfd/multidict-6.7.1-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:a9fc4caa29e2e6ae408d1c450ac8bf19892c5fca83ee634ecd88a53332c59981", size = 222322, upload-time = "2026-01-26T02:43:08.472Z" }, - { url = "https://files.pythonhosted.org/packages/f5/79/a25add6fb38035b5337bc5734f296d9afc99163403bbcf56d4170f97eb62/multidict-6.7.1-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:c5f0c21549ab432b57dcc82130f388d84ad8179824cc3f223d5e7cfbfd4143f6", size = 254005, upload-time = "2026-01-26T02:43:10.127Z" }, - { url = "https://files.pythonhosted.org/packages/4a/7b/64a87cf98e12f756fc8bd444b001232ffff2be37288f018ad0d3f0aae931/multidict-6.7.1-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:7dfb78d966b2c906ae1d28ccf6e6712a3cd04407ee5088cd276fe8cb42186190", size = 251173, upload-time = "2026-01-26T02:43:11.731Z" }, - { url = "https://files.pythonhosted.org/packages/4b/ac/b605473de2bb404e742f2cc3583d12aedb2352a70e49ae8fce455b50c5aa/multidict-6.7.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:9b0d9b91d1aa44db9c1f1ecd0d9d2ae610b2f4f856448664e01a3b35899f3f92", size = 243273, upload-time = "2026-01-26T02:43:13.063Z" }, - { url = "https://files.pythonhosted.org/packages/03/65/11492d6a0e259783720f3bc1d9ea55579a76f1407e31ed44045c99542004/multidict-6.7.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:dd96c01a9dcd4889dcfcf9eb5544ca0c77603f239e3ffab0524ec17aea9a93ee", size = 238956, upload-time = "2026-01-26T02:43:14.843Z" }, - { url = "https://files.pythonhosted.org/packages/5f/a7/7ee591302af64e7c196fb63fe856c788993c1372df765102bd0448e7e165/multidict-6.7.1-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:067343c68cd6612d375710f895337b3a98a033c94f14b9a99eff902f205424e2", size = 233477, upload-time = "2026-01-26T02:43:16.025Z" }, - { url = "https://files.pythonhosted.org/packages/9c/99/c109962d58756c35fd9992fed7f2355303846ea2ff054bb5f5e9d6b888de/multidict-6.7.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:5884a04f4ff56c6120f6ccf703bdeb8b5079d808ba604d4d53aec0d55dc33568", size = 243615, upload-time = "2026-01-26T02:43:17.84Z" }, - { url = "https://files.pythonhosted.org/packages/d5/5f/1973e7c771c86e93dcfe1c9cc55a5481b610f6614acfc28c0d326fe6bfad/multidict-6.7.1-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:8affcf1c98b82bc901702eb73b6947a1bfa170823c153fe8a47b5f5f02e48e40", size = 249930, upload-time = "2026-01-26T02:43:19.06Z" }, - { url = "https://files.pythonhosted.org/packages/5d/a5/f170fc2268c3243853580203378cd522446b2df632061e0a5409817854c7/multidict-6.7.1-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:0d17522c37d03e85c8098ec8431636309b2682cf12e58f4dbc76121fb50e4962", size = 243807, upload-time = "2026-01-26T02:43:20.286Z" }, - { url = "https://files.pythonhosted.org/packages/de/01/73856fab6d125e5bc652c3986b90e8699a95e84b48d72f39ade6c0e74a8c/multidict-6.7.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:24c0cf81544ca5e17cfcb6e482e7a82cd475925242b308b890c9452a074d4505", size = 239103, upload-time = "2026-01-26T02:43:21.508Z" }, - { url = "https://files.pythonhosted.org/packages/e7/46/f1220bd9944d8aa40d8ccff100eeeee19b505b857b6f603d6078cb5315b0/multidict-6.7.1-cp310-cp310-win32.whl", hash = "sha256:d82dd730a95e6643802f4454b8fdecdf08667881a9c5670db85bc5a56693f122", size = 41416, upload-time = "2026-01-26T02:43:22.703Z" }, - { url = "https://files.pythonhosted.org/packages/68/00/9b38e272a770303692fc406c36e1a4c740f401522d5787691eb38a8925a8/multidict-6.7.1-cp310-cp310-win_amd64.whl", hash = "sha256:cf37cbe5ced48d417ba045aca1b21bafca67489452debcde94778a576666a1df", size = 46022, upload-time = "2026-01-26T02:43:23.77Z" }, - { url = "https://files.pythonhosted.org/packages/64/65/d8d42490c02ee07b6bbe00f7190d70bb4738b3cce7629aaf9f213ef730dd/multidict-6.7.1-cp310-cp310-win_arm64.whl", hash = "sha256:59bc83d3f66b41dac1e7460aac1d196edc70c9ba3094965c467715a70ecb46db", size = 43238, upload-time = "2026-01-26T02:43:24.882Z" }, { url = "https://files.pythonhosted.org/packages/ce/f1/a90635c4f88fb913fbf4ce660b83b7445b7a02615bda034b2f8eb38fd597/multidict-6.7.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:7ff981b266af91d7b4b3793ca3382e53229088d193a85dfad6f5f4c27fc73e5d", size = 76626, upload-time = "2026-01-26T02:43:26.485Z" }, { url = "https://files.pythonhosted.org/packages/a6/9b/267e64eaf6fc637a15b35f5de31a566634a2740f97d8d094a69d34f524a4/multidict-6.7.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:844c5bca0b5444adb44a623fb0a1310c2f4cd41f402126bb269cd44c9b3f3e1e", size = 44706, upload-time = "2026-01-26T02:43:27.607Z" }, { url = "https://files.pythonhosted.org/packages/dd/a4/d45caf2b97b035c57267791ecfaafbd59c68212004b3842830954bb4b02e/multidict-6.7.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f2a0a924d4c2e9afcd7ec64f9de35fcd96915149b2216e1cb2c10a56df483855", size = 44356, upload-time = "2026-01-26T02:43:28.661Z" }, @@ -4813,24 +2167,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/dc/1d/b31650eab6c5778aceed46ba735bd97f7c7d2f54b319fa916c0f96e7805b/multidict-6.7.1-cp313-cp313t-win32.whl", hash = "sha256:df9f19c28adcb40b6aae30bbaa1478c389efd50c28d541d76760199fc1037c32", size = 47770, upload-time = "2026-01-26T02:45:06.754Z" }, { url = "https://files.pythonhosted.org/packages/ac/5b/2d2d1d522e51285bd61b1e20df8f47ae1a9d80839db0b24ea783b3832832/multidict-6.7.1-cp313-cp313t-win_amd64.whl", hash = "sha256:d54ecf9f301853f2c5e802da559604b3e95bb7a3b01a9c295c6ee591b9882de8", size = 53109, upload-time = "2026-01-26T02:45:08.044Z" }, { url = "https://files.pythonhosted.org/packages/3d/a3/cc409ba012c83ca024a308516703cf339bdc4b696195644a7215a5164a24/multidict-6.7.1-cp313-cp313t-win_arm64.whl", hash = "sha256:5a37ca18e360377cfda1d62f5f382ff41f2b8c4ccb329ed974cc2e1643440118", size = 45573, upload-time = "2026-01-26T02:45:09.349Z" }, - { url = "https://files.pythonhosted.org/packages/9e/ee/74525ebe3eb5fddcd6735fc03cbea3feeed4122b53bc798ac32d297ac9ae/multidict-6.7.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:65573858d27cdeaca41893185677dc82395159aa28875a8867af66532d413a8f", size = 77107, upload-time = "2026-01-26T02:46:12.608Z" }, - { url = "https://files.pythonhosted.org/packages/f0/9a/ce8744e777a74b3050b1bf56be3eed1053b3457302ea055f1ea437200a23/multidict-6.7.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:c524c6fb8fc342793708ab111c4dbc90ff9abd568de220432500e47e990c0358", size = 44943, upload-time = "2026-01-26T02:46:14.016Z" }, - { url = "https://files.pythonhosted.org/packages/83/9c/1d2a283d9c6f31e260cb6c2fccadc3edcf6c4c14ee0929cd2af4d2606dd7/multidict-6.7.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:aa23b001d968faef416ff70dc0f1ab045517b9b42a90edd3e9bcdb06479e31d5", size = 44603, upload-time = "2026-01-26T02:46:15.391Z" }, - { url = "https://files.pythonhosted.org/packages/87/9d/3b186201671583d8e8d6d79c07481a5aafd0ba7575e3d8566baec80c1e82/multidict-6.7.1-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:6704fa2b7453b2fb121740555fa1ee20cd98c4d011120caf4d2b8d4e7c76eec0", size = 240573, upload-time = "2026-01-26T02:46:16.783Z" }, - { url = "https://files.pythonhosted.org/packages/42/7d/a52f5d4d0754311d1ac78478e34dff88de71259a8585e05ee14e5f877caf/multidict-6.7.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:121a34e5bfa410cdf2c8c49716de160de3b1dbcd86b49656f5681e4543bcd1a8", size = 240106, upload-time = "2026-01-26T02:46:18.432Z" }, - { url = "https://files.pythonhosted.org/packages/84/9f/d80118e6c30ff55b7d171bdc5520aad4b9626e657520b8d7c8ca8c2fad12/multidict-6.7.1-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:026d264228bcd637d4e060844e39cdc60f86c479e463d49075dedc21b18fbbe0", size = 219418, upload-time = "2026-01-26T02:46:20.526Z" }, - { url = "https://files.pythonhosted.org/packages/c7/bd/896e60b3457f194de77c7de64f9acce9f75da0518a5230ce1df534f6747b/multidict-6.7.1-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:0e697826df7eb63418ee190fd06ce9f1803593bb4b9517d08c60d9b9a7f69d8f", size = 252124, upload-time = "2026-01-26T02:46:22.157Z" }, - { url = "https://files.pythonhosted.org/packages/f4/de/ba6b30447c36a37078d0ba604aa12c1a52887af0c355236ca6e0a9d5286f/multidict-6.7.1-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:bb08271280173720e9fea9ede98e5231defcbad90f1624bea26f32ec8a956e2f", size = 249402, upload-time = "2026-01-26T02:46:23.718Z" }, - { url = "https://files.pythonhosted.org/packages/c2/b2/50a383c96230e432895a2fd3bcfe1b65785899598259d871d5de6b93180c/multidict-6.7.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:c6b3228e1d80af737b72925ce5fb4daf5a335e49cd7ab77ed7b9fdfbf58c526e", size = 240346, upload-time = "2026-01-26T02:46:25.393Z" }, - { url = "https://files.pythonhosted.org/packages/89/37/16d391fd8da544b1489306e38a46785fa41dd0f0ef766837ed7d4676dde0/multidict-6.7.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:3943debf0fbb57bdde5901695c11094a9a36723e5c03875f87718ee15ca2f4d2", size = 237010, upload-time = "2026-01-26T02:46:27.408Z" }, - { url = "https://files.pythonhosted.org/packages/b0/24/3152ee026eda86d5d3e3685182911e6951af7a016579da931080ce6ac9ad/multidict-6.7.1-cp39-cp39-musllinux_1_2_armv7l.whl", hash = "sha256:98c5787b0a0d9a41d9311eae44c3b76e6753def8d8870ab501320efe75a6a5f8", size = 232018, upload-time = "2026-01-26T02:46:29.941Z" }, - { url = "https://files.pythonhosted.org/packages/9c/1f/48d3c27a72be7fd23a55d8847193c459959bf35a5bb5844530dab00b739b/multidict-6.7.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:08ccb2a6dc72009093ebe7f3f073e5ec5964cba9a706fa94b1a1484039b87941", size = 241498, upload-time = "2026-01-26T02:46:32.052Z" }, - { url = "https://files.pythonhosted.org/packages/1a/45/413643ae2952d0decdf6c1250f86d08a43e143271441e81027e38d598bd7/multidict-6.7.1-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:eb351f72c26dc9abe338ca7294661aa22969ad8ffe7ef7d5541d19f368dc854a", size = 247957, upload-time = "2026-01-26T02:46:33.666Z" }, - { url = "https://files.pythonhosted.org/packages/50/f8/f1d0ac23df15e0470776388bdb261506f63af1f81d28bacb5e262d6e12b6/multidict-6.7.1-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:ac1c665bad8b5d762f5f85ebe4d94130c26965f11de70c708c75671297c776de", size = 241651, upload-time = "2026-01-26T02:46:35.7Z" }, - { url = "https://files.pythonhosted.org/packages/2c/c9/1a2a18f383cf129add66b6c36b75c3911a7ba95cf26cb141482de085cc12/multidict-6.7.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1fa6609d0364f4f6f58351b4659a1f3e0e898ba2a8c5cac04cb2c7bc556b0bc5", size = 236371, upload-time = "2026-01-26T02:46:37.37Z" }, - { url = "https://files.pythonhosted.org/packages/bb/aa/77d87e3fca31325b87e0eb72d5fe9a7472dcb51391a42df7ac1f3842f6c0/multidict-6.7.1-cp39-cp39-win32.whl", hash = "sha256:6f77ce314a29263e67adadc7e7c1bc699fcb3a305059ab973d038f87caa42ed0", size = 41426, upload-time = "2026-01-26T02:46:39.026Z" }, - { url = "https://files.pythonhosted.org/packages/e3/b3/e8863e6a2da15a9d7e98976ff402e871b7352c76566df6c18d0378e0d9cf/multidict-6.7.1-cp39-cp39-win_amd64.whl", hash = "sha256:f537b55778cd3cbee430abe3131255d3a78202e0f9ea7ffc6ada893a4bcaeea4", size = 46180, upload-time = "2026-01-26T02:46:40.422Z" }, - { url = "https://files.pythonhosted.org/packages/93/d3/dd4fa951ad5b5fa216bf30054d705683d13405eea7459833d78f31b74c9c/multidict-6.7.1-cp39-cp39-win_arm64.whl", hash = "sha256:749aa54f578f2e5f439538706a475aa844bfa8ef75854b1401e6e528e4937cf9", size = 43231, upload-time = "2026-01-26T02:46:41.945Z" }, { url = "https://files.pythonhosted.org/packages/81/08/7036c080d7117f28a4af526d794aab6a84463126db031b007717c1a6676e/multidict-6.7.1-py3-none-any.whl", hash = "sha256:55d97cc6dae627efa6a6e548885712d4864b81110ac76fa4e534c03819fa4a56", size = 12319, upload-time = "2026-01-26T02:46:44.004Z" }, ] @@ -4839,19 +2175,13 @@ name = "multiprocess" version = "0.70.18" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "dill", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "dill" }, ] sdist = { url = "https://files.pythonhosted.org/packages/72/fd/2ae3826f5be24c6ed87266bc4e59c46ea5b059a103f3d7e7eb76a52aeecb/multiprocess-0.70.18.tar.gz", hash = "sha256:f9597128e6b3e67b23956da07cf3d2e5cba79e2f4e0fba8d7903636663ec6d0d", size = 1798503, upload-time = "2025-04-17T03:11:27.742Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/c8/f8/7f9a8f08bf98cea1dfaa181e05cc8bbcb59cecf044b5a9ac3cce39f9c449/multiprocess-0.70.18-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:25d4012dcaaf66b9e8e955f58482b42910c2ee526d532844d8bcf661bbc604df", size = 135083, upload-time = "2025-04-17T03:11:04.223Z" }, - { url = "https://files.pythonhosted.org/packages/e5/03/b7b10dbfc17b2b3ce07d4d30b3ba8367d0ed32d6d46cd166e298f161dd46/multiprocess-0.70.18-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:06b19433de0d02afe5869aec8931dd5c01d99074664f806c73896b0d9e527213", size = 135128, upload-time = "2025-04-17T03:11:06.045Z" }, - { url = "https://files.pythonhosted.org/packages/c1/a3/5f8d3b9690ea5580bee5868ab7d7e2cfca74b7e826b28192b40aa3881cdc/multiprocess-0.70.18-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:6fa1366f994373aaf2d4738b0f56e707caeaa05486e97a7f71ee0853823180c2", size = 135132, upload-time = "2025-04-17T03:11:07.533Z" }, { url = "https://files.pythonhosted.org/packages/55/4d/9af0d1279c84618bcd35bf5fd7e371657358c7b0a523e54a9cffb87461f8/multiprocess-0.70.18-pp311-pypy311_pp73-macosx_10_15_x86_64.whl", hash = "sha256:8b8940ae30139e04b076da6c5b83e9398585ebdf0f2ad3250673fef5b2ff06d6", size = 144695, upload-time = "2025-04-17T03:11:09.161Z" }, { url = "https://files.pythonhosted.org/packages/17/bf/87323e79dd0562474fad3373c21c66bc6c3c9963b68eb2a209deb4c8575e/multiprocess-0.70.18-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:0929ba95831adb938edbd5fb801ac45e705ecad9d100b3e653946b7716cb6bd3", size = 144742, upload-time = "2025-04-17T03:11:10.072Z" }, { url = "https://files.pythonhosted.org/packages/dd/74/cb8c831e58dc6d5cf450b17c7db87f14294a1df52eb391da948b5e0a0b94/multiprocess-0.70.18-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:4d77f8e4bfe6c6e2e661925bbf9aed4d5ade9a1c6502d5dfc10129b9d1141797", size = 144745, upload-time = "2025-04-17T03:11:11.453Z" }, - { url = "https://files.pythonhosted.org/packages/12/89/733ebfc487a4381590d863222f3f0c8bac105d032102d7a96d6566823d67/multiprocess-0.70.18-pp39-pypy39_pp73-macosx_10_13_arm64.whl", hash = "sha256:9fd8d662f7524a95a1be7cbea271f0b33089fe792baabec17d93103d368907da", size = 133534, upload-time = "2025-04-17T03:11:17.045Z" }, - { url = "https://files.pythonhosted.org/packages/41/65/d74a7955593c2c56c79d01ef07be5aa103342441673657dc7387855703de/multiprocess-0.70.18-pp39-pypy39_pp73-macosx_10_13_x86_64.whl", hash = "sha256:3fbba48bfcd932747c33f0b152b26207c4e0840c35cab359afaff7a8672b1031", size = 133533, upload-time = "2025-04-17T03:11:18.378Z" }, - { url = "https://files.pythonhosted.org/packages/7d/5a/6f3ebcbc1508aa651cbe8deeca612b7915b97303410c93e9a4d83ba07e03/multiprocess-0.70.18-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:5f9be0342e597dde86152c10442c5fb6c07994b1c29de441b7a3a08b0e6be2a0", size = 133537, upload-time = "2025-04-17T03:11:19.29Z" }, { url = "https://files.pythonhosted.org/packages/ba/d8/0cba6cf51a1a31f20471fbc823a716170c73012ddc4fb85d706630ed6e8f/multiprocess-0.70.18-py310-none-any.whl", hash = "sha256:60c194974c31784019c1f459d984e8f33ee48f10fcf42c309ba97b30d9bd53ea", size = 134948, upload-time = "2025-04-17T03:11:20.223Z" }, { url = "https://files.pythonhosted.org/packages/4b/88/9039f2fed1012ef584751d4ceff9ab4a51e5ae264898f0b7cbf44340a859/multiprocess-0.70.18-py311-none-any.whl", hash = "sha256:5aa6eef98e691281b3ad923be2832bf1c55dd2c859acd73e5ec53a66aae06a1d", size = 144462, upload-time = "2025-04-17T03:11:21.657Z" }, { url = "https://files.pythonhosted.org/packages/bf/b6/5f922792be93b82ec6b5f270bbb1ef031fd0622847070bbcf9da816502cc/multiprocess-0.70.18-py312-none-any.whl", hash = "sha256:9b78f8e5024b573730bfb654783a13800c2c0f2dfc0c25e70b40d184d64adaa2", size = 150287, upload-time = "2025-04-17T03:11:22.69Z" }, @@ -4865,28 +2195,27 @@ name = "nemo-toolkit" version = "2.6.2" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "cuda-bindings", marker = "(python_full_version >= '3.10' and sys_platform != 'darwin') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "fsspec", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "huggingface-hub", version = "0.36.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "numba", version = "0.61.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.10' and sys_platform == 'darwin') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "numba-cuda", marker = "(python_full_version >= '3.10' and sys_platform != 'darwin') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "numexpr", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "numpy", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "onnx", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "protobuf", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "python-dateutil", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "ruamel-yaml", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "scikit-learn", version = "1.7.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version == '3.10.*' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "scikit-learn", version = "1.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "setuptools", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "tensorboard", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "text-unidecode", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "torch", version = "2.10.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.10.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(python_full_version >= '3.10' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.10.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(python_full_version >= '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "tqdm", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "wget", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "wrapt", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "cuda-bindings", marker = "sys_platform != 'darwin' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "fsspec" }, + { name = "huggingface-hub", version = "0.36.2", source = { registry = "https://pypi.org/simple" } }, + { name = "numba", marker = "sys_platform == 'darwin' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "numba-cuda", marker = "sys_platform != 'darwin' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "numexpr" }, + { name = "numpy" }, + { name = "onnx" }, + { name = "protobuf" }, + { name = "python-dateutil" }, + { name = "ruamel-yaml" }, + { name = "scikit-learn" }, + { name = "setuptools" }, + { name = "tensorboard" }, + { name = "text-unidecode" }, + { name = "torch", version = "2.10.0", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "torch", version = "2.10.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.10.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "tqdm" }, + { name = "wget" }, + { name = "wrapt" }, ] sdist = { url = "https://files.pythonhosted.org/packages/81/fe/0f1af5aa909db55d3d1676f4138fd46b9e69dd4f970d8b9cd12e5fcff94e/nemo_toolkit-2.6.2.tar.gz", hash = "sha256:84c4bf68f6988a4c0556f51a18a00d59c0fd893a58315beaf549341b497b4fd3", size = 3989536, upload-time = "2026-02-06T16:39:47.895Z" } wheels = [ @@ -4895,167 +2224,52 @@ wheels = [ [package.optional-dependencies] asr = [ - { name = "braceexpand", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "cloudpickle", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "datasets", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "editdistance", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "einops", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "fiddle", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "hydra-core", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "inflect", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "jiwer", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "kaldi-python-io", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "kaldialign", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "lhotse", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "librosa", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "lightning", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "marshmallow", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "mediapy", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "nv-one-logger-core", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "nv-one-logger-pytorch-lightning-integration", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "nv-one-logger-training-telemetry", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "omegaconf", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "optuna", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "packaging", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "pandas", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "peft", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "pyannote-core", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "pyannote-metrics", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "pydub", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "pyloudnorm", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "resampy", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "ruamel-yaml", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "sacremoses", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "scipy", version = "1.15.3", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version == '3.10.*' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "scipy", version = "1.17.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "sentencepiece", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "soundfile", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "sox", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "torchmetrics", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "transformers", version = "4.53.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "wandb", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "webdataset", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "whisper-normalizer", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, -] - -[[package]] -name = "networkx" -version = "3.2.1" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", -] -sdist = { url = "https://files.pythonhosted.org/packages/c4/80/a84676339aaae2f1cfdf9f418701dd634aef9cc76f708ef55c36ff39c3ca/networkx-3.2.1.tar.gz", hash = "sha256:9f1bb5cf3409bf324e0a722c20bdb4c20ee39bf1c30ce8ae499c8502b0b5e0c6", size = 2073928, upload-time = "2023-10-28T08:41:39.364Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/d5/f0/8fbc882ca80cf077f1b246c0e3c3465f7f415439bdea6b899f6b19f61f70/networkx-3.2.1-py3-none-any.whl", hash = "sha256:f18c69adc97877c42332c170849c96cefa91881c99a7cb3e95b7c659ebdc1ec2", size = 1647772, upload-time = "2023-10-28T08:41:36.945Z" }, -] - -[[package]] -name = "networkx" -version = "3.4.2" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.10.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.10.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", -] -sdist = { url = "https://files.pythonhosted.org/packages/fd/1d/06475e1cd5264c0b870ea2cc6fdb3e37177c1e565c43f56ff17a10e3937f/networkx-3.4.2.tar.gz", hash = "sha256:307c3669428c5362aab27c8a1260aa8f47c4e91d3891f48be0141738d8d053e1", size = 2151368, upload-time = "2024-10-21T12:39:38.695Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/b9/54/dd730b32ea14ea797530a4479b2ed46a6fb250f682a9cfb997e968bf0261/networkx-3.4.2-py3-none-any.whl", hash = "sha256:df5d4365b724cf81b8c6a7312509d0c22386097011ad1abe274afd5e9d3bbc5f", size = 1723263, upload-time = "2024-10-21T12:39:36.247Z" }, + { name = "braceexpand" }, + { name = "cloudpickle" }, + { name = "datasets" }, + { name = "editdistance" }, + { name = "einops" }, + { name = "fiddle" }, + { name = "hydra-core" }, + { name = "inflect" }, + { name = "jiwer" }, + { name = "kaldi-python-io" }, + { name = "kaldialign" }, + { name = "lhotse" }, + { name = "librosa" }, + { name = "lightning" }, + { name = "marshmallow" }, + { name = "mediapy" }, + { name = "nv-one-logger-core" }, + { name = "nv-one-logger-pytorch-lightning-integration" }, + { name = "nv-one-logger-training-telemetry" }, + { name = "omegaconf" }, + { name = "optuna" }, + { name = "packaging" }, + { name = "pandas" }, + { name = "peft" }, + { name = "pyannote-core" }, + { name = "pyannote-metrics" }, + { name = "pydub" }, + { name = "pyloudnorm" }, + { name = "resampy" }, + { name = "ruamel-yaml" }, + { name = "sacremoses" }, + { name = "scipy" }, + { name = "sentencepiece" }, + { name = "soundfile" }, + { name = "sox" }, + { name = "torchmetrics" }, + { name = "transformers", version = "4.53.3", source = { registry = "https://pypi.org/simple" } }, + { name = "wandb" }, + { name = "webdataset" }, + { name = "whisper-normalizer" }, ] [[package]] name = "networkx" version = "3.6.1" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.11.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.11.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", -] sdist = { url = "https://files.pythonhosted.org/packages/6a/51/63fe664f3908c97be9d2e4f1158eb633317598cfa6e1fc14af5383f17512/networkx-3.6.1.tar.gz", hash = "sha256:26b7c357accc0c8cde558ad486283728b65b6a95d85ee1cd66bafab4c8168509", size = 2517025, upload-time = "2025-12-08T17:02:39.908Z" } wheels = [ { url = "https://files.pythonhosted.org/packages/9e/c9/b2622292ea83fbb4ec318f5b9ab867d0a28ab43c5717bb85b0a5f6b3b0a4/networkx-3.6.1-py3-none-any.whl", hash = "sha256:d47fbf302e7d9cbbb9e2555a0d267983d2aa476bac30e90dfbe5669bd57f3762", size = 2068504, upload-time = "2025-12-08T17:02:38.159Z" }, @@ -5066,161 +2280,27 @@ name = "nllw" version = "0.1.5" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and sys_platform == 'darwin') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.8.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(python_full_version < '3.10' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.8.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.10.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version >= '3.10' and sys_platform == 'darwin') or (python_full_version >= '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.10.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(python_full_version >= '3.10' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.10.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(python_full_version >= '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "transformers", version = "4.53.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "transformers", version = "5.2.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.10.0", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or sys_platform == 'darwin' or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.10.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.10.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "transformers", version = "4.53.3", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "transformers", version = "5.2.0", source = { registry = "https://pypi.org/simple" }, marker = "extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/47/84/cd9e2c8ed1ac942911f8ab9378fd875bd85a62af81025cb56b9b4435314b/nllw-0.1.5.tar.gz", hash = "sha256:67f9c13fff6b43c2e05b2e762e7001471329dbdb34634b56a2cab639807b1b9a", size = 1520002, upload-time = "2026-02-20T10:03:13.966Z" } wheels = [ { url = "https://files.pythonhosted.org/packages/7a/80/ee07aafbf180aa6f332bcfa91f4e8b7ee55386ea63d5a80142e3d4fde8a5/nllw-0.1.5-py3-none-any.whl", hash = "sha256:6761c8767b27e12cf4c2506f9e5d5eafb78d08d281fe26d287c8413c87c42119", size = 15073, upload-time = "2026-02-20T10:03:09.018Z" }, ] -[[package]] -name = "numba" -version = "0.60.0" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", -] -dependencies = [ - { name = "llvmlite", version = "0.43.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "numpy", marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/3c/93/2849300a9184775ba274aba6f82f303343669b0592b7bb0849ea713dabb0/numba-0.60.0.tar.gz", hash = "sha256:5df6158e5584eece5fc83294b949fd30b9f1125df7708862205217e068aabf16", size = 2702171, upload-time = "2024-06-13T18:11:19.869Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/f7/cf/baa13a7e3556d73d9e38021e6d6aa4aeb30d8b94545aa8b70d0f24a1ccc4/numba-0.60.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:5d761de835cd38fb400d2c26bb103a2726f548dc30368853121d66201672e651", size = 2647627, upload-time = "2024-06-13T18:10:29.857Z" }, - { url = "https://files.pythonhosted.org/packages/ac/ba/4b57fa498564457c3cc9fc9e570a6b08e6086c74220f24baaf04e54b995f/numba-0.60.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:159e618ef213fba758837f9837fb402bbe65326e60ba0633dbe6c7f274d42c1b", size = 2650322, upload-time = "2024-06-13T18:10:32.849Z" }, - { url = "https://files.pythonhosted.org/packages/28/98/7ea97ee75870a54f938a8c70f7e0be4495ba5349c5f9db09d467c4a5d5b7/numba-0.60.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:1527dc578b95c7c4ff248792ec33d097ba6bef9eda466c948b68dfc995c25781", size = 3407390, upload-time = "2024-06-13T18:10:34.741Z" }, - { url = "https://files.pythonhosted.org/packages/79/58/cb4ac5b8f7ec64200460aef1fed88258fb872ceef504ab1f989d2ff0f684/numba-0.60.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:fe0b28abb8d70f8160798f4de9d486143200f34458d34c4a214114e445d7124e", size = 3699694, upload-time = "2024-06-13T18:10:37.295Z" }, - { url = "https://files.pythonhosted.org/packages/1c/b0/c61a93ca947d12233ff45de506ddbf52af3f752066a0b8be4d27426e16da/numba-0.60.0-cp310-cp310-win_amd64.whl", hash = "sha256:19407ced081d7e2e4b8d8c36aa57b7452e0283871c296e12d798852bc7d7f198", size = 2687030, upload-time = "2024-06-13T18:10:39.47Z" }, - { url = "https://files.pythonhosted.org/packages/98/ad/df18d492a8f00d29a30db307904b9b296e37507034eedb523876f3a2e13e/numba-0.60.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:a17b70fc9e380ee29c42717e8cc0bfaa5556c416d94f9aa96ba13acb41bdece8", size = 2647254, upload-time = "2024-06-13T18:10:41.69Z" }, - { url = "https://files.pythonhosted.org/packages/9a/51/a4dc2c01ce7a850b8e56ff6d5381d047a5daea83d12bad08aa071d34b2ee/numba-0.60.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:3fb02b344a2a80efa6f677aa5c40cd5dd452e1b35f8d1c2af0dfd9ada9978e4b", size = 2649970, upload-time = "2024-06-13T18:10:44.682Z" }, - { url = "https://files.pythonhosted.org/packages/f9/4c/8889ac94c0b33dca80bed11564b8c6d9ea14d7f094e674c58e5c5b05859b/numba-0.60.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:5f4fde652ea604ea3c86508a3fb31556a6157b2c76c8b51b1d45eb40c8598703", size = 3412492, upload-time = "2024-06-13T18:10:47.1Z" }, - { url = "https://files.pythonhosted.org/packages/57/03/2b4245b05b71c0cee667e6a0b51606dfa7f4157c9093d71c6b208385a611/numba-0.60.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:4142d7ac0210cc86432b818338a2bc368dc773a2f5cf1e32ff7c5b378bd63ee8", size = 3705018, upload-time = "2024-06-13T18:10:49.539Z" }, - { url = "https://files.pythonhosted.org/packages/79/89/2d924ca60dbf949f18a6fec223a2445f5f428d9a5f97a6b29c2122319015/numba-0.60.0-cp311-cp311-win_amd64.whl", hash = "sha256:cac02c041e9b5bc8cf8f2034ff6f0dbafccd1ae9590dc146b3a02a45e53af4e2", size = 2686920, upload-time = "2024-06-13T18:10:51.937Z" }, - { url = "https://files.pythonhosted.org/packages/eb/5c/b5ec752c475e78a6c3676b67c514220dbde2725896bbb0b6ec6ea54b2738/numba-0.60.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:d7da4098db31182fc5ffe4bc42c6f24cd7d1cb8a14b59fd755bfee32e34b8404", size = 2647866, upload-time = "2024-06-13T18:10:54.453Z" }, - { url = "https://files.pythonhosted.org/packages/65/42/39559664b2e7c15689a638c2a38b3b74c6e69a04e2b3019b9f7742479188/numba-0.60.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:38d6ea4c1f56417076ecf8fc327c831ae793282e0ff51080c5094cb726507b1c", size = 2650208, upload-time = "2024-06-13T18:10:56.779Z" }, - { url = "https://files.pythonhosted.org/packages/67/88/c4459ccc05674ef02119abf2888ccd3e2fed12a323f52255f4982fc95876/numba-0.60.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:62908d29fb6a3229c242e981ca27e32a6e606cc253fc9e8faeb0e48760de241e", size = 3466946, upload-time = "2024-06-13T18:10:58.961Z" }, - { url = "https://files.pythonhosted.org/packages/8b/41/ac11cf33524def12aa5bd698226ae196a1185831c05ed29dc0c56eaa308b/numba-0.60.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:0ebaa91538e996f708f1ab30ef4d3ddc344b64b5227b67a57aa74f401bb68b9d", size = 3761463, upload-time = "2024-06-13T18:11:01.657Z" }, - { url = "https://files.pythonhosted.org/packages/ca/bd/0fe29fcd1b6a8de479a4ed25c6e56470e467e3611c079d55869ceef2b6d1/numba-0.60.0-cp312-cp312-win_amd64.whl", hash = "sha256:f75262e8fe7fa96db1dca93d53a194a38c46da28b112b8a4aca168f0df860347", size = 2707588, upload-time = "2024-06-13T18:11:04.261Z" }, - { url = "https://files.pythonhosted.org/packages/68/1a/87c53f836cdf557083248c3f47212271f220280ff766538795e77c8c6bbf/numba-0.60.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:01ef4cd7d83abe087d644eaa3d95831b777aa21d441a23703d649e06b8e06b74", size = 2647186, upload-time = "2024-06-13T18:11:06.753Z" }, - { url = "https://files.pythonhosted.org/packages/28/14/a5baa1f2edea7b49afa4dc1bb1b126645198cf1075186853b5b497be826e/numba-0.60.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:819a3dfd4630d95fd574036f99e47212a1af41cbcb019bf8afac63ff56834449", size = 2650038, upload-time = "2024-06-13T18:11:10.869Z" }, - { url = "https://files.pythonhosted.org/packages/3b/bd/f1985719ff34e37e07bb18f9d3acd17e5a21da255f550c8eae031e2ddf5f/numba-0.60.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:0b983bd6ad82fe868493012487f34eae8bf7dd94654951404114f23c3466d34b", size = 3403010, upload-time = "2024-06-13T18:11:13.057Z" }, - { url = "https://files.pythonhosted.org/packages/54/9b/cd73d3f6617ddc8398a63ef97d8dc9139a9879b9ca8a7ca4b8789056ea46/numba-0.60.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:c151748cd269ddeab66334bd754817ffc0cabd9433acb0f551697e5151917d25", size = 3695086, upload-time = "2024-06-13T18:11:15.497Z" }, - { url = "https://files.pythonhosted.org/packages/01/01/8b7b670c77c5ea0e47e283d82332969bf672ab6410d0b2610cac5b7a3ded/numba-0.60.0-cp39-cp39-win_amd64.whl", hash = "sha256:3031547a015710140e8c87226b4cfe927cac199835e5bf7d4fe5cb64e814e3ab", size = 2686978, upload-time = "2024-06-13T18:11:17.765Z" }, -] - [[package]] name = "numba" version = "0.61.0" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.11.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.10.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.11.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.10.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", -] dependencies = [ - { name = "llvmlite", version = "0.44.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "numpy", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "llvmlite" }, + { name = "numpy" }, ] sdist = { url = "https://files.pythonhosted.org/packages/3c/88/c13a935f200fda51384411e49840a8e7f70c9cb1ee8d809dd0f2477cf7ef/numba-0.61.0.tar.gz", hash = "sha256:888d2e89b8160899e19591467e8fdd4970e07606e1fbc248f239c89818d5f925", size = 2816484, upload-time = "2025-01-20T11:32:37.75Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/77/97/8568a025b9ab8b4d53491e70d4206d5f3fc71fbe94f3097058e01ad8e7ff/numba-0.61.0-cp310-cp310-macosx_10_14_x86_64.whl", hash = "sha256:9cab9783a700fa428b1a54d65295122bc03b3de1d01fb819a6b9dbbddfdb8c43", size = 2769008, upload-time = "2025-01-20T11:16:58.104Z" }, - { url = "https://files.pythonhosted.org/packages/8c/ab/a88c20755f66543ee01c85c98b866595b92e1bd0ed80565a4889e22929a8/numba-0.61.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:46c5ae094fb3706f5adf9021bfb7fc11e44818d61afee695cdee4eadfed45e98", size = 2771815, upload-time = "2025-01-20T11:17:00.99Z" }, - { url = "https://files.pythonhosted.org/packages/ae/f4/b357913089ecec1a9ddc6adc04090396928f36a484a5ab9e71b24ddba4cd/numba-0.61.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:6fb74e81aa78a2303e30593d8331327dfc0d2522b5db05ac967556a26db3ef87", size = 3820233, upload-time = "2025-01-20T11:31:58.198Z" }, - { url = "https://files.pythonhosted.org/packages/ea/60/0e21bcf3baaf10e39d48cd224618e46a6b75d3394f465c37ce57bf98cbfa/numba-0.61.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:0ebbd4827091384ab8c4615ba1b3ca8bc639a3a000157d9c37ba85d34cd0da1b", size = 3514707, upload-time = "2025-01-20T11:32:00.529Z" }, - { url = "https://files.pythonhosted.org/packages/a0/08/45c136ab59e6b11e61ce15a0d17ef03fd89eaccb0db05ad67912aaf5218a/numba-0.61.0-cp310-cp310-win_amd64.whl", hash = "sha256:43aa4d7d10c542d3c78106b8481e0cbaaec788c39ee8e3d7901682748ffdf0b4", size = 2827753, upload-time = "2025-01-20T11:32:02.421Z" }, { url = "https://files.pythonhosted.org/packages/63/8f/f983a7c859ccad73d3cc3f86fbba94f16e137cd1ee464631d61b624363b2/numba-0.61.0-cp311-cp311-macosx_10_14_x86_64.whl", hash = "sha256:bf64c2d0f3d161af603de3825172fb83c2600bcb1d53ae8ea568d4c53ba6ac08", size = 2768960, upload-time = "2025-01-20T11:32:04.519Z" }, { url = "https://files.pythonhosted.org/packages/be/1b/c33dc847d475d5b647b4ad5aefc38df7a72283763f4cda47745050375a81/numba-0.61.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:de5aa7904741425f28e1028b85850b31f0a245e9eb4f7c38507fb893283a066c", size = 2771862, upload-time = "2025-01-20T11:32:06.764Z" }, { url = "https://files.pythonhosted.org/packages/14/91/18b9f64b34ff318a14d072251480547f89ebfb864b2b7168e5dc5f64f502/numba-0.61.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:21c2fe25019267a608e2710a6a947f557486b4b0478b02e45a81cf606a05a7d4", size = 3825411, upload-time = "2025-01-20T11:32:08.627Z" }, @@ -5243,7 +2323,7 @@ name = "numba-cuda" version = "0.15.1" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "numba", version = "0.61.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.10' and sys_platform != 'darwin') or (python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "numba", marker = "sys_platform != 'darwin' or extra != 'extra-14-whisperlivekit-cpu' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/56/d7/f8dd134b7896b30d69e5b29af27264b1143458d43e088f210abc16cba91e/numba_cuda-0.15.1.tar.gz", hash = "sha256:219771179a396ba2a6911648b908609c1373d2055373d5fb8294f0a1947c4690", size = 491996, upload-time = "2025-06-14T21:34:24.931Z" } wheels = [ @@ -5255,18 +2335,10 @@ name = "numexpr" version = "2.13.1" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "numpy", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "numpy" }, ] sdist = { url = "https://files.pythonhosted.org/packages/8d/ca/c1217ae2c15c3284a9e219c269624f80fa1582622eb0400c711a26f84a43/numexpr-2.13.1.tar.gz", hash = "sha256:ecb722249c2d6ed7fefe8504bb17e056481a5f31233c23a7ee02085c3d661fa1", size = 119296, upload-time = "2025-09-30T18:36:33.551Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/35/40/ec43ef49857b10111801e85b103f178d3d4473fa42ad3719fa059f55a257/numexpr-2.13.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:bdbc2b93ac59667f0ba725b24cd3b5559c300e91e179d09c74ebaf8c8961eef6", size = 162934, upload-time = "2025-09-30T18:35:08.451Z" }, - { url = "https://files.pythonhosted.org/packages/4b/c4/cc0af2756065f1f97acf2237f6809ce72c0abfd31cc59e54e6f11a4fb1cb/numexpr-2.13.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ad6b5dfc191c766e3ec89d2e3f956f7ef3181a1f8bf2bb00ec48fb3bf97b44ac", size = 151820, upload-time = "2025-09-30T18:35:10.273Z" }, - { url = "https://files.pythonhosted.org/packages/25/36/59a71bd2cbd11ab8220474bd11a98cf4b4d65e90050ef68588e1caa40bb7/numexpr-2.13.1-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:a12dbd4c07a8303c6f01cdade531d75c9b4f5b8f72cbe5821d8f9197ee6fba47", size = 449129, upload-time = "2025-09-30T18:35:11.594Z" }, - { url = "https://files.pythonhosted.org/packages/38/a6/f8ffb8519a20f3e58ad87a82a7ea31fbcd970dbac7d3c9531b5af4ece65a/numexpr-2.13.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:2de5c8ca2f25690d48e475d53a3524876164227cf4044743818f5704c28a8639", size = 439777, upload-time = "2025-09-30T18:35:13.085Z" }, - { url = "https://files.pythonhosted.org/packages/0a/eb/290e3a871190e07d5de0ec1342cf38d2453b4b235f93a903b7d6bb969a7f/numexpr-2.13.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:533ec2d77fc059e3868e9798ef2f13ab57161517cd2e0c521bb33d1dc99068ca", size = 1413818, upload-time = "2025-09-30T18:35:15.148Z" }, - { url = "https://files.pythonhosted.org/packages/ae/68/922980751260b62e451f5b21adaa63581ec2d7c06ef2ed9e356b8529fea8/numexpr-2.13.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:a75ddffc36f6b7a679fbc7df492685aed7e8888aec80ec2cd8e30f21fc019caa", size = 1462677, upload-time = "2025-09-30T18:35:17.367Z" }, - { url = "https://files.pythonhosted.org/packages/1a/26/d111add556589fa8e37863fa89fac5ea914904982540eaf24adcf02994ae/numexpr-2.13.1-cp310-cp310-win32.whl", hash = "sha256:790af35095626ad2d02201c56ac2d49ae45fc95a02af85f40808752ed32ee103", size = 166606, upload-time = "2025-09-30T18:35:19.305Z" }, - { url = "https://files.pythonhosted.org/packages/71/f5/f27ba83d134ce76708dec714e253665560e9e083425b6ff3d1d536b872e3/numexpr-2.13.1-cp310-cp310-win_amd64.whl", hash = "sha256:aadf3118b6ef87294277ffb77a9562970228341aaaa4b78de634a43ea8ea2c6e", size = 159891, upload-time = "2025-09-30T18:35:20.59Z" }, { url = "https://files.pythonhosted.org/packages/60/aa/734ccb5b2d62ddb8c903adf1be8bf668df7fd31f886f8a274203a8317a43/numexpr-2.13.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:bdf62745e072c670151c0705bddfe3f33c341dacb7eb255ddb1e8d2a257bfef5", size = 162936, upload-time = "2025-09-30T18:35:22.227Z" }, { url = "https://files.pythonhosted.org/packages/4b/bc/bc081354c99d896b5986bb6683bc7f36e221e1464d9b8a5d9c5ad7a29c13/numexpr-2.13.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:91cf0521d8fed3f804640c4a6d22b5d9813d7e64b32c38215de163c7f092f7cc", size = 151819, upload-time = "2025-09-30T18:35:23.612Z" }, { url = "https://files.pythonhosted.org/packages/bf/6d/c3a1c3c113a5cf72b431a9f4433511eb35f2063836ed1020f21781ca77aa/numexpr-2.13.1-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:58e2f111756fff63e27e495473d950e4c98bbebca55aa1572798b59110d6c84b", size = 450816, upload-time = "2025-09-30T18:35:24.887Z" }, @@ -5307,14 +2379,6 @@ version = "1.26.4" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/65/6e/09db70a523a96d25e115e71cc56a6f9031e7b8cd166c1ac8438307c14058/numpy-1.26.4.tar.gz", hash = "sha256:2a02aba9ed12e4ac4eb3ea9421c420301a0c6460d9830d74a9df87efa4912010", size = 15786129, upload-time = "2024-02-06T00:26:44.495Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/a7/94/ace0fdea5241a27d13543ee117cbc65868e82213fb31a8eb7fe9ff23f313/numpy-1.26.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:9ff0f4f29c51e2803569d7a51c2304de5554655a60c5d776e35b4a41413830d0", size = 20631468, upload-time = "2024-02-05T23:48:01.194Z" }, - { url = "https://files.pythonhosted.org/packages/20/f7/b24208eba89f9d1b58c1668bc6c8c4fd472b20c45573cb767f59d49fb0f6/numpy-1.26.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2e4ee3380d6de9c9ec04745830fd9e2eccb3e6cf790d39d7b98ffd19b0dd754a", size = 13966411, upload-time = "2024-02-05T23:48:29.038Z" }, - { url = "https://files.pythonhosted.org/packages/fc/a5/4beee6488160798683eed5bdb7eead455892c3b4e1f78d79d8d3f3b084ac/numpy-1.26.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d209d8969599b27ad20994c8e41936ee0964e6da07478d6c35016bc386b66ad4", size = 14219016, upload-time = "2024-02-05T23:48:54.098Z" }, - { url = "https://files.pythonhosted.org/packages/4b/d7/ecf66c1cd12dc28b4040b15ab4d17b773b87fa9d29ca16125de01adb36cd/numpy-1.26.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ffa75af20b44f8dba823498024771d5ac50620e6915abac414251bd971b4529f", size = 18240889, upload-time = "2024-02-05T23:49:25.361Z" }, - { url = "https://files.pythonhosted.org/packages/24/03/6f229fe3187546435c4f6f89f6d26c129d4f5bed40552899fcf1f0bf9e50/numpy-1.26.4-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:62b8e4b1e28009ef2846b4c7852046736bab361f7aeadeb6a5b89ebec3c7055a", size = 13876746, upload-time = "2024-02-05T23:49:51.983Z" }, - { url = "https://files.pythonhosted.org/packages/39/fe/39ada9b094f01f5a35486577c848fe274e374bbf8d8f472e1423a0bbd26d/numpy-1.26.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:a4abb4f9001ad2858e7ac189089c42178fcce737e4169dc61321660f1a96c7d2", size = 18078620, upload-time = "2024-02-05T23:50:22.515Z" }, - { url = "https://files.pythonhosted.org/packages/d5/ef/6ad11d51197aad206a9ad2286dc1aac6a378059e06e8cf22cd08ed4f20dc/numpy-1.26.4-cp310-cp310-win32.whl", hash = "sha256:bfe25acf8b437eb2a8b2d49d443800a5f18508cd811fea3181723922a8a82b07", size = 5972659, upload-time = "2024-02-05T23:50:35.834Z" }, - { url = "https://files.pythonhosted.org/packages/19/77/538f202862b9183f54108557bfda67e17603fc560c384559e769321c9d92/numpy-1.26.4-cp310-cp310-win_amd64.whl", hash = "sha256:b97fe8060236edf3662adfc2c633f56a08ae30560c56310562cb4f95500022d5", size = 15808905, upload-time = "2024-02-05T23:51:03.701Z" }, { url = "https://files.pythonhosted.org/packages/11/57/baae43d14fe163fa0e4c47f307b6b2511ab8d7d30177c491960504252053/numpy-1.26.4-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:4c66707fabe114439db9068ee468c26bbdf909cac0fb58686a42a24de1760c71", size = 20630554, upload-time = "2024-02-05T23:51:50.149Z" }, { url = "https://files.pythonhosted.org/packages/1a/2e/151484f49fd03944c4a3ad9c418ed193cfd02724e138ac8a9505d056c582/numpy-1.26.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:edd8b5fe47dab091176d21bb6de568acdd906d1887a4584a15a9a96a1dca06ef", size = 13997127, upload-time = "2024-02-05T23:52:15.314Z" }, { url = "https://files.pythonhosted.org/packages/79/ae/7e5b85136806f9dadf4878bf73cf223fe5c2636818ba3ab1c585d0403164/numpy-1.26.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7ab55401287bfec946ced39700c053796e7cc0e3acbef09993a9ad2adba6ca6e", size = 14222994, upload-time = "2024-02-05T23:52:47.569Z" }, @@ -5331,17 +2395,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/76/8c/2ba3902e1a0fc1c74962ea9bb33a534bb05984ad7ff9515bf8d07527cadd/numpy-1.26.4-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:1dda2e7b4ec9dd512f84935c5f126c8bd8b9f2fc001e9f54af255e8c5f16b0e0", size = 17786643, upload-time = "2024-02-05T23:57:56.585Z" }, { url = "https://files.pythonhosted.org/packages/28/4a/46d9e65106879492374999e76eb85f87b15328e06bd1550668f79f7b18c6/numpy-1.26.4-cp312-cp312-win32.whl", hash = "sha256:50193e430acfc1346175fcbdaa28ffec49947a06918b7b92130744e81e640110", size = 5677803, upload-time = "2024-02-05T23:58:08.963Z" }, { url = "https://files.pythonhosted.org/packages/16/2e/86f24451c2d530c88daf997cb8d6ac622c1d40d19f5a031ed68a4b73a374/numpy-1.26.4-cp312-cp312-win_amd64.whl", hash = "sha256:08beddf13648eb95f8d867350f6a018a4be2e5ad54c8d8caed89ebca558b2818", size = 15517754, upload-time = "2024-02-05T23:58:36.364Z" }, - { url = "https://files.pythonhosted.org/packages/7d/24/ce71dc08f06534269f66e73c04f5709ee024a1afe92a7b6e1d73f158e1f8/numpy-1.26.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:7349ab0fa0c429c82442a27a9673fc802ffdb7c7775fad780226cb234965e53c", size = 20636301, upload-time = "2024-02-05T23:59:10.976Z" }, - { url = "https://files.pythonhosted.org/packages/ae/8c/ab03a7c25741f9ebc92684a20125fbc9fc1b8e1e700beb9197d750fdff88/numpy-1.26.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:52b8b60467cd7dd1e9ed082188b4e6bb35aa5cdd01777621a1658910745b90be", size = 13971216, upload-time = "2024-02-05T23:59:35.472Z" }, - { url = "https://files.pythonhosted.org/packages/6d/64/c3bcdf822269421d85fe0d64ba972003f9bb4aa9a419da64b86856c9961f/numpy-1.26.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d5241e0a80d808d70546c697135da2c613f30e28251ff8307eb72ba696945764", size = 14226281, upload-time = "2024-02-05T23:59:59.372Z" }, - { url = "https://files.pythonhosted.org/packages/54/30/c2a907b9443cf42b90c17ad10c1e8fa801975f01cb9764f3f8eb8aea638b/numpy-1.26.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f870204a840a60da0b12273ef34f7051e98c3b5961b61b0c2c1be6dfd64fbcd3", size = 18249516, upload-time = "2024-02-06T00:00:32.79Z" }, - { url = "https://files.pythonhosted.org/packages/43/12/01a563fc44c07095996d0129b8899daf89e4742146f7044cdbdb3101c57f/numpy-1.26.4-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:679b0076f67ecc0138fd2ede3a8fd196dddc2ad3254069bcb9faf9a79b1cebcd", size = 13882132, upload-time = "2024-02-06T00:00:58.197Z" }, - { url = "https://files.pythonhosted.org/packages/16/ee/9df80b06680aaa23fc6c31211387e0db349e0e36d6a63ba3bd78c5acdf11/numpy-1.26.4-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:47711010ad8555514b434df65f7d7b076bb8261df1ca9bb78f53d3b2db02e95c", size = 18084181, upload-time = "2024-02-06T00:01:31.21Z" }, - { url = "https://files.pythonhosted.org/packages/28/7d/4b92e2fe20b214ffca36107f1a3e75ef4c488430e64de2d9af5db3a4637d/numpy-1.26.4-cp39-cp39-win32.whl", hash = "sha256:a354325ee03388678242a4d7ebcd08b5c727033fcff3b2f536aea978e15ee9e6", size = 5976360, upload-time = "2024-02-06T00:01:43.013Z" }, - { url = "https://files.pythonhosted.org/packages/b5/42/054082bd8220bbf6f297f982f0a8f5479fcbc55c8b511d928df07b965869/numpy-1.26.4-cp39-cp39-win_amd64.whl", hash = "sha256:3373d5d70a5fe74a2c1bb6d2cfd9609ecf686d47a2d7b1d37a8f3b6bf6003aea", size = 15814633, upload-time = "2024-02-06T00:02:16.694Z" }, - { url = "https://files.pythonhosted.org/packages/3f/72/3df6c1c06fc83d9cfe381cccb4be2532bbd38bf93fbc9fad087b6687f1c0/numpy-1.26.4-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:afedb719a9dcfc7eaf2287b839d8198e06dcd4cb5d276a3df279231138e83d30", size = 20455961, upload-time = "2024-02-06T00:03:05.993Z" }, - { url = "https://files.pythonhosted.org/packages/8e/02/570545bac308b58ffb21adda0f4e220ba716fb658a63c151daecc3293350/numpy-1.26.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:95a7476c59002f2f6c590b9b7b998306fba6a5aa646b1e22ddfeaf8f78c3a29c", size = 18061071, upload-time = "2024-02-06T00:03:41.5Z" }, - { url = "https://files.pythonhosted.org/packages/f4/5f/fafd8c51235f60d49f7a88e2275e13971e90555b67da52dd6416caec32fe/numpy-1.26.4-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:7e50d0a0cc3189f9cb0aeb3a6a6af18c16f59f004b866cd2be1c14b36134a4a0", size = 15709730, upload-time = "2024-02-06T00:04:11.719Z" }, ] [[package]] @@ -5349,11 +2402,11 @@ name = "nv-one-logger-core" version = "2.3.1" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "overrides", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "pydantic", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "strenum", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "toml", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "typing-extensions", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "overrides" }, + { name = "pydantic" }, + { name = "strenum" }, + { name = "toml" }, + { name = "typing-extensions" }, ] sdist = { url = "https://files.pythonhosted.org/packages/3b/37/963095797035f371e0db6ea761f5aaccb624fc786af217115b423baeb0e2/nv_one_logger_core-2.3.1.tar.gz", hash = "sha256:cbb2f87604c78b96a302f32d87199902129d76153a73a20f8455a250b3246c1d", size = 52640, upload-time = "2025-10-29T21:11:55.812Z" } wheels = [ @@ -5365,11 +2418,11 @@ name = "nv-one-logger-pytorch-lightning-integration" version = "2.3.1" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "lightning", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "nv-one-logger-core", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "nv-one-logger-training-telemetry", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "setuptools", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "strenum", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "lightning" }, + { name = "nv-one-logger-core" }, + { name = "nv-one-logger-training-telemetry" }, + { name = "setuptools" }, + { name = "strenum" }, ] sdist = { url = "https://files.pythonhosted.org/packages/0c/d0/3475b7ab17d367362f650fb0419e8669f41e63c1018f4a8ac2fbecfd2e85/nv_one_logger_pytorch_lightning_integration-2.3.1.tar.gz", hash = "sha256:b32d99b6a8f02a16538bcade939b0a7edd7249e936aacefe336b5519447340c3", size = 10979, upload-time = "2025-10-29T21:22:10.464Z" } wheels = [ @@ -5381,9 +2434,9 @@ name = "nv-one-logger-training-telemetry" version = "2.3.1" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "nv-one-logger-core", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "strenum", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "typing-extensions", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "nv-one-logger-core" }, + { name = "strenum" }, + { name = "typing-extensions" }, ] sdist = { url = "https://files.pythonhosted.org/packages/c5/21/016fa067967734d52f1ccf5a2a37a1a65216f2d7053bc2b85872cce956ca/nv_one_logger_training_telemetry-2.3.1.tar.gz", hash = "sha256:8c67940ea71799afaf1f46df3ba2f52f93aea26321c6f1c1d54aae02efc2a4af", size = 44435, upload-time = "2025-10-29T21:21:42.035Z" } wheels = [ @@ -5397,19 +2450,13 @@ source = { registry = "https://pypi.org/simple" } resolution-markers = [ "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", ] wheels = [ { url = "https://files.pythonhosted.org/packages/29/99/db44d685f0e257ff0e213ade1964fc459b4a690a73293220e98feb3307cf/nvidia_cublas_cu12-12.8.4.1-py3-none-manylinux_2_27_aarch64.whl", hash = "sha256:b86f6dd8935884615a0683b663891d43781b819ac4f2ba2b0c9604676af346d0", size = 590537124, upload-time = "2025-03-07T01:43:53.556Z" }, @@ -5424,9 +2471,7 @@ source = { registry = "https://pypi.org/simple" } resolution-markers = [ "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux'", "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux'", - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux'", + "python_full_version < '3.12' and platform_machine == 'x86_64' and sys_platform == 'linux'", ] wheels = [ { url = "https://files.pythonhosted.org/packages/82/6c/90d3f532f608a03a13c1d6c16c266ffa3828e8011b1549d3b61db2ad59f5/nvidia_cublas_cu12-12.9.1.4-py3-none-manylinux_2_27_aarch64.whl", hash = "sha256:7a950dae01add3b415a5a5cdc4ec818fb5858263e9cca59004bb99fdbbd3a5d6", size = 575006342, upload-time = "2025-06-05T20:04:16.902Z" }, @@ -5441,19 +2486,13 @@ source = { registry = "https://pypi.org/simple" } resolution-markers = [ "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", ] wheels = [ { url = "https://files.pythonhosted.org/packages/d5/1f/b3bd73445e5cb342727fd24fe1f7b748f690b460acadc27ea22f904502c8/nvidia_cuda_cupti_cu12-12.8.90-py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:4412396548808ddfed3f17a467b104ba7751e6b58678a4b840675c56d21cf7ed", size = 9533318, upload-time = "2025-03-07T01:40:10.421Z" }, @@ -5468,9 +2507,7 @@ source = { registry = "https://pypi.org/simple" } resolution-markers = [ "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux'", "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux'", - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux'", + "python_full_version < '3.12' and platform_machine == 'x86_64' and sys_platform == 'linux'", ] wheels = [ { url = "https://files.pythonhosted.org/packages/b4/78/351b5c8cdbd9a6b4fb0d6ee73fb176dcdc1b6b6ad47c2ffff5ae8ca4a1f7/nvidia_cuda_cupti_cu12-12.9.79-py3-none-manylinux_2_25_aarch64.whl", hash = "sha256:791853b030602c6a11d08b5578edfb957cadea06e9d3b26adbf8d036135a4afe", size = 10077166, upload-time = "2025-06-05T20:01:01.385Z" }, @@ -5485,19 +2522,13 @@ source = { registry = "https://pypi.org/simple" } resolution-markers = [ "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", ] wheels = [ { url = "https://files.pythonhosted.org/packages/05/6b/32f747947df2da6994e999492ab306a903659555dddc0fbdeb9d71f75e52/nvidia_cuda_nvrtc_cu12-12.8.93-py3-none-manylinux2010_x86_64.manylinux_2_12_x86_64.whl", hash = "sha256:a7756528852ef889772a84c6cd89d41dfa74667e24cca16bb31f8f061e3e9994", size = 88040029, upload-time = "2025-03-07T01:42:13.562Z" }, @@ -5512,9 +2543,7 @@ source = { registry = "https://pypi.org/simple" } resolution-markers = [ "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux'", "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux'", - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux'", + "python_full_version < '3.12' and platform_machine == 'x86_64' and sys_platform == 'linux'", ] wheels = [ { url = "https://files.pythonhosted.org/packages/b8/85/e4af82cc9202023862090bfca4ea827d533329e925c758f0cde964cb54b7/nvidia_cuda_nvrtc_cu12-12.9.86-py3-none-manylinux2010_x86_64.manylinux_2_12_x86_64.whl", hash = "sha256:210cf05005a447e29214e9ce50851e83fc5f4358df8b453155d5e1918094dcb4", size = 89568129, upload-time = "2025-06-05T20:02:41.973Z" }, @@ -5529,19 +2558,13 @@ source = { registry = "https://pypi.org/simple" } resolution-markers = [ "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", ] wheels = [ { url = "https://files.pythonhosted.org/packages/7c/75/f865a3b236e4647605ea34cc450900854ba123834a5f1598e160b9530c3a/nvidia_cuda_runtime_cu12-12.8.90-py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:52bf7bbee900262ffefe5e9d5a2a69a30d97e2bc5bb6cc866688caa976966e3d", size = 965265, upload-time = "2025-03-07T01:39:43.533Z" }, @@ -5556,9 +2579,7 @@ source = { registry = "https://pypi.org/simple" } resolution-markers = [ "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux'", "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux'", - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux'", + "python_full_version < '3.12' and platform_machine == 'x86_64' and sys_platform == 'linux'", ] wheels = [ { url = "https://files.pythonhosted.org/packages/bc/e0/0279bd94539fda525e0c8538db29b72a5a8495b0c12173113471d28bce78/nvidia_cuda_runtime_cu12-12.9.79-py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:83469a846206f2a733db0c42e223589ab62fd2fabac4432d2f8802de4bded0a4", size = 3515012, upload-time = "2025-06-05T20:00:35.519Z" }, @@ -5587,19 +2608,13 @@ source = { registry = "https://pypi.org/simple" } resolution-markers = [ "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", ] dependencies = [ { name = "nvidia-nvjitlink-cu12", version = "12.8.93", source = { registry = "https://pypi.org/simple" }, marker = "(extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129')" }, @@ -5617,9 +2632,7 @@ source = { registry = "https://pypi.org/simple" } resolution-markers = [ "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux'", "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux'", - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux'", + "python_full_version < '3.12' and platform_machine == 'x86_64' and sys_platform == 'linux'", ] dependencies = [ { name = "nvidia-nvjitlink-cu12", version = "12.9.86", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, @@ -5637,19 +2650,13 @@ source = { registry = "https://pypi.org/simple" } resolution-markers = [ "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", ] wheels = [ { url = "https://files.pythonhosted.org/packages/bb/fe/1bcba1dfbfb8d01be8d93f07bfc502c93fa23afa6fd5ab3fc7c1df71038a/nvidia_cufile_cu12-1.13.1.3-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:1d069003be650e131b21c932ec3d8969c1715379251f8d23a1860554b1cb24fc", size = 1197834, upload-time = "2025-03-07T01:45:50.723Z" }, @@ -5663,9 +2670,7 @@ source = { registry = "https://pypi.org/simple" } resolution-markers = [ "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux'", "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux'", - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux'", + "python_full_version < '3.12' and platform_machine == 'x86_64' and sys_platform == 'linux'", ] wheels = [ { url = "https://files.pythonhosted.org/packages/ad/28/b960e06d705a440c030edd84e16888ee14c743390bdb2a6368e92ffe8ef8/nvidia_cufile_cu12-1.14.1.1-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:9552e2231792e94b1ff17bc99e958cc0e6bbbaa4a9d91fa2dbeed97716628fe6", size = 1210714, upload-time = "2025-06-05T20:06:11.898Z" }, @@ -5679,19 +2684,13 @@ source = { registry = "https://pypi.org/simple" } resolution-markers = [ "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", ] wheels = [ { url = "https://files.pythonhosted.org/packages/45/5e/92aa15eca622a388b80fbf8375d4760738df6285b1e92c43d37390a33a9a/nvidia_curand_cu12-10.3.9.90-py3-none-manylinux_2_27_aarch64.whl", hash = "sha256:dfab99248034673b779bc6decafdc3404a8a6f502462201f2f31f11354204acd", size = 63625754, upload-time = "2025-03-07T01:46:10.735Z" }, @@ -5706,9 +2705,7 @@ source = { registry = "https://pypi.org/simple" } resolution-markers = [ "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux'", "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux'", - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux'", + "python_full_version < '3.12' and platform_machine == 'x86_64' and sys_platform == 'linux'", ] wheels = [ { url = "https://files.pythonhosted.org/packages/14/1c/2a45afc614d99558d4a773fa740d8bb5471c8398eeed925fc0fcba020173/nvidia_curand_cu12-10.3.10.19-py3-none-manylinux_2_27_aarch64.whl", hash = "sha256:de663377feb1697e1d30ed587b07d5721fdd6d2015c738d7528a6002a6134d37", size = 68292066, upload-time = "2025-05-01T19:39:13.595Z" }, @@ -5723,19 +2720,13 @@ source = { registry = "https://pypi.org/simple" } resolution-markers = [ "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", ] dependencies = [ { name = "nvidia-cublas-cu12", version = "12.8.4.1", source = { registry = "https://pypi.org/simple" }, marker = "(extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129')" }, @@ -5755,9 +2746,7 @@ source = { registry = "https://pypi.org/simple" } resolution-markers = [ "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux'", "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux'", - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux'", + "python_full_version < '3.12' and platform_machine == 'x86_64' and sys_platform == 'linux'", ] dependencies = [ { name = "nvidia-cublas-cu12", version = "12.9.1.4", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, @@ -5777,19 +2766,13 @@ source = { registry = "https://pypi.org/simple" } resolution-markers = [ "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", ] dependencies = [ { name = "nvidia-nvjitlink-cu12", version = "12.8.93", source = { registry = "https://pypi.org/simple" }, marker = "(extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129')" }, @@ -5807,9 +2790,7 @@ source = { registry = "https://pypi.org/simple" } resolution-markers = [ "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux'", "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux'", - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux'", + "python_full_version < '3.12' and platform_machine == 'x86_64' and sys_platform == 'linux'", ] dependencies = [ { name = "nvidia-nvjitlink-cu12", version = "12.9.86", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, @@ -5830,53 +2811,10 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/2f/d8/a6b0d0d0c2435e9310f3e2bb0d9c9dd4c33daef86aa5f30b3681defd37ea/nvidia_cusparselt_cu12-0.7.1-py3-none-win_amd64.whl", hash = "sha256:f67fbb5831940ec829c9117b7f33807db9f9678dc2a617fbe781cac17b4e1075", size = 271020911, upload-time = "2025-02-26T00:14:47.204Z" }, ] -[[package]] -name = "nvidia-nccl-cu12" -version = "2.27.3" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", -] -wheels = [ - { url = "https://files.pythonhosted.org/packages/4b/7b/8354b784cf73b0ba51e566b4baba3ddd44fe8288a3d39ef1e06cd5417226/nvidia_nccl_cu12-2.27.3-py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:9ddf1a245abc36c550870f26d537a9b6087fb2e2e3d6e0ef03374c6fd19d984f", size = 322397768, upload-time = "2025-06-03T21:57:30.234Z" }, - { url = "https://files.pythonhosted.org/packages/5c/5b/4e4fff7bad39adf89f735f2bc87248c81db71205b62bcc0d5ca5b606b3c3/nvidia_nccl_cu12-2.27.3-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:adf27ccf4238253e0b826bce3ff5fa532d65fc42322c8bfdfaf28024c0fbe039", size = 322364134, upload-time = "2025-06-03T21:58:04.013Z" }, -] - [[package]] name = "nvidia-nccl-cu12" version = "2.27.5" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", -] wheels = [ { url = "https://files.pythonhosted.org/packages/bb/1c/857979db0ef194ca5e21478a0612bcdbbe59458d7694361882279947b349/nvidia_nccl_cu12-2.27.5-py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:31432ad4d1fb1004eb0c56203dc9bc2178a1ba69d1d9e02d64a6938ab5e40e7a", size = 322400625, upload-time = "2025-06-26T04:11:04.496Z" }, { url = "https://files.pythonhosted.org/packages/6e/89/f7a07dc961b60645dbbf42e80f2bc85ade7feb9a491b11a1e973aa00071f/nvidia_nccl_cu12-2.27.5-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:ad730cf15cb5d25fe849c6e6ca9eb5b76db16a80f13f425ac68d8e2e55624457", size = 322348229, upload-time = "2025-06-26T04:11:28.385Z" }, @@ -5889,19 +2827,13 @@ source = { registry = "https://pypi.org/simple" } resolution-markers = [ "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", ] wheels = [ { url = "https://files.pythonhosted.org/packages/f6/74/86a07f1d0f42998ca31312f998bd3b9a7eff7f52378f4f270c8679c77fb9/nvidia_nvjitlink_cu12-12.8.93-py3-none-manylinux2010_x86_64.manylinux_2_12_x86_64.whl", hash = "sha256:81ff63371a7ebd6e6451970684f916be2eab07321b73c9d244dc2b4da7f73b88", size = 39254836, upload-time = "2025-03-07T01:49:55.661Z" }, @@ -5916,9 +2848,7 @@ source = { registry = "https://pypi.org/simple" } resolution-markers = [ "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux'", "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux'", - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux'", + "python_full_version < '3.12' and platform_machine == 'x86_64' and sys_platform == 'linux'", ] wheels = [ { url = "https://files.pythonhosted.org/packages/46/0c/c75bbfb967457a0b7670b8ad267bfc4fffdf341c074e0a80db06c24ccfd4/nvidia_nvjitlink_cu12-12.9.86-py3-none-manylinux2010_x86_64.manylinux_2_12_x86_64.whl", hash = "sha256:e3f1171dbdc83c5932a45f0f4c99180a70de9bd2718c1ab77d14104f6d7147f9", size = 39748338, upload-time = "2025-06-05T20:10:25.613Z" }, @@ -5942,19 +2872,13 @@ source = { registry = "https://pypi.org/simple" } resolution-markers = [ "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", ] wheels = [ { url = "https://files.pythonhosted.org/packages/10/c0/1b303feea90d296f6176f32a2a70b5ef230f9bdeb3a72bddb0dc922dc137/nvidia_nvtx_cu12-12.8.90-py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:d7ad891da111ebafbf7e015d34879f7112832fc239ff0d7d776b6cb685274615", size = 91161, upload-time = "2025-03-07T01:42:23.922Z" }, @@ -5969,9 +2893,7 @@ source = { registry = "https://pypi.org/simple" } resolution-markers = [ "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux'", "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux'", - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux'", + "python_full_version < '3.12' and platform_machine == 'x86_64' and sys_platform == 'linux'", ] wheels = [ { url = "https://files.pythonhosted.org/packages/86/ed/bb230dce7741f2778ba2ae3e8778fdb8bc58eee9fd95f07bf7b2d18e8081/nvidia_nvtx_cu12-12.9.79-py3-none-manylinux1_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:fec150986817f2b4e7eed72ed059f2dcb9ba3856b9a96134e448eac946a6952f", size = 85504, upload-time = "2025-06-05T20:03:10.21Z" }, @@ -5997,16 +2919,11 @@ name = "onnx" version = "1.17.0" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "numpy", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "protobuf", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "numpy" }, + { name = "protobuf" }, ] sdist = { url = "https://files.pythonhosted.org/packages/9a/54/0e385c26bf230d223810a9c7d06628d954008a5e5e4b73ee26ef02327282/onnx-1.17.0.tar.gz", hash = "sha256:48ca1a91ff73c1d5e3ea2eef20ae5d0e709bb8a2355ed798ffc2169753013fd3", size = 12165120, upload-time = "2024-10-01T21:48:40.63Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/2e/29/57053ba7787788ac75efb095cfc1ae290436b6d3a26754693cd7ed1b4fac/onnx-1.17.0-cp310-cp310-macosx_12_0_universal2.whl", hash = "sha256:38b5df0eb22012198cdcee527cc5f917f09cce1f88a69248aaca22bd78a7f023", size = 16645616, upload-time = "2024-10-01T21:45:45.778Z" }, - { url = "https://files.pythonhosted.org/packages/75/0d/831807a18db2a5e8f7813848c59272b904a4ef3939fe4d1288cbce9ea735/onnx-1.17.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d545335cb49d4d8c47cc803d3a805deb7ad5d9094dc67657d66e568610a36d7d", size = 15908420, upload-time = "2024-10-01T21:45:49.263Z" }, - { url = "https://files.pythonhosted.org/packages/dd/5b/c4f95dbe652d14aeba9afaceb177e9ffc48ac3c03048dd3f872f26f07e34/onnx-1.17.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3193a3672fc60f1a18c0f4c93ac81b761bc72fd8a6c2035fa79ff5969f07713e", size = 16046244, upload-time = "2024-10-01T21:45:52.164Z" }, - { url = "https://files.pythonhosted.org/packages/08/a9/c1f218085043dccc6311460239e253fa6957cf12ee4b0a56b82014938d0b/onnx-1.17.0-cp310-cp310-win32.whl", hash = "sha256:0141c2ce806c474b667b7e4499164227ef594584da432fd5613ec17c1855e311", size = 14423516, upload-time = "2024-10-01T21:45:55.071Z" }, - { url = "https://files.pythonhosted.org/packages/0e/d3/d26ebf590a65686dde6b27fef32493026c5be9e42083340d947395f93405/onnx-1.17.0-cp310-cp310-win_amd64.whl", hash = "sha256:dfd777d95c158437fda6b34758f0877d15b89cbe9ff45affbedc519b35345cf9", size = 14528496, upload-time = "2024-10-01T21:45:58.065Z" }, { url = "https://files.pythonhosted.org/packages/e5/a9/8d1b1d53aec70df53e0f57e9f9fcf47004276539e29230c3d5f1f50719ba/onnx-1.17.0-cp311-cp311-macosx_12_0_universal2.whl", hash = "sha256:d6fc3a03fc0129b8b6ac03f03bc894431ffd77c7d79ec023d0afd667b4d35869", size = 16647991, upload-time = "2024-10-01T21:46:02.491Z" }, { url = "https://files.pythonhosted.org/packages/7b/e3/cc80110e5996ca61878f7b4c73c7a286cd88918ff35eacb60dc75ab11ef5/onnx-1.17.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f01a4b63d4e1d8ec3e2f069e7b798b2955810aa434f7361f01bc8ca08d69cce4", size = 15908949, upload-time = "2024-10-01T21:46:05.165Z" }, { url = "https://files.pythonhosted.org/packages/b1/2f/91092557ed478e323a2b4471e2081fdf88d1dd52ae988ceaf7db4e4506ff/onnx-1.17.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4a183c6178be001bf398260e5ac2c927dc43e7746e8638d6c05c20e321f8c949", size = 16048190, upload-time = "2024-10-01T21:46:08.041Z" }, @@ -6017,153 +2934,18 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/3d/7c/67f4952d1b56b3f74a154b97d0dd0630d525923b354db117d04823b8b49b/onnx-1.17.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4f3fb5cc4e2898ac5312a7dc03a65133dd2abf9a5e520e69afb880a7251ec97a", size = 16046307, upload-time = "2024-10-01T21:46:21.186Z" }, { url = "https://files.pythonhosted.org/packages/ae/20/6da11042d2ab870dfb4ce4a6b52354d7651b6b4112038b6d2229ab9904c4/onnx-1.17.0-cp312-cp312-win32.whl", hash = "sha256:317870fca3349d19325a4b7d1b5628f6de3811e9710b1e3665c68b073d0e68d7", size = 14424235, upload-time = "2024-10-01T21:46:24.343Z" }, { url = "https://files.pythonhosted.org/packages/35/55/c4d11bee1fdb0c4bd84b4e3562ff811a19b63266816870ae1f95567aa6e1/onnx-1.17.0-cp312-cp312-win_amd64.whl", hash = "sha256:659b8232d627a5460d74fd3c96947ae83db6d03f035ac633e20cd69cfa029227", size = 14530453, upload-time = "2024-10-01T21:46:26.981Z" }, - { url = "https://files.pythonhosted.org/packages/49/e1/c5301ff2afa4c473d32a4e9f1bed5c589cfc4947c79002a00183f4cc0fa1/onnx-1.17.0-cp39-cp39-macosx_12_0_universal2.whl", hash = "sha256:67e1c59034d89fff43b5301b6178222e54156eadd6ab4cd78ddc34b2f6274a66", size = 16645989, upload-time = "2024-10-01T21:46:42.177Z" }, - { url = "https://files.pythonhosted.org/packages/61/94/d753c230d56234dd01ad939590a2ed33221b57c61abe513ff6823a69af6e/onnx-1.17.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3e19fd064b297f7773b4c1150f9ce6213e6d7d041d7a9201c0d348041009cdcd", size = 15908316, upload-time = "2024-10-01T21:46:44.948Z" }, - { url = "https://files.pythonhosted.org/packages/3d/da/c19d0f20d310045f4701d75ecba4f765153251d48a32f27a5d6b0a7e3799/onnx-1.17.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8167295f576055158a966161f8ef327cb491c06ede96cc23392be6022071b6ed", size = 16046488, upload-time = "2024-10-01T21:46:47.3Z" }, - { url = "https://files.pythonhosted.org/packages/57/1a/79623a6cd305dfcd21888747364994109dfcb6194343157cb8653f1612dc/onnx-1.17.0-cp39-cp39-win32.whl", hash = "sha256:76884fe3e0258c911c749d7d09667fb173365fd27ee66fcedaf9fa039210fd13", size = 14423724, upload-time = "2024-10-01T21:46:49.52Z" }, - { url = "https://files.pythonhosted.org/packages/57/8e/ce0e20200bdf8e8b47679cd56efb1057aa218b29ccdf60a3b4fb6b91064c/onnx-1.17.0-cp39-cp39-win_amd64.whl", hash = "sha256:5ca7a0894a86d028d509cdcf99ed1864e19bfe5727b44322c11691d834a1c546", size = 14524172, upload-time = "2024-10-01T21:46:51.65Z" }, -] - -[[package]] -name = "onnxruntime" -version = "1.20.1" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", -] -dependencies = [ - { name = "coloredlogs", marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "flatbuffers", marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "numpy", marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "packaging", marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "protobuf", marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "sympy", marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, -] -wheels = [ - { url = "https://files.pythonhosted.org/packages/4e/28/99f903b0eb1cd6f3faa0e343217d9fb9f47b84bca98bd9859884631336ee/onnxruntime-1.20.1-cp310-cp310-macosx_13_0_universal2.whl", hash = "sha256:e50ba5ff7fed4f7d9253a6baf801ca2883cc08491f9d32d78a80da57256a5439", size = 30996314, upload-time = "2024-11-21T00:48:31.43Z" }, - { url = "https://files.pythonhosted.org/packages/6d/c6/c4c0860bee2fde6037bdd9dcd12d323f6e38cf00fcc9a5065b394337fc55/onnxruntime-1.20.1-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:7b2908b50101a19e99c4d4e97ebb9905561daf61829403061c1adc1b588bc0de", size = 11954010, upload-time = "2024-11-21T00:48:35.254Z" }, - { url = "https://files.pythonhosted.org/packages/63/47/3dc0b075ab539f16b3d8b09df6b504f51836086ee709690a6278d791737d/onnxruntime-1.20.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:d82daaec24045a2e87598b8ac2b417b1cce623244e80e663882e9fe1aae86410", size = 13330452, upload-time = "2024-11-21T00:48:40.02Z" }, - { url = "https://files.pythonhosted.org/packages/27/ef/80fab86289ecc01a734b7ddf115dfb93d8b2e004bd1e1977e12881c72b12/onnxruntime-1.20.1-cp310-cp310-win32.whl", hash = "sha256:4c4b251a725a3b8cf2aab284f7d940c26094ecd9d442f07dd81ab5470e99b83f", size = 9813849, upload-time = "2024-11-21T00:48:43.569Z" }, - { url = "https://files.pythonhosted.org/packages/a9/e6/33ab10066c9875a29d55e66ae97c3bf91b9b9b987179455d67c32261a49c/onnxruntime-1.20.1-cp310-cp310-win_amd64.whl", hash = "sha256:d3b616bb53a77a9463707bb313637223380fc327f5064c9a782e8ec69c22e6a2", size = 11329702, upload-time = "2024-11-21T00:48:46.599Z" }, - { url = "https://files.pythonhosted.org/packages/95/8d/2634e2959b34aa8a0037989f4229e9abcfa484e9c228f99633b3241768a6/onnxruntime-1.20.1-cp311-cp311-macosx_13_0_universal2.whl", hash = "sha256:06bfbf02ca9ab5f28946e0f912a562a5f005301d0c419283dc57b3ed7969bb7b", size = 30998725, upload-time = "2024-11-21T00:48:51.013Z" }, - { url = "https://files.pythonhosted.org/packages/a5/da/c44bf9bd66cd6d9018a921f053f28d819445c4d84b4dd4777271b0fe52a2/onnxruntime-1.20.1-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:f6243e34d74423bdd1edf0ae9596dd61023b260f546ee17d701723915f06a9f7", size = 11955227, upload-time = "2024-11-21T00:48:54.556Z" }, - { url = "https://files.pythonhosted.org/packages/11/ac/4120dfb74c8e45cce1c664fc7f7ce010edd587ba67ac41489f7432eb9381/onnxruntime-1.20.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:5eec64c0269dcdb8d9a9a53dc4d64f87b9e0c19801d9321246a53b7eb5a7d1bc", size = 13331703, upload-time = "2024-11-21T00:48:57.97Z" }, - { url = "https://files.pythonhosted.org/packages/12/f1/cefacac137f7bb7bfba57c50c478150fcd3c54aca72762ac2c05ce0532c1/onnxruntime-1.20.1-cp311-cp311-win32.whl", hash = "sha256:a19bc6e8c70e2485a1725b3d517a2319603acc14c1f1a017dda0afe6d4665b41", size = 9813977, upload-time = "2024-11-21T00:49:00.519Z" }, - { url = "https://files.pythonhosted.org/packages/2c/2d/2d4d202c0bcfb3a4cc2b171abb9328672d7f91d7af9ea52572722c6d8d96/onnxruntime-1.20.1-cp311-cp311-win_amd64.whl", hash = "sha256:8508887eb1c5f9537a4071768723ec7c30c28eb2518a00d0adcd32c89dea3221", size = 11329895, upload-time = "2024-11-21T00:49:03.845Z" }, - { url = "https://files.pythonhosted.org/packages/e5/39/9335e0874f68f7d27103cbffc0e235e32e26759202df6085716375c078bb/onnxruntime-1.20.1-cp312-cp312-macosx_13_0_universal2.whl", hash = "sha256:22b0655e2bf4f2161d52706e31f517a0e54939dc393e92577df51808a7edc8c9", size = 31007580, upload-time = "2024-11-21T00:49:07.029Z" }, - { url = "https://files.pythonhosted.org/packages/c5/9d/a42a84e10f1744dd27c6f2f9280cc3fb98f869dd19b7cd042e391ee2ab61/onnxruntime-1.20.1-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:f1f56e898815963d6dc4ee1c35fc6c36506466eff6d16f3cb9848cea4e8c8172", size = 11952833, upload-time = "2024-11-21T00:49:10.563Z" }, - { url = "https://files.pythonhosted.org/packages/47/42/2f71f5680834688a9c81becbe5c5bb996fd33eaed5c66ae0606c3b1d6a02/onnxruntime-1.20.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:bb71a814f66517a65628c9e4a2bb530a6edd2cd5d87ffa0af0f6f773a027d99e", size = 13333903, upload-time = "2024-11-21T00:49:12.984Z" }, - { url = "https://files.pythonhosted.org/packages/c8/f1/aabfdf91d013320aa2fc46cf43c88ca0182860ff15df872b4552254a9680/onnxruntime-1.20.1-cp312-cp312-win32.whl", hash = "sha256:bd386cc9ee5f686ee8a75ba74037750aca55183085bf1941da8efcfe12d5b120", size = 9814562, upload-time = "2024-11-21T00:49:15.453Z" }, - { url = "https://files.pythonhosted.org/packages/dd/80/76979e0b744307d488c79e41051117634b956612cc731f1028eb17ee7294/onnxruntime-1.20.1-cp312-cp312-win_amd64.whl", hash = "sha256:19c2d843eb074f385e8bbb753a40df780511061a63f9def1b216bf53860223fb", size = 11331482, upload-time = "2024-11-21T00:49:19.412Z" }, - { url = "https://files.pythonhosted.org/packages/f7/71/c5d980ac4189589267a06f758bd6c5667d07e55656bed6c6c0580733ad07/onnxruntime-1.20.1-cp313-cp313-macosx_13_0_universal2.whl", hash = "sha256:cc01437a32d0042b606f462245c8bbae269e5442797f6213e36ce61d5abdd8cc", size = 31007574, upload-time = "2024-11-21T00:49:23.225Z" }, - { url = "https://files.pythonhosted.org/packages/81/0d/13bbd9489be2a6944f4a940084bfe388f1100472f38c07080a46fbd4ab96/onnxruntime-1.20.1-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:fb44b08e017a648924dbe91b82d89b0c105b1adcfe31e90d1dc06b8677ad37be", size = 11951459, upload-time = "2024-11-21T00:49:26.269Z" }, - { url = "https://files.pythonhosted.org/packages/c0/ea/4454ae122874fd52bbb8a961262de81c5f932edeb1b72217f594c700d6ef/onnxruntime-1.20.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:bda6aebdf7917c1d811f21d41633df00c58aff2bef2f598f69289c1f1dabc4b3", size = 13331620, upload-time = "2024-11-21T00:49:28.875Z" }, - { url = "https://files.pythonhosted.org/packages/d8/e0/50db43188ca1c945decaa8fc2a024c33446d31afed40149897d4f9de505f/onnxruntime-1.20.1-cp313-cp313-win_amd64.whl", hash = "sha256:d30367df7e70f1d9fc5a6a68106f5961686d39b54d3221f760085524e8d38e16", size = 11331758, upload-time = "2024-11-21T00:49:31.417Z" }, - { url = "https://files.pythonhosted.org/packages/d8/55/3821c5fd60b52a6c82a00bba18531793c93c4addfe64fbf061e235c5617a/onnxruntime-1.20.1-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c9158465745423b2b5d97ed25aa7740c7d38d2993ee2e5c3bfacb0c4145c49d8", size = 11950342, upload-time = "2024-11-21T00:49:34.164Z" }, - { url = "https://files.pythonhosted.org/packages/14/56/fd990ca222cef4f9f4a9400567b9a15b220dee2eafffb16b2adbc55c8281/onnxruntime-1.20.1-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:0df6f2df83d61f46e842dbcde610ede27218947c33e994545a22333491e72a3b", size = 13337040, upload-time = "2024-11-21T00:49:37.271Z" }, ] [[package]] name = "onnxruntime" version = "1.24.2" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.11.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.10.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.11.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.10.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", -] dependencies = [ - { name = "flatbuffers", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "numpy", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "packaging", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "protobuf", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "sympy", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "flatbuffers" }, + { name = "numpy" }, + { name = "packaging" }, + { name = "protobuf" }, + { name = "sympy" }, ] wheels = [ { url = "https://files.pythonhosted.org/packages/2c/4e/050c947924ffd8ff856d219d8f83ee3d4e7dc52d5a6770ff34a15675c437/onnxruntime-1.24.2-cp311-cp311-macosx_14_0_arm64.whl", hash = "sha256:69d1c75997276106d24e65da2e69ec4302af1b117fef414e2154740cde0f6214", size = 17217298, upload-time = "2026-02-19T17:15:09.891Z" }, @@ -6199,8 +2981,7 @@ name = "optuna" version = "4.7.0" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "alembic", version = "1.16.5", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "alembic", version = "1.18.4", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "alembic" }, { name = "colorlog" }, { name = "numpy" }, { name = "packaging" }, @@ -6243,13 +3024,6 @@ dependencies = [ ] sdist = { url = "https://files.pythonhosted.org/packages/33/01/d40b85317f86cf08d853a4f495195c73815fdf205eef3993821720274518/pandas-2.3.3.tar.gz", hash = "sha256:e05e1af93b977f7eafa636d043f9f94c7ee3ac81af99c13508215942e64c993b", size = 4495223, upload-time = "2025-09-29T23:34:51.853Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/3d/f7/f425a00df4fcc22b292c6895c6831c0c8ae1d9fac1e024d16f98a9ce8749/pandas-2.3.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:376c6446ae31770764215a6c937f72d917f214b43560603cd60da6408f183b6c", size = 11555763, upload-time = "2025-09-29T23:16:53.287Z" }, - { url = "https://files.pythonhosted.org/packages/13/4f/66d99628ff8ce7857aca52fed8f0066ce209f96be2fede6cef9f84e8d04f/pandas-2.3.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e19d192383eab2f4ceb30b412b22ea30690c9e618f78870357ae1d682912015a", size = 10801217, upload-time = "2025-09-29T23:17:04.522Z" }, - { url = "https://files.pythonhosted.org/packages/1d/03/3fc4a529a7710f890a239cc496fc6d50ad4a0995657dccc1d64695adb9f4/pandas-2.3.3-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5caf26f64126b6c7aec964f74266f435afef1c1b13da3b0636c7518a1fa3e2b1", size = 12148791, upload-time = "2025-09-29T23:17:18.444Z" }, - { url = "https://files.pythonhosted.org/packages/40/a8/4dac1f8f8235e5d25b9955d02ff6f29396191d4e665d71122c3722ca83c5/pandas-2.3.3-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:dd7478f1463441ae4ca7308a70e90b33470fa593429f9d4c578dd00d1fa78838", size = 12769373, upload-time = "2025-09-29T23:17:35.846Z" }, - { url = "https://files.pythonhosted.org/packages/df/91/82cc5169b6b25440a7fc0ef3a694582418d875c8e3ebf796a6d6470aa578/pandas-2.3.3-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:4793891684806ae50d1288c9bae9330293ab4e083ccd1c5e383c34549c6e4250", size = 13200444, upload-time = "2025-09-29T23:17:49.341Z" }, - { url = "https://files.pythonhosted.org/packages/10/ae/89b3283800ab58f7af2952704078555fa60c807fff764395bb57ea0b0dbd/pandas-2.3.3-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:28083c648d9a99a5dd035ec125d42439c6c1c525098c58af0fc38dd1a7a1b3d4", size = 13858459, upload-time = "2025-09-29T23:18:03.722Z" }, - { url = "https://files.pythonhosted.org/packages/85/72/530900610650f54a35a19476eca5104f38555afccda1aa11a92ee14cb21d/pandas-2.3.3-cp310-cp310-win_amd64.whl", hash = "sha256:503cf027cf9940d2ceaa1a93cfb5f8c8c7e6e90720a2850378f0b3f3b1e06826", size = 11346086, upload-time = "2025-09-29T23:18:18.505Z" }, { url = "https://files.pythonhosted.org/packages/c1/fa/7ac648108144a095b4fb6aa3de1954689f7af60a14cf25583f4960ecb878/pandas-2.3.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:602b8615ebcc4a0c1751e71840428ddebeb142ec02c786e8ad6b1ce3c8dec523", size = 11578790, upload-time = "2025-09-29T23:18:30.065Z" }, { url = "https://files.pythonhosted.org/packages/9b/35/74442388c6cf008882d4d4bdfc4109be87e9b8b7ccd097ad1e7f006e2e95/pandas-2.3.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:8fe25fc7b623b0ef6b5009149627e34d2a4657e880948ec3c840e9402e5c1b45", size = 10833831, upload-time = "2025-09-29T23:38:56.071Z" }, { url = "https://files.pythonhosted.org/packages/fe/e4/de154cbfeee13383ad58d23017da99390b91d73f8c11856f2095e813201b/pandas-2.3.3-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b468d3dad6ff947df92dcb32ede5b7bd41a9b3cceef0a30ed925f6d01fb8fa66", size = 12199267, upload-time = "2025-09-29T23:18:41.627Z" }, @@ -6277,13 +3051,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/44/23/78d645adc35d94d1ac4f2a3c4112ab6f5b8999f4898b8cdf01252f8df4a9/pandas-2.3.3-cp313-cp313t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:900f47d8f20860de523a1ac881c4c36d65efcb2eb850e6948140fa781736e110", size = 12121912, upload-time = "2025-09-29T23:23:05.042Z" }, { url = "https://files.pythonhosted.org/packages/53/da/d10013df5e6aaef6b425aa0c32e1fc1f3e431e4bcabd420517dceadce354/pandas-2.3.3-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:a45c765238e2ed7d7c608fc5bc4a6f88b642f2f01e70c0c23d2224dd21829d86", size = 12712160, upload-time = "2025-09-29T23:23:28.57Z" }, { url = "https://files.pythonhosted.org/packages/bd/17/e756653095a083d8a37cbd816cb87148debcfcd920129b25f99dd8d04271/pandas-2.3.3-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:c4fc4c21971a1a9f4bdb4c73978c7f7256caa3e62b323f70d6cb80db583350bc", size = 13199233, upload-time = "2025-09-29T23:24:24.876Z" }, - { url = "https://files.pythonhosted.org/packages/56/b4/52eeb530a99e2a4c55ffcd352772b599ed4473a0f892d127f4147cf0f88e/pandas-2.3.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:c503ba5216814e295f40711470446bc3fd00f0faea8a086cbc688808e26f92a2", size = 11567720, upload-time = "2025-09-29T23:33:06.209Z" }, - { url = "https://files.pythonhosted.org/packages/48/4a/2d8b67632a021bced649ba940455ed441ca854e57d6e7658a6024587b083/pandas-2.3.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a637c5cdfa04b6d6e2ecedcb81fc52ffb0fd78ce2ebccc9ea964df9f658de8c8", size = 10810302, upload-time = "2025-09-29T23:33:35.846Z" }, - { url = "https://files.pythonhosted.org/packages/13/e6/d2465010ee0569a245c975dc6967b801887068bc893e908239b1f4b6c1ac/pandas-2.3.3-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:854d00d556406bffe66a4c0802f334c9ad5a96b4f1f868adf036a21b11ef13ff", size = 12154874, upload-time = "2025-09-29T23:33:49.939Z" }, - { url = "https://files.pythonhosted.org/packages/1f/18/aae8c0aa69a386a3255940e9317f793808ea79d0a525a97a903366bb2569/pandas-2.3.3-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:bf1f8a81d04ca90e32a0aceb819d34dbd378a98bf923b6398b9a3ec0bf44de29", size = 12790141, upload-time = "2025-09-29T23:34:05.655Z" }, - { url = "https://files.pythonhosted.org/packages/f7/26/617f98de789de00c2a444fbe6301bb19e66556ac78cff933d2c98f62f2b4/pandas-2.3.3-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:23ebd657a4d38268c7dfbdf089fbc31ea709d82e4923c5ffd4fbd5747133ce73", size = 13208697, upload-time = "2025-09-29T23:34:21.835Z" }, - { url = "https://files.pythonhosted.org/packages/b9/fb/25709afa4552042bd0e15717c75e9b4a2294c3dc4f7e6ea50f03c5136600/pandas-2.3.3-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:5554c929ccc317d41a5e3d1234f3be588248e61f08a74dd17c9eabb535777dc9", size = 13879233, upload-time = "2025-09-29T23:34:35.079Z" }, - { url = "https://files.pythonhosted.org/packages/98/af/7be05277859a7bc399da8ba68b88c96b27b48740b6cf49688899c6eb4176/pandas-2.3.3-cp39-cp39-win_amd64.whl", hash = "sha256:d3e28b3e83862ccf4d85ff19cf8c20b2ae7e503881711ff2d534dc8f761131aa", size = 11359119, upload-time = "2025-09-29T23:34:46.339Z" }, ] [[package]] @@ -6300,18 +3067,18 @@ name = "peft" version = "0.18.1" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "accelerate", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "huggingface-hub", version = "0.36.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "numpy", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "packaging", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "psutil", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "pyyaml", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "safetensors", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "torch", version = "2.10.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.10.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(python_full_version >= '3.10' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.10.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(python_full_version >= '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "tqdm", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "transformers", version = "4.53.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "accelerate" }, + { name = "huggingface-hub", version = "0.36.2", source = { registry = "https://pypi.org/simple" } }, + { name = "numpy" }, + { name = "packaging" }, + { name = "psutil" }, + { name = "pyyaml" }, + { name = "safetensors" }, + { name = "torch", version = "2.10.0", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "torch", version = "2.10.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.10.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "tqdm" }, + { name = "transformers", version = "4.53.3", source = { registry = "https://pypi.org/simple" } }, ] sdist = { url = "https://files.pythonhosted.org/packages/d8/48/147b3ea999560b40a34fd78724c7777aa9d18409c2250bdcaf9c4f2db7fc/peft-0.18.1.tar.gz", hash = "sha256:2dd0d6bfce936d1850e48aaddbd250941c5c02fc8ef3237cd8fd5aac35e0bae2", size = 635030, upload-time = "2026-01-09T13:08:01.136Z" } wheels = [ @@ -6323,215 +3090,19 @@ name = "pexpect" version = "4.9.0" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "ptyprocess", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "ptyprocess" }, ] sdist = { url = "https://files.pythonhosted.org/packages/42/92/cc564bf6381ff43ce1f4d06852fc19a2f11d180f23dc32d9588bee2f149d/pexpect-4.9.0.tar.gz", hash = "sha256:ee7d41123f3c9911050ea2c2dac107568dc43b2d3b0c7557a33212c398ead30f", size = 166450, upload-time = "2023-11-25T09:07:26.339Z" } wheels = [ { url = "https://files.pythonhosted.org/packages/9e/c3/059298687310d527a58bb01f3b1965787ee3b40dce76752eda8b44e9a2c5/pexpect-4.9.0-py2.py3-none-any.whl", hash = "sha256:7236d1e080e4936be2dc3e326cec0af72acf9212a7e1d060210e70a47e253523", size = 63772, upload-time = "2023-11-25T06:56:14.81Z" }, ] -[[package]] -name = "pillow" -version = "11.3.0" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", -] -sdist = { url = "https://files.pythonhosted.org/packages/f3/0d/d0d6dea55cd152ce3d6767bb38a8fc10e33796ba4ba210cbab9354b6d238/pillow-11.3.0.tar.gz", hash = "sha256:3828ee7586cd0b2091b6209e5ad53e20d0649bbe87164a459d0676e035e8f523", size = 47113069, upload-time = "2025-07-01T09:16:30.666Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/4c/5d/45a3553a253ac8763f3561371432a90bdbe6000fbdcf1397ffe502aa206c/pillow-11.3.0-cp310-cp310-macosx_10_10_x86_64.whl", hash = "sha256:1b9c17fd4ace828b3003dfd1e30bff24863e0eb59b535e8f80194d9cc7ecf860", size = 5316554, upload-time = "2025-07-01T09:13:39.342Z" }, - { url = "https://files.pythonhosted.org/packages/7c/c8/67c12ab069ef586a25a4a79ced553586748fad100c77c0ce59bb4983ac98/pillow-11.3.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:65dc69160114cdd0ca0f35cb434633c75e8e7fad4cf855177a05bf38678f73ad", size = 4686548, upload-time = "2025-07-01T09:13:41.835Z" }, - { url = "https://files.pythonhosted.org/packages/2f/bd/6741ebd56263390b382ae4c5de02979af7f8bd9807346d068700dd6d5cf9/pillow-11.3.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:7107195ddc914f656c7fc8e4a5e1c25f32e9236ea3ea860f257b0436011fddd0", size = 5859742, upload-time = "2025-07-03T13:09:47.439Z" }, - { url = "https://files.pythonhosted.org/packages/ca/0b/c412a9e27e1e6a829e6ab6c2dca52dd563efbedf4c9c6aa453d9a9b77359/pillow-11.3.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:cc3e831b563b3114baac7ec2ee86819eb03caa1a2cef0b481a5675b59c4fe23b", size = 7633087, upload-time = "2025-07-03T13:09:51.796Z" }, - { url = "https://files.pythonhosted.org/packages/59/9d/9b7076aaf30f5dd17e5e5589b2d2f5a5d7e30ff67a171eb686e4eecc2adf/pillow-11.3.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:f1f182ebd2303acf8c380a54f615ec883322593320a9b00438eb842c1f37ae50", size = 5963350, upload-time = "2025-07-01T09:13:43.865Z" }, - { url = "https://files.pythonhosted.org/packages/f0/16/1a6bf01fb622fb9cf5c91683823f073f053005c849b1f52ed613afcf8dae/pillow-11.3.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:4445fa62e15936a028672fd48c4c11a66d641d2c05726c7ec1f8ba6a572036ae", size = 6631840, upload-time = "2025-07-01T09:13:46.161Z" }, - { url = "https://files.pythonhosted.org/packages/7b/e6/6ff7077077eb47fde78739e7d570bdcd7c10495666b6afcd23ab56b19a43/pillow-11.3.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:71f511f6b3b91dd543282477be45a033e4845a40278fa8dcdbfdb07109bf18f9", size = 6074005, upload-time = "2025-07-01T09:13:47.829Z" }, - { url = "https://files.pythonhosted.org/packages/c3/3a/b13f36832ea6d279a697231658199e0a03cd87ef12048016bdcc84131601/pillow-11.3.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:040a5b691b0713e1f6cbe222e0f4f74cd233421e105850ae3b3c0ceda520f42e", size = 6708372, upload-time = "2025-07-01T09:13:52.145Z" }, - { url = "https://files.pythonhosted.org/packages/6c/e4/61b2e1a7528740efbc70b3d581f33937e38e98ef3d50b05007267a55bcb2/pillow-11.3.0-cp310-cp310-win32.whl", hash = "sha256:89bd777bc6624fe4115e9fac3352c79ed60f3bb18651420635f26e643e3dd1f6", size = 6277090, upload-time = "2025-07-01T09:13:53.915Z" }, - { url = "https://files.pythonhosted.org/packages/a9/d3/60c781c83a785d6afbd6a326ed4d759d141de43aa7365725cbcd65ce5e54/pillow-11.3.0-cp310-cp310-win_amd64.whl", hash = "sha256:19d2ff547c75b8e3ff46f4d9ef969a06c30ab2d4263a9e287733aa8b2429ce8f", size = 6985988, upload-time = "2025-07-01T09:13:55.699Z" }, - { url = "https://files.pythonhosted.org/packages/9f/28/4f4a0203165eefb3763939c6789ba31013a2e90adffb456610f30f613850/pillow-11.3.0-cp310-cp310-win_arm64.whl", hash = "sha256:819931d25e57b513242859ce1876c58c59dc31587847bf74cfe06b2e0cb22d2f", size = 2422899, upload-time = "2025-07-01T09:13:57.497Z" }, - { url = "https://files.pythonhosted.org/packages/db/26/77f8ed17ca4ffd60e1dcd220a6ec6d71210ba398cfa33a13a1cd614c5613/pillow-11.3.0-cp311-cp311-macosx_10_10_x86_64.whl", hash = "sha256:1cd110edf822773368b396281a2293aeb91c90a2db00d78ea43e7e861631b722", size = 5316531, upload-time = "2025-07-01T09:13:59.203Z" }, - { url = "https://files.pythonhosted.org/packages/cb/39/ee475903197ce709322a17a866892efb560f57900d9af2e55f86db51b0a5/pillow-11.3.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:9c412fddd1b77a75aa904615ebaa6001f169b26fd467b4be93aded278266b288", size = 4686560, upload-time = "2025-07-01T09:14:01.101Z" }, - { url = "https://files.pythonhosted.org/packages/d5/90/442068a160fd179938ba55ec8c97050a612426fae5ec0a764e345839f76d/pillow-11.3.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:7d1aa4de119a0ecac0a34a9c8bde33f34022e2e8f99104e47a3ca392fd60e37d", size = 5870978, upload-time = "2025-07-03T13:09:55.638Z" }, - { url = "https://files.pythonhosted.org/packages/13/92/dcdd147ab02daf405387f0218dcf792dc6dd5b14d2573d40b4caeef01059/pillow-11.3.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:91da1d88226663594e3f6b4b8c3c8d85bd504117d043740a8e0ec449087cc494", size = 7641168, upload-time = "2025-07-03T13:10:00.37Z" }, - { url = "https://files.pythonhosted.org/packages/6e/db/839d6ba7fd38b51af641aa904e2960e7a5644d60ec754c046b7d2aee00e5/pillow-11.3.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:643f189248837533073c405ec2f0bb250ba54598cf80e8c1e043381a60632f58", size = 5973053, upload-time = "2025-07-01T09:14:04.491Z" }, - { url = "https://files.pythonhosted.org/packages/f2/2f/d7675ecae6c43e9f12aa8d58b6012683b20b6edfbdac7abcb4e6af7a3784/pillow-11.3.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:106064daa23a745510dabce1d84f29137a37224831d88eb4ce94bb187b1d7e5f", size = 6640273, upload-time = "2025-07-01T09:14:06.235Z" }, - { url = "https://files.pythonhosted.org/packages/45/ad/931694675ede172e15b2ff03c8144a0ddaea1d87adb72bb07655eaffb654/pillow-11.3.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:cd8ff254faf15591e724dc7c4ddb6bf4793efcbe13802a4ae3e863cd300b493e", size = 6082043, upload-time = "2025-07-01T09:14:07.978Z" }, - { url = "https://files.pythonhosted.org/packages/3a/04/ba8f2b11fc80d2dd462d7abec16351b45ec99cbbaea4387648a44190351a/pillow-11.3.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:932c754c2d51ad2b2271fd01c3d121daaa35e27efae2a616f77bf164bc0b3e94", size = 6715516, upload-time = "2025-07-01T09:14:10.233Z" }, - { url = "https://files.pythonhosted.org/packages/48/59/8cd06d7f3944cc7d892e8533c56b0acb68399f640786313275faec1e3b6f/pillow-11.3.0-cp311-cp311-win32.whl", hash = "sha256:b4b8f3efc8d530a1544e5962bd6b403d5f7fe8b9e08227c6b255f98ad82b4ba0", size = 6274768, upload-time = "2025-07-01T09:14:11.921Z" }, - { url = "https://files.pythonhosted.org/packages/f1/cc/29c0f5d64ab8eae20f3232da8f8571660aa0ab4b8f1331da5c2f5f9a938e/pillow-11.3.0-cp311-cp311-win_amd64.whl", hash = "sha256:1a992e86b0dd7aeb1f053cd506508c0999d710a8f07b4c791c63843fc6a807ac", size = 6986055, upload-time = "2025-07-01T09:14:13.623Z" }, - { url = "https://files.pythonhosted.org/packages/c6/df/90bd886fabd544c25addd63e5ca6932c86f2b701d5da6c7839387a076b4a/pillow-11.3.0-cp311-cp311-win_arm64.whl", hash = "sha256:30807c931ff7c095620fe04448e2c2fc673fcbb1ffe2a7da3fb39613489b1ddd", size = 2423079, upload-time = "2025-07-01T09:14:15.268Z" }, - { url = "https://files.pythonhosted.org/packages/40/fe/1bc9b3ee13f68487a99ac9529968035cca2f0a51ec36892060edcc51d06a/pillow-11.3.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:fdae223722da47b024b867c1ea0be64e0df702c5e0a60e27daad39bf960dd1e4", size = 5278800, upload-time = "2025-07-01T09:14:17.648Z" }, - { url = "https://files.pythonhosted.org/packages/2c/32/7e2ac19b5713657384cec55f89065fb306b06af008cfd87e572035b27119/pillow-11.3.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:921bd305b10e82b4d1f5e802b6850677f965d8394203d182f078873851dada69", size = 4686296, upload-time = "2025-07-01T09:14:19.828Z" }, - { url = "https://files.pythonhosted.org/packages/8e/1e/b9e12bbe6e4c2220effebc09ea0923a07a6da1e1f1bfbc8d7d29a01ce32b/pillow-11.3.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:eb76541cba2f958032d79d143b98a3a6b3ea87f0959bbe256c0b5e416599fd5d", size = 5871726, upload-time = "2025-07-03T13:10:04.448Z" }, - { url = "https://files.pythonhosted.org/packages/8d/33/e9200d2bd7ba00dc3ddb78df1198a6e80d7669cce6c2bdbeb2530a74ec58/pillow-11.3.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:67172f2944ebba3d4a7b54f2e95c786a3a50c21b88456329314caaa28cda70f6", size = 7644652, upload-time = "2025-07-03T13:10:10.391Z" }, - { url = "https://files.pythonhosted.org/packages/41/f1/6f2427a26fc683e00d985bc391bdd76d8dd4e92fac33d841127eb8fb2313/pillow-11.3.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:97f07ed9f56a3b9b5f49d3661dc9607484e85c67e27f3e8be2c7d28ca032fec7", size = 5977787, upload-time = "2025-07-01T09:14:21.63Z" }, - { url = "https://files.pythonhosted.org/packages/e4/c9/06dd4a38974e24f932ff5f98ea3c546ce3f8c995d3f0985f8e5ba48bba19/pillow-11.3.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:676b2815362456b5b3216b4fd5bd89d362100dc6f4945154ff172e206a22c024", size = 6645236, upload-time = "2025-07-01T09:14:23.321Z" }, - { url = "https://files.pythonhosted.org/packages/40/e7/848f69fb79843b3d91241bad658e9c14f39a32f71a301bcd1d139416d1be/pillow-11.3.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:3e184b2f26ff146363dd07bde8b711833d7b0202e27d13540bfe2e35a323a809", size = 6086950, upload-time = "2025-07-01T09:14:25.237Z" }, - { url = "https://files.pythonhosted.org/packages/0b/1a/7cff92e695a2a29ac1958c2a0fe4c0b2393b60aac13b04a4fe2735cad52d/pillow-11.3.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:6be31e3fc9a621e071bc17bb7de63b85cbe0bfae91bb0363c893cbe67247780d", size = 6723358, upload-time = "2025-07-01T09:14:27.053Z" }, - { url = "https://files.pythonhosted.org/packages/26/7d/73699ad77895f69edff76b0f332acc3d497f22f5d75e5360f78cbcaff248/pillow-11.3.0-cp312-cp312-win32.whl", hash = "sha256:7b161756381f0918e05e7cb8a371fff367e807770f8fe92ecb20d905d0e1c149", size = 6275079, upload-time = "2025-07-01T09:14:30.104Z" }, - { url = "https://files.pythonhosted.org/packages/8c/ce/e7dfc873bdd9828f3b6e5c2bbb74e47a98ec23cc5c74fc4e54462f0d9204/pillow-11.3.0-cp312-cp312-win_amd64.whl", hash = "sha256:a6444696fce635783440b7f7a9fc24b3ad10a9ea3f0ab66c5905be1c19ccf17d", size = 6986324, upload-time = "2025-07-01T09:14:31.899Z" }, - { url = "https://files.pythonhosted.org/packages/16/8f/b13447d1bf0b1f7467ce7d86f6e6edf66c0ad7cf44cf5c87a37f9bed9936/pillow-11.3.0-cp312-cp312-win_arm64.whl", hash = "sha256:2aceea54f957dd4448264f9bf40875da0415c83eb85f55069d89c0ed436e3542", size = 2423067, upload-time = "2025-07-01T09:14:33.709Z" }, - { url = "https://files.pythonhosted.org/packages/1e/93/0952f2ed8db3a5a4c7a11f91965d6184ebc8cd7cbb7941a260d5f018cd2d/pillow-11.3.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl", hash = "sha256:1c627742b539bba4309df89171356fcb3cc5a9178355b2727d1b74a6cf155fbd", size = 2128328, upload-time = "2025-07-01T09:14:35.276Z" }, - { url = "https://files.pythonhosted.org/packages/4b/e8/100c3d114b1a0bf4042f27e0f87d2f25e857e838034e98ca98fe7b8c0a9c/pillow-11.3.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl", hash = "sha256:30b7c02f3899d10f13d7a48163c8969e4e653f8b43416d23d13d1bbfdc93b9f8", size = 2170652, upload-time = "2025-07-01T09:14:37.203Z" }, - { url = "https://files.pythonhosted.org/packages/aa/86/3f758a28a6e381758545f7cdb4942e1cb79abd271bea932998fc0db93cb6/pillow-11.3.0-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl", hash = "sha256:7859a4cc7c9295f5838015d8cc0a9c215b77e43d07a25e460f35cf516df8626f", size = 2227443, upload-time = "2025-07-01T09:14:39.344Z" }, - { url = "https://files.pythonhosted.org/packages/01/f4/91d5b3ffa718df2f53b0dc109877993e511f4fd055d7e9508682e8aba092/pillow-11.3.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:ec1ee50470b0d050984394423d96325b744d55c701a439d2bd66089bff963d3c", size = 5278474, upload-time = "2025-07-01T09:14:41.843Z" }, - { url = "https://files.pythonhosted.org/packages/f9/0e/37d7d3eca6c879fbd9dba21268427dffda1ab00d4eb05b32923d4fbe3b12/pillow-11.3.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:7db51d222548ccfd274e4572fdbf3e810a5e66b00608862f947b163e613b67dd", size = 4686038, upload-time = "2025-07-01T09:14:44.008Z" }, - { url = "https://files.pythonhosted.org/packages/ff/b0/3426e5c7f6565e752d81221af9d3676fdbb4f352317ceafd42899aaf5d8a/pillow-11.3.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:2d6fcc902a24ac74495df63faad1884282239265c6839a0a6416d33faedfae7e", size = 5864407, upload-time = "2025-07-03T13:10:15.628Z" }, - { url = "https://files.pythonhosted.org/packages/fc/c1/c6c423134229f2a221ee53f838d4be9d82bab86f7e2f8e75e47b6bf6cd77/pillow-11.3.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:f0f5d8f4a08090c6d6d578351a2b91acf519a54986c055af27e7a93feae6d3f1", size = 7639094, upload-time = "2025-07-03T13:10:21.857Z" }, - { url = "https://files.pythonhosted.org/packages/ba/c9/09e6746630fe6372c67c648ff9deae52a2bc20897d51fa293571977ceb5d/pillow-11.3.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c37d8ba9411d6003bba9e518db0db0c58a680ab9fe5179f040b0463644bc9805", size = 5973503, upload-time = "2025-07-01T09:14:45.698Z" }, - { url = "https://files.pythonhosted.org/packages/d5/1c/a2a29649c0b1983d3ef57ee87a66487fdeb45132df66ab30dd37f7dbe162/pillow-11.3.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:13f87d581e71d9189ab21fe0efb5a23e9f28552d5be6979e84001d3b8505abe8", size = 6642574, upload-time = "2025-07-01T09:14:47.415Z" }, - { url = "https://files.pythonhosted.org/packages/36/de/d5cc31cc4b055b6c6fd990e3e7f0f8aaf36229a2698501bcb0cdf67c7146/pillow-11.3.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:023f6d2d11784a465f09fd09a34b150ea4672e85fb3d05931d89f373ab14abb2", size = 6084060, upload-time = "2025-07-01T09:14:49.636Z" }, - { url = "https://files.pythonhosted.org/packages/d5/ea/502d938cbaeec836ac28a9b730193716f0114c41325db428e6b280513f09/pillow-11.3.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:45dfc51ac5975b938e9809451c51734124e73b04d0f0ac621649821a63852e7b", size = 6721407, upload-time = "2025-07-01T09:14:51.962Z" }, - { url = "https://files.pythonhosted.org/packages/45/9c/9c5e2a73f125f6cbc59cc7087c8f2d649a7ae453f83bd0362ff7c9e2aee2/pillow-11.3.0-cp313-cp313-win32.whl", hash = "sha256:a4d336baed65d50d37b88ca5b60c0fa9d81e3a87d4a7930d3880d1624d5b31f3", size = 6273841, upload-time = "2025-07-01T09:14:54.142Z" }, - { url = "https://files.pythonhosted.org/packages/23/85/397c73524e0cd212067e0c969aa245b01d50183439550d24d9f55781b776/pillow-11.3.0-cp313-cp313-win_amd64.whl", hash = "sha256:0bce5c4fd0921f99d2e858dc4d4d64193407e1b99478bc5cacecba2311abde51", size = 6978450, upload-time = "2025-07-01T09:14:56.436Z" }, - { url = "https://files.pythonhosted.org/packages/17/d2/622f4547f69cd173955194b78e4d19ca4935a1b0f03a302d655c9f6aae65/pillow-11.3.0-cp313-cp313-win_arm64.whl", hash = "sha256:1904e1264881f682f02b7f8167935cce37bc97db457f8e7849dc3a6a52b99580", size = 2423055, upload-time = "2025-07-01T09:14:58.072Z" }, - { url = "https://files.pythonhosted.org/packages/dd/80/a8a2ac21dda2e82480852978416cfacd439a4b490a501a288ecf4fe2532d/pillow-11.3.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:4c834a3921375c48ee6b9624061076bc0a32a60b5532b322cc0ea64e639dd50e", size = 5281110, upload-time = "2025-07-01T09:14:59.79Z" }, - { url = "https://files.pythonhosted.org/packages/44/d6/b79754ca790f315918732e18f82a8146d33bcd7f4494380457ea89eb883d/pillow-11.3.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:5e05688ccef30ea69b9317a9ead994b93975104a677a36a8ed8106be9260aa6d", size = 4689547, upload-time = "2025-07-01T09:15:01.648Z" }, - { url = "https://files.pythonhosted.org/packages/49/20/716b8717d331150cb00f7fdd78169c01e8e0c219732a78b0e59b6bdb2fd6/pillow-11.3.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:1019b04af07fc0163e2810167918cb5add8d74674b6267616021ab558dc98ced", size = 5901554, upload-time = "2025-07-03T13:10:27.018Z" }, - { url = "https://files.pythonhosted.org/packages/74/cf/a9f3a2514a65bb071075063a96f0a5cf949c2f2fce683c15ccc83b1c1cab/pillow-11.3.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:f944255db153ebb2b19c51fe85dd99ef0ce494123f21b9db4877ffdfc5590c7c", size = 7669132, upload-time = "2025-07-03T13:10:33.01Z" }, - { url = "https://files.pythonhosted.org/packages/98/3c/da78805cbdbee9cb43efe8261dd7cc0b4b93f2ac79b676c03159e9db2187/pillow-11.3.0-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1f85acb69adf2aaee8b7da124efebbdb959a104db34d3a2cb0f3793dbae422a8", size = 6005001, upload-time = "2025-07-01T09:15:03.365Z" }, - { url = "https://files.pythonhosted.org/packages/6c/fa/ce044b91faecf30e635321351bba32bab5a7e034c60187fe9698191aef4f/pillow-11.3.0-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:05f6ecbeff5005399bb48d198f098a9b4b6bdf27b8487c7f38ca16eeb070cd59", size = 6668814, upload-time = "2025-07-01T09:15:05.655Z" }, - { url = "https://files.pythonhosted.org/packages/7b/51/90f9291406d09bf93686434f9183aba27b831c10c87746ff49f127ee80cb/pillow-11.3.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:a7bc6e6fd0395bc052f16b1a8670859964dbd7003bd0af2ff08342eb6e442cfe", size = 6113124, upload-time = "2025-07-01T09:15:07.358Z" }, - { url = "https://files.pythonhosted.org/packages/cd/5a/6fec59b1dfb619234f7636d4157d11fb4e196caeee220232a8d2ec48488d/pillow-11.3.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:83e1b0161c9d148125083a35c1c5a89db5b7054834fd4387499e06552035236c", size = 6747186, upload-time = "2025-07-01T09:15:09.317Z" }, - { url = "https://files.pythonhosted.org/packages/49/6b/00187a044f98255225f172de653941e61da37104a9ea60e4f6887717e2b5/pillow-11.3.0-cp313-cp313t-win32.whl", hash = "sha256:2a3117c06b8fb646639dce83694f2f9eac405472713fcb1ae887469c0d4f6788", size = 6277546, upload-time = "2025-07-01T09:15:11.311Z" }, - { url = "https://files.pythonhosted.org/packages/e8/5c/6caaba7e261c0d75bab23be79f1d06b5ad2a2ae49f028ccec801b0e853d6/pillow-11.3.0-cp313-cp313t-win_amd64.whl", hash = "sha256:857844335c95bea93fb39e0fa2726b4d9d758850b34075a7e3ff4f4fa3aa3b31", size = 6985102, upload-time = "2025-07-01T09:15:13.164Z" }, - { url = "https://files.pythonhosted.org/packages/f3/7e/b623008460c09a0cb38263c93b828c666493caee2eb34ff67f778b87e58c/pillow-11.3.0-cp313-cp313t-win_arm64.whl", hash = "sha256:8797edc41f3e8536ae4b10897ee2f637235c94f27404cac7297f7b607dd0716e", size = 2424803, upload-time = "2025-07-01T09:15:15.695Z" }, - { url = "https://files.pythonhosted.org/packages/9e/8e/9c089f01677d1264ab8648352dcb7773f37da6ad002542760c80107da816/pillow-11.3.0-cp39-cp39-macosx_10_10_x86_64.whl", hash = "sha256:48d254f8a4c776de343051023eb61ffe818299eeac478da55227d96e241de53f", size = 5316478, upload-time = "2025-07-01T09:15:52.209Z" }, - { url = "https://files.pythonhosted.org/packages/b5/a9/5749930caf674695867eb56a581e78eb5f524b7583ff10b01b6e5048acb3/pillow-11.3.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:7aee118e30a4cf54fdd873bd3a29de51e29105ab11f9aad8c32123f58c8f8081", size = 4686522, upload-time = "2025-07-01T09:15:54.162Z" }, - { url = "https://files.pythonhosted.org/packages/43/46/0b85b763eb292b691030795f9f6bb6fcaf8948c39413c81696a01c3577f7/pillow-11.3.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:23cff760a9049c502721bdb743a7cb3e03365fafcdfc2ef9784610714166e5a4", size = 5853376, upload-time = "2025-07-03T13:11:01.066Z" }, - { url = "https://files.pythonhosted.org/packages/5e/c6/1a230ec0067243cbd60bc2dad5dc3ab46a8a41e21c15f5c9b52b26873069/pillow-11.3.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:6359a3bc43f57d5b375d1ad54a0074318a0844d11b76abccf478c37c986d3cfc", size = 7626020, upload-time = "2025-07-03T13:11:06.479Z" }, - { url = "https://files.pythonhosted.org/packages/63/dd/f296c27ffba447bfad76c6a0c44c1ea97a90cb9472b9304c94a732e8dbfb/pillow-11.3.0-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:092c80c76635f5ecb10f3f83d76716165c96f5229addbd1ec2bdbbda7d496e06", size = 5956732, upload-time = "2025-07-01T09:15:56.111Z" }, - { url = "https://files.pythonhosted.org/packages/a5/a0/98a3630f0b57f77bae67716562513d3032ae70414fcaf02750279c389a9e/pillow-11.3.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:cadc9e0ea0a2431124cde7e1697106471fc4c1da01530e679b2391c37d3fbb3a", size = 6624404, upload-time = "2025-07-01T09:15:58.245Z" }, - { url = "https://files.pythonhosted.org/packages/de/e6/83dfba5646a290edd9a21964da07674409e410579c341fc5b8f7abd81620/pillow-11.3.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:6a418691000f2a418c9135a7cf0d797c1bb7d9a485e61fe8e7722845b95ef978", size = 6067760, upload-time = "2025-07-01T09:16:00.003Z" }, - { url = "https://files.pythonhosted.org/packages/bc/41/15ab268fe6ee9a2bc7391e2bbb20a98d3974304ab1a406a992dcb297a370/pillow-11.3.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:97afb3a00b65cc0804d1c7abddbf090a81eaac02768af58cbdcaaa0a931e0b6d", size = 6700534, upload-time = "2025-07-01T09:16:02.29Z" }, - { url = "https://files.pythonhosted.org/packages/64/79/6d4f638b288300bed727ff29f2a3cb63db054b33518a95f27724915e3fbc/pillow-11.3.0-cp39-cp39-win32.whl", hash = "sha256:ea944117a7974ae78059fcc1800e5d3295172bb97035c0c1d9345fca1419da71", size = 6277091, upload-time = "2025-07-01T09:16:04.4Z" }, - { url = "https://files.pythonhosted.org/packages/46/05/4106422f45a05716fd34ed21763f8ec182e8ea00af6e9cb05b93a247361a/pillow-11.3.0-cp39-cp39-win_amd64.whl", hash = "sha256:e5c5858ad8ec655450a7c7df532e9842cf8df7cc349df7225c60d5d348c8aada", size = 6986091, upload-time = "2025-07-01T09:16:06.342Z" }, - { url = "https://files.pythonhosted.org/packages/63/c6/287fd55c2c12761d0591549d48885187579b7c257bef0c6660755b0b59ae/pillow-11.3.0-cp39-cp39-win_arm64.whl", hash = "sha256:6abdbfd3aea42be05702a8dd98832329c167ee84400a1d1f61ab11437f1717eb", size = 2422632, upload-time = "2025-07-01T09:16:08.142Z" }, - { url = "https://files.pythonhosted.org/packages/6f/8b/209bd6b62ce8367f47e68a218bffac88888fdf2c9fcf1ecadc6c3ec1ebc7/pillow-11.3.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:3cee80663f29e3843b68199b9d6f4f54bd1d4a6b59bdd91bceefc51238bcb967", size = 5270556, upload-time = "2025-07-01T09:16:09.961Z" }, - { url = "https://files.pythonhosted.org/packages/2e/e6/231a0b76070c2cfd9e260a7a5b504fb72da0a95279410fa7afd99d9751d6/pillow-11.3.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:b5f56c3f344f2ccaf0dd875d3e180f631dc60a51b314295a3e681fe8cf851fbe", size = 4654625, upload-time = "2025-07-01T09:16:11.913Z" }, - { url = "https://files.pythonhosted.org/packages/13/f4/10cf94fda33cb12765f2397fc285fa6d8eb9c29de7f3185165b702fc7386/pillow-11.3.0-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:e67d793d180c9df62f1f40aee3accca4829d3794c95098887edc18af4b8b780c", size = 4874207, upload-time = "2025-07-03T13:11:10.201Z" }, - { url = "https://files.pythonhosted.org/packages/72/c9/583821097dc691880c92892e8e2d41fe0a5a3d6021f4963371d2f6d57250/pillow-11.3.0-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:d000f46e2917c705e9fb93a3606ee4a819d1e3aa7a9b442f6444f07e77cf5e25", size = 6583939, upload-time = "2025-07-03T13:11:15.68Z" }, - { url = "https://files.pythonhosted.org/packages/3b/8e/5c9d410f9217b12320efc7c413e72693f48468979a013ad17fd690397b9a/pillow-11.3.0-pp310-pypy310_pp73-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:527b37216b6ac3a12d7838dc3bd75208ec57c1c6d11ef01902266a5a0c14fc27", size = 4957166, upload-time = "2025-07-01T09:16:13.74Z" }, - { url = "https://files.pythonhosted.org/packages/62/bb/78347dbe13219991877ffb3a91bf09da8317fbfcd4b5f9140aeae020ad71/pillow-11.3.0-pp310-pypy310_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:be5463ac478b623b9dd3937afd7fb7ab3d79dd290a28e2b6df292dc75063eb8a", size = 5581482, upload-time = "2025-07-01T09:16:16.107Z" }, - { url = "https://files.pythonhosted.org/packages/d9/28/1000353d5e61498aaeaaf7f1e4b49ddb05f2c6575f9d4f9f914a3538b6e1/pillow-11.3.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:8dc70ca24c110503e16918a658b869019126ecfe03109b754c402daff12b3d9f", size = 6984596, upload-time = "2025-07-01T09:16:18.07Z" }, - { url = "https://files.pythonhosted.org/packages/9e/e3/6fa84033758276fb31da12e5fb66ad747ae83b93c67af17f8c6ff4cc8f34/pillow-11.3.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl", hash = "sha256:7c8ec7a017ad1bd562f93dbd8505763e688d388cde6e4a010ae1486916e713e6", size = 5270566, upload-time = "2025-07-01T09:16:19.801Z" }, - { url = "https://files.pythonhosted.org/packages/5b/ee/e8d2e1ab4892970b561e1ba96cbd59c0d28cf66737fc44abb2aec3795a4e/pillow-11.3.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:9ab6ae226de48019caa8074894544af5b53a117ccb9d3b3dcb2871464c829438", size = 4654618, upload-time = "2025-07-01T09:16:21.818Z" }, - { url = "https://files.pythonhosted.org/packages/f2/6d/17f80f4e1f0761f02160fc433abd4109fa1548dcfdca46cfdadaf9efa565/pillow-11.3.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:fe27fb049cdcca11f11a7bfda64043c37b30e6b91f10cb5bab275806c32f6ab3", size = 4874248, upload-time = "2025-07-03T13:11:20.738Z" }, - { url = "https://files.pythonhosted.org/packages/de/5f/c22340acd61cef960130585bbe2120e2fd8434c214802f07e8c03596b17e/pillow-11.3.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:465b9e8844e3c3519a983d58b80be3f668e2a7a5db97f2784e7079fbc9f9822c", size = 6583963, upload-time = "2025-07-03T13:11:26.283Z" }, - { url = "https://files.pythonhosted.org/packages/31/5e/03966aedfbfcbb4d5f8aa042452d3361f325b963ebbadddac05b122e47dd/pillow-11.3.0-pp311-pypy311_pp73-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5418b53c0d59b3824d05e029669efa023bbef0f3e92e75ec8428f3799487f361", size = 4957170, upload-time = "2025-07-01T09:16:23.762Z" }, - { url = "https://files.pythonhosted.org/packages/cc/2d/e082982aacc927fc2cab48e1e731bdb1643a1406acace8bed0900a61464e/pillow-11.3.0-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:504b6f59505f08ae014f724b6207ff6222662aab5cc9542577fb084ed0676ac7", size = 5581505, upload-time = "2025-07-01T09:16:25.593Z" }, - { url = "https://files.pythonhosted.org/packages/34/e7/ae39f538fd6844e982063c3a5e4598b8ced43b9633baa3a85ef33af8c05c/pillow-11.3.0-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:c84d689db21a1c397d001aa08241044aa2069e7587b398c8cc63020390b1c1b8", size = 6984598, upload-time = "2025-07-01T09:16:27.732Z" }, -] - [[package]] name = "pillow" version = "12.1.1" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.11.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.10.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.11.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.10.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", -] sdist = { url = "https://files.pythonhosted.org/packages/1f/42/5c74462b4fd957fcd7b13b04fb3205ff8349236ea74c7c375766d6c82288/pillow-12.1.1.tar.gz", hash = "sha256:9ad8fa5937ab05218e2b6a4cff30295ad35afd2f83ac592e68c0d871bb0fdbc4", size = 46980264, upload-time = "2026-02-11T04:23:07.146Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/1d/30/5bd3d794762481f8c8ae9c80e7b76ecea73b916959eb587521358ef0b2f9/pillow-12.1.1-cp310-cp310-macosx_10_10_x86_64.whl", hash = "sha256:1f1625b72740fdda5d77b4def688eb8fd6490975d06b909fd19f13f391e077e0", size = 5304099, upload-time = "2026-02-11T04:20:06.13Z" }, - { url = "https://files.pythonhosted.org/packages/bd/c1/aab9e8f3eeb4490180e357955e15c2ef74b31f64790ff356c06fb6cf6d84/pillow-12.1.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:178aa072084bd88ec759052feca8e56cbb14a60b39322b99a049e58090479713", size = 4657880, upload-time = "2026-02-11T04:20:09.291Z" }, - { url = "https://files.pythonhosted.org/packages/f1/0a/9879e30d56815ad529d3985aeff5af4964202425c27261a6ada10f7cbf53/pillow-12.1.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:b66e95d05ba806247aaa1561f080abc7975daf715c30780ff92a20e4ec546e1b", size = 6222587, upload-time = "2026-02-11T04:20:10.82Z" }, - { url = "https://files.pythonhosted.org/packages/5a/5f/a1b72ff7139e4f89014e8d451442c74a774d5c43cd938fb0a9f878576b37/pillow-12.1.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:89c7e895002bbe49cdc5426150377cbbc04767d7547ed145473f496dfa40408b", size = 8027678, upload-time = "2026-02-11T04:20:12.455Z" }, - { url = "https://files.pythonhosted.org/packages/e2/c2/c7cb187dac79a3d22c3ebeae727abee01e077c8c7d930791dc592f335153/pillow-12.1.1-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:3a5cbdcddad0af3da87cb16b60d23648bc3b51967eb07223e9fed77a82b457c4", size = 6335777, upload-time = "2026-02-11T04:20:14.441Z" }, - { url = "https://files.pythonhosted.org/packages/0c/7b/f9b09a7804ec7336effb96c26d37c29d27225783dc1501b7d62dcef6ae25/pillow-12.1.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:9f51079765661884a486727f0729d29054242f74b46186026582b4e4769918e4", size = 7027140, upload-time = "2026-02-11T04:20:16.387Z" }, - { url = "https://files.pythonhosted.org/packages/98/b2/2fa3c391550bd421b10849d1a2144c44abcd966daadd2f7c12e19ea988c4/pillow-12.1.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:99c1506ea77c11531d75e3a412832a13a71c7ebc8192ab9e4b2e355555920e3e", size = 6449855, upload-time = "2026-02-11T04:20:18.554Z" }, - { url = "https://files.pythonhosted.org/packages/96/ff/9caf4b5b950c669263c39e96c78c0d74a342c71c4f43fd031bb5cb7ceac9/pillow-12.1.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:36341d06738a9f66c8287cf8b876d24b18db9bd8740fa0672c74e259ad408cff", size = 7151329, upload-time = "2026-02-11T04:20:20.646Z" }, - { url = "https://files.pythonhosted.org/packages/7b/f8/4b24841f582704da675ca535935bccb32b00a6da1226820845fac4a71136/pillow-12.1.1-cp310-cp310-win32.whl", hash = "sha256:6c52f062424c523d6c4db85518774cc3d50f5539dd6eed32b8f6229b26f24d40", size = 6325574, upload-time = "2026-02-11T04:20:22.43Z" }, - { url = "https://files.pythonhosted.org/packages/f8/f9/9f6b01c0881d7036063aa6612ef04c0e2cad96be21325a1e92d0203f8e91/pillow-12.1.1-cp310-cp310-win_amd64.whl", hash = "sha256:c6008de247150668a705a6338156efb92334113421ceecf7438a12c9a12dab23", size = 7032347, upload-time = "2026-02-11T04:20:23.932Z" }, - { url = "https://files.pythonhosted.org/packages/79/13/c7922edded3dcdaf10c59297540b72785620abc0538872c819915746757d/pillow-12.1.1-cp310-cp310-win_arm64.whl", hash = "sha256:1a9b0ee305220b392e1124a764ee4265bd063e54a751a6b62eff69992f457fa9", size = 2453457, upload-time = "2026-02-11T04:20:25.392Z" }, { url = "https://files.pythonhosted.org/packages/2b/46/5da1ec4a5171ee7bf1a0efa064aba70ba3d6e0788ce3f5acd1375d23c8c0/pillow-12.1.1-cp311-cp311-macosx_10_10_x86_64.whl", hash = "sha256:e879bb6cd5c73848ef3b2b48b8af9ff08c5b71ecda8048b7dd22d8a33f60be32", size = 5304084, upload-time = "2026-02-11T04:20:27.501Z" }, { url = "https://files.pythonhosted.org/packages/78/93/a29e9bc02d1cf557a834da780ceccd54e02421627200696fcf805ebdc3fb/pillow-12.1.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:365b10bb9417dd4498c0e3b128018c4a624dc11c7b97d8cc54effe3b096f4c38", size = 4657866, upload-time = "2026-02-11T04:20:29.827Z" }, { url = "https://files.pythonhosted.org/packages/13/84/583a4558d492a179d31e4aae32eadce94b9acf49c0337c4ce0b70e0a01f2/pillow-12.1.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:d4ce8e329c93845720cd2014659ca67eac35f6433fd3050393d85f3ecef0dad5", size = 6232148, upload-time = "2026-02-11T04:20:31.329Z" }, @@ -6588,113 +3159,10 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/f2/26/c56ce33ca856e358d27fda9676c055395abddb82c35ac0f593877ed4562e/pillow-12.1.1-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:cb9bb857b2d057c6dfc72ac5f3b44836924ba15721882ef103cecb40d002d80e", size = 7029880, upload-time = "2026-02-11T04:23:04.783Z" }, ] -[[package]] -name = "platformdirs" -version = "4.4.0" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", -] -sdist = { url = "https://files.pythonhosted.org/packages/23/e8/21db9c9987b0e728855bd57bff6984f67952bea55d6f75e055c46b5383e8/platformdirs-4.4.0.tar.gz", hash = "sha256:ca753cf4d81dc309bc67b0ea38fd15dc97bc30ce419a7f58d13eb3bf14c4febf", size = 21634, upload-time = "2025-08-26T14:32:04.268Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/40/4b/2028861e724d3bd36227adfa20d3fd24c3fc6d52032f4a93c133be5d17ce/platformdirs-4.4.0-py3-none-any.whl", hash = "sha256:abd01743f24e5287cd7a5db3752faf1a2d65353f38ec26d98e25a6db65958c85", size = 18654, upload-time = "2025-08-26T14:32:02.735Z" }, -] - [[package]] name = "platformdirs" version = "4.9.2" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.11.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.10.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.11.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.10.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", -] sdist = { url = "https://files.pythonhosted.org/packages/1b/04/fea538adf7dbbd6d186f551d595961e564a3b6715bdf276b477460858672/platformdirs-4.9.2.tar.gz", hash = "sha256:9a33809944b9db043ad67ca0db94b14bf452cc6aeaac46a88ea55b26e2e9d291", size = 28394, upload-time = "2026-02-16T03:56:10.574Z" } wheels = [ { url = "https://files.pythonhosted.org/packages/48/31/05e764397056194206169869b50cf2fee4dbbbc71b344705b9c0d878d4d8/platformdirs-4.9.2-py3-none-any.whl", hash = "sha256:9170634f126f8efdae22fb58ae8a0eaa86f38365bc57897a6c4f781d1f5875bd", size = 21168, upload-time = "2026-02-16T03:56:08.891Z" }, @@ -6715,8 +3183,7 @@ version = "1.9.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "packaging" }, - { name = "platformdirs", version = "4.4.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "platformdirs", version = "4.9.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "platformdirs" }, { name = "requests" }, ] sdist = { url = "https://files.pythonhosted.org/packages/83/43/85ef45e8b36c6a48546af7b266592dc32d7f67837a6514d111bced6d7d75/pooch-1.9.0.tar.gz", hash = "sha256:de46729579b9857ffd3e741987a2f6d5e0e03219892c167c6578c0091fb511ed", size = 61788, upload-time = "2026-01-30T19:15:09.649Z" } @@ -6724,118 +3191,12 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/2a/2d/d4bf65e47cea8ff2c794a600c4fd1273a7902f268757c531e0ee9f18aa58/pooch-1.9.0-py3-none-any.whl", hash = "sha256:f265597baa9f760d25ceb29d0beb8186c243d6607b0f60b83ecf14078dbc703b", size = 67175, upload-time = "2026-01-30T19:15:08.36Z" }, ] -[[package]] -name = "prettytable" -version = "3.16.0" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", -] -dependencies = [ - { name = "wcwidth", marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/99/b1/85e18ac92afd08c533603e3393977b6bc1443043115a47bb094f3b98f94f/prettytable-3.16.0.tar.gz", hash = "sha256:3c64b31719d961bf69c9a7e03d0c1e477320906a98da63952bc6698d6164ff57", size = 66276, upload-time = "2025-03-24T19:39:04.008Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/02/c7/5613524e606ea1688b3bdbf48aa64bafb6d0a4ac3750274c43b6158a390f/prettytable-3.16.0-py3-none-any.whl", hash = "sha256:b5eccfabb82222f5aa46b798ff02a8452cf530a352c31bddfa29be41242863aa", size = 33863, upload-time = "2025-03-24T19:39:02.359Z" }, -] - [[package]] name = "prettytable" version = "3.17.0" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.11.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.10.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.11.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.10.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", -] dependencies = [ - { name = "wcwidth", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "wcwidth" }, ] sdist = { url = "https://files.pythonhosted.org/packages/79/45/b0847d88d6cfeb4413566738c8bbf1e1995fad3d42515327ff32cc1eb578/prettytable-3.17.0.tar.gz", hash = "sha256:59f2590776527f3c9e8cf9fe7b66dd215837cca96a9c39567414cbc632e8ddb0", size = 67892, upload-time = "2025-11-14T17:33:20.212Z" } wheels = [ @@ -6856,7 +3217,7 @@ name = "prompt-toolkit" version = "3.0.52" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "wcwidth", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "wcwidth" }, ] sdist = { url = "https://files.pythonhosted.org/packages/a1/96/06e01a7b38dce6fe1db213e061a4602dd6032a8a97ef6c1a862537732421/prompt_toolkit-3.0.52.tar.gz", hash = "sha256:28cde192929c8e7321de85de1ddbe736f1375148b02f2e17edd840042b1be855", size = 434198, upload-time = "2025-08-27T15:24:02.057Z" } wheels = [ @@ -6869,21 +3230,6 @@ version = "0.4.1" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/9e/da/e9fc233cf63743258bff22b3dfa7ea5baef7b5bc324af47a0ad89b8ffc6f/propcache-0.4.1.tar.gz", hash = "sha256:f48107a8c637e80362555f37ecf49abe20370e557cc4ab374f04ec4423c97c3d", size = 46442, upload-time = "2025-10-08T19:49:02.291Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/3c/0e/934b541323035566a9af292dba85a195f7b78179114f2c6ebb24551118a9/propcache-0.4.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7c2d1fa3201efaf55d730400d945b5b3ab6e672e100ba0f9a409d950ab25d7db", size = 79534, upload-time = "2025-10-08T19:46:02.083Z" }, - { url = "https://files.pythonhosted.org/packages/a1/6b/db0d03d96726d995dc7171286c6ba9d8d14251f37433890f88368951a44e/propcache-0.4.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:1eb2994229cc8ce7fe9b3db88f5465f5fd8651672840b2e426b88cdb1a30aac8", size = 45526, upload-time = "2025-10-08T19:46:03.884Z" }, - { url = "https://files.pythonhosted.org/packages/e4/c3/82728404aea669e1600f304f2609cde9e665c18df5a11cdd57ed73c1dceb/propcache-0.4.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:66c1f011f45a3b33d7bcb22daed4b29c0c9e2224758b6be00686731e1b46f925", size = 47263, upload-time = "2025-10-08T19:46:05.405Z" }, - { url = "https://files.pythonhosted.org/packages/df/1b/39313ddad2bf9187a1432654c38249bab4562ef535ef07f5eb6eb04d0b1b/propcache-0.4.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:9a52009f2adffe195d0b605c25ec929d26b36ef986ba85244891dee3b294df21", size = 201012, upload-time = "2025-10-08T19:46:07.165Z" }, - { url = "https://files.pythonhosted.org/packages/5b/01/f1d0b57d136f294a142acf97f4ed58c8e5b974c21e543000968357115011/propcache-0.4.1-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:5d4e2366a9c7b837555cf02fb9be2e3167d333aff716332ef1b7c3a142ec40c5", size = 209491, upload-time = "2025-10-08T19:46:08.909Z" }, - { url = "https://files.pythonhosted.org/packages/a1/c8/038d909c61c5bb039070b3fb02ad5cccdb1dde0d714792e251cdb17c9c05/propcache-0.4.1-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:9d2b6caef873b4f09e26ea7e33d65f42b944837563a47a94719cc3544319a0db", size = 215319, upload-time = "2025-10-08T19:46:10.7Z" }, - { url = "https://files.pythonhosted.org/packages/08/57/8c87e93142b2c1fa2408e45695205a7ba05fb5db458c0bf5c06ba0e09ea6/propcache-0.4.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:2b16ec437a8c8a965ecf95739448dd938b5c7f56e67ea009f4300d8df05f32b7", size = 196856, upload-time = "2025-10-08T19:46:12.003Z" }, - { url = "https://files.pythonhosted.org/packages/42/df/5615fec76aa561987a534759b3686008a288e73107faa49a8ae5795a9f7a/propcache-0.4.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:296f4c8ed03ca7476813fe666c9ea97869a8d7aec972618671b33a38a5182ef4", size = 193241, upload-time = "2025-10-08T19:46:13.495Z" }, - { url = "https://files.pythonhosted.org/packages/d5/21/62949eb3a7a54afe8327011c90aca7e03547787a88fb8bd9726806482fea/propcache-0.4.1-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:1f0978529a418ebd1f49dad413a2b68af33f85d5c5ca5c6ca2a3bed375a7ac60", size = 190552, upload-time = "2025-10-08T19:46:14.938Z" }, - { url = "https://files.pythonhosted.org/packages/30/ee/ab4d727dd70806e5b4de96a798ae7ac6e4d42516f030ee60522474b6b332/propcache-0.4.1-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:fd138803047fb4c062b1c1dd95462f5209456bfab55c734458f15d11da288f8f", size = 200113, upload-time = "2025-10-08T19:46:16.695Z" }, - { url = "https://files.pythonhosted.org/packages/8a/0b/38b46208e6711b016aa8966a3ac793eee0d05c7159d8342aa27fc0bc365e/propcache-0.4.1-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:8c9b3cbe4584636d72ff556d9036e0c9317fa27b3ac1f0f558e7e84d1c9c5900", size = 200778, upload-time = "2025-10-08T19:46:18.023Z" }, - { url = "https://files.pythonhosted.org/packages/cf/81/5abec54355ed344476bee711e9f04815d4b00a311ab0535599204eecc257/propcache-0.4.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:f93243fdc5657247533273ac4f86ae106cc6445a0efacb9a1bfe982fcfefd90c", size = 193047, upload-time = "2025-10-08T19:46:19.449Z" }, - { url = "https://files.pythonhosted.org/packages/ec/b6/1f237c04e32063cb034acd5f6ef34ef3a394f75502e72703545631ab1ef6/propcache-0.4.1-cp310-cp310-win32.whl", hash = "sha256:a0ee98db9c5f80785b266eb805016e36058ac72c51a064040f2bc43b61101cdb", size = 38093, upload-time = "2025-10-08T19:46:20.643Z" }, - { url = "https://files.pythonhosted.org/packages/a6/67/354aac4e0603a15f76439caf0427781bcd6797f370377f75a642133bc954/propcache-0.4.1-cp310-cp310-win_amd64.whl", hash = "sha256:1cdb7988c4e5ac7f6d175a28a9aa0c94cb6f2ebe52756a3c0cda98d2809a9e37", size = 41638, upload-time = "2025-10-08T19:46:21.935Z" }, - { url = "https://files.pythonhosted.org/packages/e0/e1/74e55b9fd1a4c209ff1a9a824bf6c8b3d1fc5a1ac3eabe23462637466785/propcache-0.4.1-cp310-cp310-win_arm64.whl", hash = "sha256:d82ad62b19645419fe79dd63b3f9253e15b30e955c0170e5cebc350c1844e581", size = 38229, upload-time = "2025-10-08T19:46:23.368Z" }, { url = "https://files.pythonhosted.org/packages/8c/d4/4e2c9aaf7ac2242b9358f98dccd8f90f2605402f5afeff6c578682c2c491/propcache-0.4.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:60a8fda9644b7dfd5dece8c61d8a85e271cb958075bfc4e01083c148b61a7caf", size = 80208, upload-time = "2025-10-08T19:46:24.597Z" }, { url = "https://files.pythonhosted.org/packages/c2/21/d7b68e911f9c8e18e4ae43bdbc1e1e9bbd971f8866eb81608947b6f585ff/propcache-0.4.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c30b53e7e6bda1d547cabb47c825f3843a0a1a42b0496087bb58d8fedf9f41b5", size = 45777, upload-time = "2025-10-08T19:46:25.733Z" }, { url = "https://files.pythonhosted.org/packages/d3/1d/11605e99ac8ea9435651ee71ab4cb4bf03f0949586246476a25aadfec54a/propcache-0.4.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:6918ecbd897443087a3b7cd978d56546a812517dcaaca51b49526720571fa93e", size = 47647, upload-time = "2025-10-08T19:46:27.304Z" }, @@ -6944,21 +3290,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/92/f7/1d4ec5841505f423469efbfc381d64b7b467438cd5a4bbcbb063f3b73d27/propcache-0.4.1-cp313-cp313t-win32.whl", hash = "sha256:2ad890caa1d928c7c2965b48f3a3815c853180831d0e5503d35cf00c472f4717", size = 41396, upload-time = "2025-10-08T19:47:47.202Z" }, { url = "https://files.pythonhosted.org/packages/48/f0/615c30622316496d2cbbc29f5985f7777d3ada70f23370608c1d3e081c1f/propcache-0.4.1-cp313-cp313t-win_amd64.whl", hash = "sha256:f7ee0e597f495cf415bcbd3da3caa3bd7e816b74d0d52b8145954c5e6fd3ff37", size = 44897, upload-time = "2025-10-08T19:47:48.336Z" }, { url = "https://files.pythonhosted.org/packages/fd/ca/6002e46eccbe0e33dcd4069ef32f7f1c9e243736e07adca37ae8c4830ec3/propcache-0.4.1-cp313-cp313t-win_arm64.whl", hash = "sha256:929d7cbe1f01bb7baffb33dc14eb5691c95831450a26354cd210a8155170c93a", size = 39789, upload-time = "2025-10-08T19:47:49.876Z" }, - { url = "https://files.pythonhosted.org/packages/9b/01/0ebaec9003f5d619a7475165961f8e3083cf8644d704b60395df3601632d/propcache-0.4.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:3d233076ccf9e450c8b3bc6720af226b898ef5d051a2d145f7d765e6e9f9bcff", size = 80277, upload-time = "2025-10-08T19:48:36.647Z" }, - { url = "https://files.pythonhosted.org/packages/34/58/04af97ac586b4ef6b9026c3fd36ee7798b737a832f5d3440a4280dcebd3a/propcache-0.4.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:357f5bb5c377a82e105e44bd3d52ba22b616f7b9773714bff93573988ef0a5fb", size = 45865, upload-time = "2025-10-08T19:48:37.859Z" }, - { url = "https://files.pythonhosted.org/packages/7c/19/b65d98ae21384518b291d9939e24a8aeac4fdb5101b732576f8f7540e834/propcache-0.4.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:cbc3b6dfc728105b2a57c06791eb07a94229202ea75c59db644d7d496b698cac", size = 47636, upload-time = "2025-10-08T19:48:39.038Z" }, - { url = "https://files.pythonhosted.org/packages/b3/0f/317048c6d91c356c7154dca5af019e6effeb7ee15fa6a6db327cc19e12b4/propcache-0.4.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:182b51b421f0501952d938dc0b0eb45246a5b5153c50d42b495ad5fb7517c888", size = 201126, upload-time = "2025-10-08T19:48:40.774Z" }, - { url = "https://files.pythonhosted.org/packages/71/69/0b2a7a5a6ee83292b4b997dbd80549d8ce7d40b6397c1646c0d9495f5a85/propcache-0.4.1-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:4b536b39c5199b96fc6245eb5fb796c497381d3942f169e44e8e392b29c9ebcc", size = 209837, upload-time = "2025-10-08T19:48:42.167Z" }, - { url = "https://files.pythonhosted.org/packages/a5/92/c699ac495a6698df6e497fc2de27af4b6ace10d8e76528357ce153722e45/propcache-0.4.1-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:db65d2af507bbfbdcedb254a11149f894169d90488dd3e7190f7cdcb2d6cd57a", size = 215578, upload-time = "2025-10-08T19:48:43.56Z" }, - { url = "https://files.pythonhosted.org/packages/b3/ee/14de81c5eb02c0ee4f500b4e39c4e1bd0677c06e72379e6ab18923c773fc/propcache-0.4.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:fd2dbc472da1f772a4dae4fa24be938a6c544671a912e30529984dd80400cd88", size = 197187, upload-time = "2025-10-08T19:48:45.309Z" }, - { url = "https://files.pythonhosted.org/packages/1d/94/48dce9aaa6d8dd5a0859bad75158ec522546d4ac23f8e2f05fac469477dd/propcache-0.4.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:daede9cd44e0f8bdd9e6cc9a607fc81feb80fae7a5fc6cecaff0e0bb32e42d00", size = 193478, upload-time = "2025-10-08T19:48:47.743Z" }, - { url = "https://files.pythonhosted.org/packages/60/b5/0516b563e801e1ace212afde869a0596a0d7115eec0b12d296d75633fb29/propcache-0.4.1-cp39-cp39-musllinux_1_2_armv7l.whl", hash = "sha256:71b749281b816793678ae7f3d0d84bd36e694953822eaad408d682efc5ca18e0", size = 190650, upload-time = "2025-10-08T19:48:49.373Z" }, - { url = "https://files.pythonhosted.org/packages/24/89/e0f7d4a5978cd56f8cd67735f74052f257dc471ec901694e430f0d1572fe/propcache-0.4.1-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:0002004213ee1f36cfb3f9a42b5066100c44276b9b72b4e1504cddd3d692e86e", size = 200251, upload-time = "2025-10-08T19:48:51.4Z" }, - { url = "https://files.pythonhosted.org/packages/06/7d/a1fac863d473876ed4406c914f2e14aa82d2f10dd207c9e16fc383cc5a24/propcache-0.4.1-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:fe49d0a85038f36ba9e3ffafa1103e61170b28e95b16622e11be0a0ea07c6781", size = 200919, upload-time = "2025-10-08T19:48:53.227Z" }, - { url = "https://files.pythonhosted.org/packages/c3/4e/f86a256ff24944cf5743e4e6c6994e3526f6acfcfb55e21694c2424f758c/propcache-0.4.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:99d43339c83aaf4d32bda60928231848eee470c6bda8d02599cc4cebe872d183", size = 193211, upload-time = "2025-10-08T19:48:55.027Z" }, - { url = "https://files.pythonhosted.org/packages/6e/3f/3fbad5f4356b068f1b047d300a6ff2c66614d7030f078cd50be3fec04228/propcache-0.4.1-cp39-cp39-win32.whl", hash = "sha256:a129e76735bc792794d5177069691c3217898b9f5cee2b2661471e52ffe13f19", size = 38314, upload-time = "2025-10-08T19:48:56.792Z" }, - { url = "https://files.pythonhosted.org/packages/a4/45/d78d136c3a3d215677abb886785aae744da2c3005bcb99e58640c56529b1/propcache-0.4.1-cp39-cp39-win_amd64.whl", hash = "sha256:948dab269721ae9a87fd16c514a0a2c2a1bdb23a9a61b969b0f9d9ee2968546f", size = 41912, upload-time = "2025-10-08T19:48:57.995Z" }, - { url = "https://files.pythonhosted.org/packages/fc/2a/b0632941f25139f4e58450b307242951f7c2717a5704977c6d5323a800af/propcache-0.4.1-cp39-cp39-win_arm64.whl", hash = "sha256:5fd37c406dd6dc85aa743e214cef35dc54bbdd1419baac4f6ae5e5b1a2976938", size = 38450, upload-time = "2025-10-08T19:48:59.349Z" }, { url = "https://files.pythonhosted.org/packages/5b/5a/bc7b4a4ef808fa59a816c17b20c4bef6884daebbdf627ff2a161da67da19/propcache-0.4.1-py3-none-any.whl", hash = "sha256:af2a6052aeb6cf17d3e46ee169099044fd8224cbaf75c76a2ef596e8163e2237", size = 13305, upload-time = "2025-10-08T19:49:00.792Z" }, ] @@ -6973,8 +3304,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/06/db/49b05966fd208ae3f44dcd33837b6243b4915c57561d730a43f881f24dea/protobuf-5.29.6-cp38-abi3-macosx_10_9_universal2.whl", hash = "sha256:b5a169e664b4057183a34bdc424540e86eea47560f3c123a0d64de4e137f9269", size = 418619, upload-time = "2026-02-04T22:54:30.266Z" }, { url = "https://files.pythonhosted.org/packages/b7/d7/48cbf6b0c3c39761e47a99cb483405f0fde2be22cf00d71ef316ce52b458/protobuf-5.29.6-cp38-abi3-manylinux2014_aarch64.whl", hash = "sha256:a8866b2cff111f0f863c1b3b9e7572dc7eaea23a7fae27f6fc613304046483e6", size = 320284, upload-time = "2026-02-04T22:54:31.782Z" }, { url = "https://files.pythonhosted.org/packages/e3/dd/cadd6ec43069247d91f6345fa7a0d2858bef6af366dbd7ba8f05d2c77d3b/protobuf-5.29.6-cp38-abi3-manylinux2014_x86_64.whl", hash = "sha256:e3387f44798ac1106af0233c04fb8abf543772ff241169946f698b3a9a3d3ab9", size = 320478, upload-time = "2026-02-04T22:54:32.909Z" }, - { url = "https://files.pythonhosted.org/packages/30/a4/ff263f5687815e1a10a9243a3a6463af42ca251224bf4b8fc4c93b9f5b80/protobuf-5.29.6-cp39-cp39-win32.whl", hash = "sha256:cb4c86de9cd8a7f3a256b9744220d87b847371c6b2f10bde87768918ef33ba49", size = 423352, upload-time = "2026-02-04T22:54:37.375Z" }, - { url = "https://files.pythonhosted.org/packages/5c/64/e943206d3b5069050d570a2c53a90631240d99adcc9a91c6ff7b41876f4d/protobuf-5.29.6-cp39-cp39-win_amd64.whl", hash = "sha256:76e07e6567f8baf827137e8d5b8204b6c7b6488bbbff1bf0a72b383f77999c18", size = 435222, upload-time = "2026-02-04T22:54:38.418Z" }, { url = "https://files.pythonhosted.org/packages/5a/cb/e3065b447186cb70aa65acc70c86baf482d82bf75625bf5a2c4f6919c6a3/protobuf-5.29.6-py3-none-any.whl", hash = "sha256:6b9edb641441b2da9fa8f428760fc136a49cf97a52076010cf22a2ff73438a86", size = 173126, upload-time = "2026-02-04T22:54:39.462Z" }, ] @@ -7025,8 +3354,8 @@ source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "asteroid-filterbanks" }, { name = "einops" }, - { name = "huggingface-hub", version = "0.36.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "huggingface-hub", version = "1.4.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "huggingface-hub", version = "0.36.2", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "huggingface-hub", version = "1.4.1", source = { registry = "https://pypi.org/simple" }, marker = "extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, { name = "lightning" }, { name = "omegaconf" }, { name = "pyannote-core" }, @@ -7039,20 +3368,13 @@ dependencies = [ { name = "soundfile" }, { name = "speechbrain" }, { name = "tensorboardx" }, - { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and sys_platform == 'darwin') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.8.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(python_full_version < '3.10' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.8.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.10.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version >= '3.10' and sys_platform == 'darwin') or (python_full_version >= '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.10.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(python_full_version >= '3.10' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.10.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(python_full_version >= '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.10.0", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or sys_platform == 'darwin' or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.10.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.10.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, { name = "torch-audiomentations" }, - { name = "torchaudio", version = "2.8.0", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torchaudio", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and sys_platform == 'darwin') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torchaudio", version = "2.8.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu') or (python_full_version >= '3.10' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu') or (python_full_version >= '3.10' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu') or (python_full_version >= '3.10' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torchaudio", version = "2.8.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torchaudio", version = "2.10.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version >= '3.10' and sys_platform == 'darwin') or (python_full_version >= '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torchaudio", version = "2.10.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(python_full_version >= '3.10' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torchaudio", version = "2.10.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(python_full_version >= '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torchaudio", version = "2.10.0", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or sys_platform == 'darwin' or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torchaudio", version = "2.10.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torchaudio", version = "2.10.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, { name = "torchmetrics" }, ] sdist = { url = "https://files.pythonhosted.org/packages/ec/1e/efe9619c38f1281ddf21640654d8ea9e3f67c459b76f78657b26d8557bbe/pyannote_audio-3.4.0.tar.gz", hash = "sha256:d523d883cb8d37cb6daf99f3ba83f9138bb193646ad71e6eae7deb89d8ddd642", size = 804850, upload-time = "2025-09-09T07:04:51.17Z" } @@ -7066,9 +3388,7 @@ version = "5.0.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "numpy" }, - { name = "scipy", version = "1.13.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "scipy", version = "1.15.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version == '3.10.*' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "scipy", version = "1.17.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "scipy" }, { name = "sortedcontainers" }, { name = "typing-extensions" }, ] @@ -7085,8 +3405,7 @@ dependencies = [ { name = "pandas" }, { name = "pyannote-core" }, { name = "pyyaml" }, - { name = "typer", version = "0.23.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "typer", version = "0.24.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "typer" }, ] sdist = { url = "https://files.pythonhosted.org/packages/a9/ae/de36413d69a46be87cb612ebbcdc4eacbeebce3bc809124603e44a88fe26/pyannote.database-5.1.3.tar.gz", hash = "sha256:0eaf64c1cc506718de60d2d702f1359b1ae7ff252ee3e4799f1c5e378cd52c31", size = 49957, upload-time = "2025-01-15T20:28:26.437Z" } wheels = [ @@ -7099,18 +3418,13 @@ version = "3.2.1" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "docopt" }, - { name = "matplotlib", version = "3.9.4", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "matplotlib", version = "3.10.8", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "matplotlib" }, { name = "numpy" }, { name = "pandas" }, { name = "pyannote-core" }, { name = "pyannote-database" }, - { name = "scikit-learn", version = "1.6.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "scikit-learn", version = "1.7.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version == '3.10.*' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "scikit-learn", version = "1.8.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "scipy", version = "1.13.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "scipy", version = "1.15.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version == '3.10.*' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "scipy", version = "1.17.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "scikit-learn" }, + { name = "scipy" }, { name = "sympy" }, { name = "tabulate" }, ] @@ -7125,15 +3439,12 @@ version = "3.0.1" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "docopt" }, - { name = "filelock", version = "3.19.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "filelock", version = "3.24.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "filelock" }, { name = "optuna" }, { name = "pyannote-core" }, { name = "pyannote-database" }, { name = "pyyaml" }, - { name = "scikit-learn", version = "1.6.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "scikit-learn", version = "1.7.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version == '3.10.*' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "scikit-learn", version = "1.8.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "scikit-learn" }, { name = "tqdm" }, ] sdist = { url = "https://files.pythonhosted.org/packages/35/04/4bcfe0dd588577a188328b806f3a7213d8cead0ce5fe5784d01fd57df93f/pyannote.pipeline-3.0.1.tar.gz", hash = "sha256:021794e26a2cf5d8fb5bb1835951e71f5fac33eb14e23dfb7468e16b1b805151", size = 34486, upload-time = "2023-09-22T20:16:49.951Z" } @@ -7147,13 +3458,6 @@ version = "23.0.1" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/88/22/134986a4cc224d593c1afde5494d18ff629393d74cc2eddb176669f234a4/pyarrow-23.0.1.tar.gz", hash = "sha256:b8c5873e33440b2bc2f4a79d2b47017a89c5a24116c055625e6f2ee50523f019", size = 1167336, upload-time = "2026-02-16T10:14:12.39Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/bc/a8/24e5dc6855f50a62936ceb004e6e9645e4219a8065f304145d7fb8a79d5d/pyarrow-23.0.1-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:3fab8f82571844eb3c460f90a75583801d14ca0cc32b1acc8c361650e006fd56", size = 34307390, upload-time = "2026-02-16T10:08:08.654Z" }, - { url = "https://files.pythonhosted.org/packages/bc/8e/4be5617b4aaae0287f621ad31c6036e5f63118cfca0dc57d42121ff49b51/pyarrow-23.0.1-cp310-cp310-macosx_12_0_x86_64.whl", hash = "sha256:3f91c038b95f71ddfc865f11d5876c42f343b4495535bd262c7b321b0b94507c", size = 35853761, upload-time = "2026-02-16T10:08:17.811Z" }, - { url = "https://files.pythonhosted.org/packages/2e/08/3e56a18819462210432ae37d10f5c8eed3828be1d6c751b6e6a2e93c286a/pyarrow-23.0.1-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:d0744403adabef53c985a7f8a082b502a368510c40d184df349a0a8754533258", size = 44493116, upload-time = "2026-02-16T10:08:25.792Z" }, - { url = "https://files.pythonhosted.org/packages/f8/82/c40b68001dbec8a3faa4c08cd8c200798ac732d2854537c5449dc859f55a/pyarrow-23.0.1-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:c33b5bf406284fd0bba436ed6f6c3ebe8e311722b441d89397c54f871c6863a2", size = 47564532, upload-time = "2026-02-16T10:08:34.27Z" }, - { url = "https://files.pythonhosted.org/packages/20/bc/73f611989116b6f53347581b02177f9f620efdf3cd3f405d0e83cdf53a83/pyarrow-23.0.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:ddf743e82f69dcd6dbbcb63628895d7161e04e56794ef80550ac6f3315eeb1d5", size = 48183685, upload-time = "2026-02-16T10:08:42.889Z" }, - { url = "https://files.pythonhosted.org/packages/b0/cc/6c6b3ecdae2a8c3aced99956187e8302fc954cc2cca2a37cf2111dad16ce/pyarrow-23.0.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:e052a211c5ac9848ae15d5ec875ed0943c0221e2fcfe69eee80b604b4e703222", size = 50605582, upload-time = "2026-02-16T10:08:51.641Z" }, - { url = "https://files.pythonhosted.org/packages/8d/94/d359e708672878d7638a04a0448edf7c707f9e5606cee11e15aaa5c7535a/pyarrow-23.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:5abde149bb3ce524782d838eb67ac095cd3fd6090eba051130589793f1a7f76d", size = 27521148, upload-time = "2026-02-16T10:08:58.077Z" }, { url = "https://files.pythonhosted.org/packages/b0/41/8e6b6ef7e225d4ceead8459427a52afdc23379768f54dd3566014d7618c1/pyarrow-23.0.1-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:6f0147ee9e0386f519c952cc670eb4a8b05caa594eeffe01af0e25f699e4e9bb", size = 34302230, upload-time = "2026-02-16T10:09:03.859Z" }, { url = "https://files.pythonhosted.org/packages/bf/4a/1472c00392f521fea03ae93408bf445cc7bfa1ab81683faf9bc188e36629/pyarrow-23.0.1-cp311-cp311-macosx_12_0_x86_64.whl", hash = "sha256:0ae6e17c828455b6265d590100c295193f93cc5675eb0af59e49dbd00d2de350", size = 35850050, upload-time = "2026-02-16T10:09:11.877Z" }, { url = "https://files.pythonhosted.org/packages/0c/b2/bd1f2f05ded56af7f54d702c8364c9c43cd6abb91b0e9933f3d77b4f4132/pyarrow-23.0.1-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:fed7020203e9ef273360b9e45be52a2a47d3103caf156a30ace5247ffb51bdbd", size = 44491918, upload-time = "2026-02-16T10:09:18.144Z" }, @@ -7184,161 +3488,19 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/e9/a1/22df0620a9fac31d68397a75465c344e83c3dfe521f7612aea33e27ab6c0/pyarrow-23.0.1-cp313-cp313t-win_amd64.whl", hash = "sha256:a35581e856a2fafa12f3f54fce4331862b1cfb0bef5758347a858a4aa9d6bae8", size = 27660642, upload-time = "2026-02-16T10:12:17.746Z" }, ] -[[package]] -name = "pycountry" -version = "24.6.1" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", -] -sdist = { url = "https://files.pythonhosted.org/packages/76/57/c389fa68c50590881a75b7883eeb3dc15e9e73a0fdc001cdd45c13290c92/pycountry-24.6.1.tar.gz", hash = "sha256:b61b3faccea67f87d10c1f2b0fc0be714409e8fcdcc1315613174f6466c10221", size = 6043910, upload-time = "2024-06-01T04:12:15.05Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/b1/ec/1fb891d8a2660716aadb2143235481d15ed1cbfe3ad669194690b0604492/pycountry-24.6.1-py3-none-any.whl", hash = "sha256:f1a4fb391cd7214f8eefd39556d740adcc233c778a27f8942c8dca351d6ce06f", size = 6335189, upload-time = "2024-06-01T04:11:49.711Z" }, -] - [[package]] name = "pycountry" version = "26.2.16" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.11.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.10.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", -] sdist = { url = "https://files.pythonhosted.org/packages/de/1d/061b9e7a48b85cfd69f33c33d2ef784a531c359399ad764243399673c8f5/pycountry-26.2.16.tar.gz", hash = "sha256:5b6027d453fcd6060112b951dd010f01f168b51b4bf8a1f1fc8c95c8d94a0801", size = 7711342, upload-time = "2026-02-17T03:42:52.367Z" } wheels = [ { url = "https://files.pythonhosted.org/packages/9c/42/7703bd45b62fecd44cd7d3495423097e2f7d28bc2e99e7c1af68892ab157/pycountry-26.2.16-py3-none-any.whl", hash = "sha256:115c4baf7cceaa30f59a4694d79483c9167dbce7a9de4d3d571c5f3ea77c305a", size = 8044600, upload-time = "2026-02-17T03:42:49.777Z" }, ] -[[package]] -name = "pycparser" -version = "2.23" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", -] -sdist = { url = "https://files.pythonhosted.org/packages/fe/cf/d2d3b9f5699fb1e4615c8e32ff220203e43b248e1dfcc6736ad9057731ca/pycparser-2.23.tar.gz", hash = "sha256:78816d4f24add8f10a06d6f05b4d424ad9e96cfebf68a4ddc99c65c0720d00c2", size = 173734, upload-time = "2025-09-09T13:23:47.91Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/a0/e3/59cd50310fc9b59512193629e1984c1f95e5c8ae6e5d8c69532ccc65a7fe/pycparser-2.23-py3-none-any.whl", hash = "sha256:e5c6e8d3fbad53479cab09ac03729e0a9faf2bee3db8208a550daf5af81a5934", size = 118140, upload-time = "2025-09-09T13:23:46.651Z" }, -] - [[package]] name = "pycparser" version = "3.0" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.11.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.10.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.11.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.10.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", -] sdist = { url = "https://files.pythonhosted.org/packages/1b/7d/92392ff7815c21062bea51aa7b87d45576f649f16458d78b7cf94b9ab2e6/pycparser-3.0.tar.gz", hash = "sha256:600f49d217304a5902ac3c37e1281c9fe94e4d0489de643a9504c5cdfdfc6b29", size = 103492, upload-time = "2026-01-21T14:26:51.89Z" } wheels = [ { url = "https://files.pythonhosted.org/packages/0c/c3/44f3fbbfa403ea2a7c779186dc20772604442dde72947e7d01069cbe98e3/pycparser-3.0-py3-none-any.whl", hash = "sha256:b727414169a36b7d524c1c3e31839a521725078d7b2ff038656844266160a992", size = 48172, upload-time = "2026-01-21T14:26:50.693Z" }, @@ -7368,19 +3530,6 @@ dependencies = [ ] sdist = { url = "https://files.pythonhosted.org/packages/71/70/23b021c950c2addd24ec408e9ab05d59b035b39d97cdc1130e1bce647bb6/pydantic_core-2.41.5.tar.gz", hash = "sha256:08daa51ea16ad373ffd5e7606252cc32f07bc72b28284b6bc9c6df804816476e", size = 460952, upload-time = "2025-11-04T13:43:49.098Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/c6/90/32c9941e728d564b411d574d8ee0cf09b12ec978cb22b294995bae5549a5/pydantic_core-2.41.5-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:77b63866ca88d804225eaa4af3e664c5faf3568cea95360d21f4725ab6e07146", size = 2107298, upload-time = "2025-11-04T13:39:04.116Z" }, - { url = "https://files.pythonhosted.org/packages/fb/a8/61c96a77fe28993d9a6fb0f4127e05430a267b235a124545d79fea46dd65/pydantic_core-2.41.5-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:dfa8a0c812ac681395907e71e1274819dec685fec28273a28905df579ef137e2", size = 1901475, upload-time = "2025-11-04T13:39:06.055Z" }, - { url = "https://files.pythonhosted.org/packages/5d/b6/338abf60225acc18cdc08b4faef592d0310923d19a87fba1faf05af5346e/pydantic_core-2.41.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5921a4d3ca3aee735d9fd163808f5e8dd6c6972101e4adbda9a4667908849b97", size = 1918815, upload-time = "2025-11-04T13:39:10.41Z" }, - { url = "https://files.pythonhosted.org/packages/d1/1c/2ed0433e682983d8e8cba9c8d8ef274d4791ec6a6f24c58935b90e780e0a/pydantic_core-2.41.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:e25c479382d26a2a41b7ebea1043564a937db462816ea07afa8a44c0866d52f9", size = 2065567, upload-time = "2025-11-04T13:39:12.244Z" }, - { url = "https://files.pythonhosted.org/packages/b3/24/cf84974ee7d6eae06b9e63289b7b8f6549d416b5c199ca2d7ce13bbcf619/pydantic_core-2.41.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f547144f2966e1e16ae626d8ce72b4cfa0caedc7fa28052001c94fb2fcaa1c52", size = 2230442, upload-time = "2025-11-04T13:39:13.962Z" }, - { url = "https://files.pythonhosted.org/packages/fd/21/4e287865504b3edc0136c89c9c09431be326168b1eb7841911cbc877a995/pydantic_core-2.41.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6f52298fbd394f9ed112d56f3d11aabd0d5bd27beb3084cc3d8ad069483b8941", size = 2350956, upload-time = "2025-11-04T13:39:15.889Z" }, - { url = "https://files.pythonhosted.org/packages/a8/76/7727ef2ffa4b62fcab916686a68a0426b9b790139720e1934e8ba797e238/pydantic_core-2.41.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:100baa204bb412b74fe285fb0f3a385256dad1d1879f0a5cb1499ed2e83d132a", size = 2068253, upload-time = "2025-11-04T13:39:17.403Z" }, - { url = "https://files.pythonhosted.org/packages/d5/8c/a4abfc79604bcb4c748e18975c44f94f756f08fb04218d5cb87eb0d3a63e/pydantic_core-2.41.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:05a2c8852530ad2812cb7914dc61a1125dc4e06252ee98e5638a12da6cc6fb6c", size = 2177050, upload-time = "2025-11-04T13:39:19.351Z" }, - { url = "https://files.pythonhosted.org/packages/67/b1/de2e9a9a79b480f9cb0b6e8b6ba4c50b18d4e89852426364c66aa82bb7b3/pydantic_core-2.41.5-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:29452c56df2ed968d18d7e21f4ab0ac55e71dc59524872f6fc57dcf4a3249ed2", size = 2147178, upload-time = "2025-11-04T13:39:21Z" }, - { url = "https://files.pythonhosted.org/packages/16/c1/dfb33f837a47b20417500efaa0378adc6635b3c79e8369ff7a03c494b4ac/pydantic_core-2.41.5-cp310-cp310-musllinux_1_1_armv7l.whl", hash = "sha256:d5160812ea7a8a2ffbe233d8da666880cad0cbaf5d4de74ae15c313213d62556", size = 2341833, upload-time = "2025-11-04T13:39:22.606Z" }, - { url = "https://files.pythonhosted.org/packages/47/36/00f398642a0f4b815a9a558c4f1dca1b4020a7d49562807d7bc9ff279a6c/pydantic_core-2.41.5-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:df3959765b553b9440adfd3c795617c352154e497a4eaf3752555cfb5da8fc49", size = 2321156, upload-time = "2025-11-04T13:39:25.843Z" }, - { url = "https://files.pythonhosted.org/packages/7e/70/cad3acd89fde2010807354d978725ae111ddf6d0ea46d1ea1775b5c1bd0c/pydantic_core-2.41.5-cp310-cp310-win32.whl", hash = "sha256:1f8d33a7f4d5a7889e60dc39856d76d09333d8a6ed0f5f1190635cbec70ec4ba", size = 1989378, upload-time = "2025-11-04T13:39:27.92Z" }, - { url = "https://files.pythonhosted.org/packages/76/92/d338652464c6c367e5608e4488201702cd1cbb0f33f7b6a85a60fe5f3720/pydantic_core-2.41.5-cp310-cp310-win_amd64.whl", hash = "sha256:62de39db01b8d593e45871af2af9e497295db8d73b085f6bfd0b18c83c70a8f9", size = 2013622, upload-time = "2025-11-04T13:39:29.848Z" }, { url = "https://files.pythonhosted.org/packages/e8/72/74a989dd9f2084b3d9530b0915fdda64ac48831c30dbf7c72a41a5232db8/pydantic_core-2.41.5-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:a3a52f6156e73e7ccb0f8cced536adccb7042be67cb45f9562e12b319c119da6", size = 2105873, upload-time = "2025-11-04T13:39:31.373Z" }, { url = "https://files.pythonhosted.org/packages/12/44/37e403fd9455708b3b942949e1d7febc02167662bf1a7da5b78ee1ea2842/pydantic_core-2.41.5-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:7f3bf998340c6d4b0c9a2f02d6a400e51f123b59565d74dc60d252ce888c260b", size = 1899826, upload-time = "2025-11-04T13:39:32.897Z" }, { url = "https://files.pythonhosted.org/packages/33/7f/1d5cab3ccf44c1935a359d51a8a2a9e1a654b744b5e7f80d41b88d501eec/pydantic_core-2.41.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:378bec5c66998815d224c9ca994f1e14c0c21cb95d2f52b6021cc0b2a58f2a5a", size = 1917869, upload-time = "2025-11-04T13:39:34.469Z" }, @@ -7423,19 +3572,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/1a/d9/c248c103856f807ef70c18a4f986693a46a8ffe1602e5d361485da502d20/pydantic_core-2.41.5-cp313-cp313-win32.whl", hash = "sha256:650ae77860b45cfa6e2cdafc42618ceafab3a2d9a3811fcfbd3bbf8ac3c40d36", size = 1994679, upload-time = "2025-11-04T13:40:50.619Z" }, { url = "https://files.pythonhosted.org/packages/9e/8b/341991b158ddab181cff136acd2552c9f35bd30380422a639c0671e99a91/pydantic_core-2.41.5-cp313-cp313-win_amd64.whl", hash = "sha256:79ec52ec461e99e13791ec6508c722742ad745571f234ea6255bed38c6480f11", size = 2019766, upload-time = "2025-11-04T13:40:52.631Z" }, { url = "https://files.pythonhosted.org/packages/73/7d/f2f9db34af103bea3e09735bb40b021788a5e834c81eedb541991badf8f5/pydantic_core-2.41.5-cp313-cp313-win_arm64.whl", hash = "sha256:3f84d5c1b4ab906093bdc1ff10484838aca54ef08de4afa9de0f5f14d69639cd", size = 1981005, upload-time = "2025-11-04T13:40:54.734Z" }, - { url = "https://files.pythonhosted.org/packages/54/db/160dffb57ed9a3705c4cbcbff0ac03bdae45f1ca7d58ab74645550df3fbd/pydantic_core-2.41.5-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:8bfeaf8735be79f225f3fefab7f941c712aaca36f1128c9d7e2352ee1aa87bdf", size = 2107999, upload-time = "2025-11-04T13:42:03.885Z" }, - { url = "https://files.pythonhosted.org/packages/a3/7d/88e7de946f60d9263cc84819f32513520b85c0f8322f9b8f6e4afc938383/pydantic_core-2.41.5-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:346285d28e4c8017da95144c7f3acd42740d637ff41946af5ce6e5e420502dd5", size = 1929745, upload-time = "2025-11-04T13:42:06.075Z" }, - { url = "https://files.pythonhosted.org/packages/d5/c2/aef51e5b283780e85e99ff19db0f05842d2d4a8a8cd15e63b0280029b08f/pydantic_core-2.41.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a75dafbf87d6276ddc5b2bf6fae5254e3d0876b626eb24969a574fff9149ee5d", size = 1920220, upload-time = "2025-11-04T13:42:08.457Z" }, - { url = "https://files.pythonhosted.org/packages/c7/97/492ab10f9ac8695cd76b2fdb24e9e61f394051df71594e9bcc891c9f586e/pydantic_core-2.41.5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7b93a4d08587e2b7e7882de461e82b6ed76d9026ce91ca7915e740ecc7855f60", size = 2067296, upload-time = "2025-11-04T13:42:10.817Z" }, - { url = "https://files.pythonhosted.org/packages/ec/23/984149650e5269c59a2a4c41d234a9570adc68ab29981825cfaf4cfad8f4/pydantic_core-2.41.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8465ab91a4bd96d36dde3263f06caa6a8a6019e4113f24dc753d79a8b3a3f82", size = 2231548, upload-time = "2025-11-04T13:42:13.843Z" }, - { url = "https://files.pythonhosted.org/packages/71/0c/85bcbb885b9732c28bec67a222dbed5ed2d77baee1f8bba2002e8cd00c5c/pydantic_core-2.41.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:299e0a22e7ae2b85c1a57f104538b2656e8ab1873511fd718a1c1c6f149b77b5", size = 2362571, upload-time = "2025-11-04T13:42:16.208Z" }, - { url = "https://files.pythonhosted.org/packages/c0/4a/412d2048be12c334003e9b823a3fa3d038e46cc2d64dd8aab50b31b65499/pydantic_core-2.41.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:707625ef0983fcfb461acfaf14de2067c5942c6bb0f3b4c99158bed6fedd3cf3", size = 2068175, upload-time = "2025-11-04T13:42:18.911Z" }, - { url = "https://files.pythonhosted.org/packages/73/f4/c58b6a776b502d0a5540ad02e232514285513572060f0d78f7832ca3c98b/pydantic_core-2.41.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f41eb9797986d6ebac5e8edff36d5cef9de40def462311b3eb3eeded1431e425", size = 2177203, upload-time = "2025-11-04T13:42:22.578Z" }, - { url = "https://files.pythonhosted.org/packages/ed/ae/f06ea4c7e7a9eead3d165e7623cd2ea0cb788e277e4f935af63fc98fa4e6/pydantic_core-2.41.5-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:0384e2e1021894b1ff5a786dbf94771e2986ebe2869533874d7e43bc79c6f504", size = 2148191, upload-time = "2025-11-04T13:42:24.89Z" }, - { url = "https://files.pythonhosted.org/packages/c1/57/25a11dcdc656bf5f8b05902c3c2934ac3ea296257cc4a3f79a6319e61856/pydantic_core-2.41.5-cp39-cp39-musllinux_1_1_armv7l.whl", hash = "sha256:f0cd744688278965817fd0839c4a4116add48d23890d468bc436f78beb28abf5", size = 2343907, upload-time = "2025-11-04T13:42:27.683Z" }, - { url = "https://files.pythonhosted.org/packages/96/82/e33d5f4933d7a03327c0c43c65d575e5919d4974ffc026bc917a5f7b9f61/pydantic_core-2.41.5-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:753e230374206729bf0a807954bcc6c150d3743928a73faffee51ac6557a03c3", size = 2322174, upload-time = "2025-11-04T13:42:30.776Z" }, - { url = "https://files.pythonhosted.org/packages/81/45/4091be67ce9f469e81656f880f3506f6a5624121ec5eb3eab37d7581897d/pydantic_core-2.41.5-cp39-cp39-win32.whl", hash = "sha256:873e0d5b4fb9b89ef7c2d2a963ea7d02879d9da0da8d9d4933dee8ee86a8b460", size = 1990353, upload-time = "2025-11-04T13:42:33.111Z" }, - { url = "https://files.pythonhosted.org/packages/44/8a/a98aede18db6e9cd5d66bcacd8a409fcf8134204cdede2e7de35c5a2c5ef/pydantic_core-2.41.5-cp39-cp39-win_amd64.whl", hash = "sha256:e4f4a984405e91527a0d62649ee21138f8e3d0ef103be488c1dc11a80d7f184b", size = 2015698, upload-time = "2025-11-04T13:42:35.484Z" }, { url = "https://files.pythonhosted.org/packages/11/72/90fda5ee3b97e51c494938a4a44c3a35a9c96c19bba12372fb9c634d6f57/pydantic_core-2.41.5-graalpy311-graalpy242_311_native-macosx_10_12_x86_64.whl", hash = "sha256:b96d5f26b05d03cc60f11a7761a5ded1741da411e7fe0909e27a5e6a0cb7b034", size = 2115441, upload-time = "2025-11-04T13:42:39.557Z" }, { url = "https://files.pythonhosted.org/packages/1f/53/8942f884fa33f50794f119012dc6a1a02ac43a56407adaac20463df8e98f/pydantic_core-2.41.5-graalpy311-graalpy242_311_native-macosx_11_0_arm64.whl", hash = "sha256:634e8609e89ceecea15e2d61bc9ac3718caaaa71963717bf3c8f38bfde64242c", size = 1930291, upload-time = "2025-11-04T13:42:42.169Z" }, { url = "https://files.pythonhosted.org/packages/79/c8/ecb9ed9cd942bce09fc888ee960b52654fbdbede4ba6c2d6e0d3b1d8b49c/pydantic_core-2.41.5-graalpy311-graalpy242_311_native-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:93e8740d7503eb008aa2df04d3b9735f845d43ae845e6dcd2be0b55a2da43cd2", size = 1948632, upload-time = "2025-11-04T13:42:44.564Z" }, @@ -7444,14 +3580,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/aa/81/05e400037eaf55ad400bcd318c05bb345b57e708887f07ddb2d20e3f0e98/pydantic_core-2.41.5-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl", hash = "sha256:aabf5777b5c8ca26f7824cb4a120a740c9588ed58df9b2d196ce92fba42ff8dc", size = 1915388, upload-time = "2025-11-04T13:42:52.215Z" }, { url = "https://files.pythonhosted.org/packages/6e/0d/e3549b2399f71d56476b77dbf3cf8937cec5cd70536bdc0e374a421d0599/pydantic_core-2.41.5-graalpy312-graalpy250_312_native-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c007fe8a43d43b3969e8469004e9845944f1a80e6acd47c150856bb87f230c56", size = 1942879, upload-time = "2025-11-04T13:42:56.483Z" }, { url = "https://files.pythonhosted.org/packages/f7/07/34573da085946b6a313d7c42f82f16e8920bfd730665de2d11c0c37a74b5/pydantic_core-2.41.5-graalpy312-graalpy250_312_native-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:76d0819de158cd855d1cbb8fcafdf6f5cf1eb8e470abe056d5d161106e38062b", size = 2139017, upload-time = "2025-11-04T13:42:59.471Z" }, - { url = "https://files.pythonhosted.org/packages/e6/b0/1a2aa41e3b5a4ba11420aba2d091b2d17959c8d1519ece3627c371951e73/pydantic_core-2.41.5-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:b5819cd790dbf0c5eb9f82c73c16b39a65dd6dd4d1439dcdea7816ec9adddab8", size = 2103351, upload-time = "2025-11-04T13:43:02.058Z" }, - { url = "https://files.pythonhosted.org/packages/a4/ee/31b1f0020baaf6d091c87900ae05c6aeae101fa4e188e1613c80e4f1ea31/pydantic_core-2.41.5-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:5a4e67afbc95fa5c34cf27d9089bca7fcab4e51e57278d710320a70b956d1b9a", size = 1925363, upload-time = "2025-11-04T13:43:05.159Z" }, - { url = "https://files.pythonhosted.org/packages/e1/89/ab8e86208467e467a80deaca4e434adac37b10a9d134cd2f99b28a01e483/pydantic_core-2.41.5-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ece5c59f0ce7d001e017643d8d24da587ea1f74f6993467d85ae8a5ef9d4f42b", size = 2135615, upload-time = "2025-11-04T13:43:08.116Z" }, - { url = "https://files.pythonhosted.org/packages/99/0a/99a53d06dd0348b2008f2f30884b34719c323f16c3be4e6cc1203b74a91d/pydantic_core-2.41.5-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:16f80f7abe3351f8ea6858914ddc8c77e02578544a0ebc15b4c2e1a0e813b0b2", size = 2175369, upload-time = "2025-11-04T13:43:12.49Z" }, - { url = "https://files.pythonhosted.org/packages/6d/94/30ca3b73c6d485b9bb0bc66e611cff4a7138ff9736b7e66bcf0852151636/pydantic_core-2.41.5-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:33cb885e759a705b426baada1fe68cbb0a2e68e34c5d0d0289a364cf01709093", size = 2144218, upload-time = "2025-11-04T13:43:15.431Z" }, - { url = "https://files.pythonhosted.org/packages/87/57/31b4f8e12680b739a91f472b5671294236b82586889ef764b5fbc6669238/pydantic_core-2.41.5-pp310-pypy310_pp73-musllinux_1_1_armv7l.whl", hash = "sha256:c8d8b4eb992936023be7dee581270af5c6e0697a8559895f527f5b7105ecd36a", size = 2329951, upload-time = "2025-11-04T13:43:18.062Z" }, - { url = "https://files.pythonhosted.org/packages/7d/73/3c2c8edef77b8f7310e6fb012dbc4b8551386ed575b9eb6fb2506e28a7eb/pydantic_core-2.41.5-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:242a206cd0318f95cd21bdacff3fcc3aab23e79bba5cac3db5a841c9ef9c6963", size = 2318428, upload-time = "2025-11-04T13:43:20.679Z" }, - { url = "https://files.pythonhosted.org/packages/2f/02/8559b1f26ee0d502c74f9cca5c0d2fd97e967e083e006bbbb4e97f3a043a/pydantic_core-2.41.5-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:d3a978c4f57a597908b7e697229d996d77a6d3c94901e9edee593adada95ce1a", size = 2147009, upload-time = "2025-11-04T13:43:23.286Z" }, { url = "https://files.pythonhosted.org/packages/5f/9b/1b3f0e9f9305839d7e84912f9e8bfbd191ed1b1ef48083609f0dabde978c/pydantic_core-2.41.5-pp311-pypy311_pp73-macosx_10_12_x86_64.whl", hash = "sha256:b2379fa7ed44ddecb5bfe4e48577d752db9fc10be00a6b7446e9663ba143de26", size = 2101980, upload-time = "2025-11-04T13:43:25.97Z" }, { url = "https://files.pythonhosted.org/packages/a4/ed/d71fefcb4263df0da6a85b5d8a7508360f2f2e9b3bf5814be9c8bccdccc1/pydantic_core-2.41.5-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:266fb4cbf5e3cbd0b53669a6d1b039c45e3ce651fd5442eff4d07c2cc8d66808", size = 1923865, upload-time = "2025-11-04T13:43:28.763Z" }, { url = "https://files.pythonhosted.org/packages/ce/3a/626b38db460d675f873e4444b4bb030453bbe7b4ba55df821d026a0493c4/pydantic_core-2.41.5-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:58133647260ea01e4d0500089a8c4f07bd7aa6ce109682b1426394988d8aaacc", size = 2134256, upload-time = "2025-11-04T13:43:31.71Z" }, @@ -7477,8 +3605,7 @@ wheels = [ [package.optional-dependencies] pycountry = [ - { name = "pycountry", version = "24.6.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "pycountry", version = "26.2.16", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "pycountry" }, ] [[package]] @@ -7504,9 +3631,8 @@ name = "pyloudnorm" version = "0.2.0" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "numpy", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "scipy", version = "1.15.3", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version == '3.10.*' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "scipy", version = "1.17.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "numpy" }, + { name = "scipy" }, ] sdist = { url = "https://files.pythonhosted.org/packages/23/00/f915eaa75326f4209941179c2b93ac477f2040e4aeff5bb21d16eb8058f9/pyloudnorm-0.2.0.tar.gz", hash = "sha256:8bf597658ea4e1975c275adf490f6deb5369ea409f2901f939915efa4b681b16", size = 14037, upload-time = "2026-01-04T11:43:35.265Z" } wheels = [ @@ -7522,261 +3648,29 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/10/bd/c038d7cc38edc1aa5bf91ab8068b63d4308c66c4c8bb3cbba7dfbc049f9c/pyparsing-3.3.2-py3-none-any.whl", hash = "sha256:850ba148bd908d7e2411587e247a1e4f0327839c40e2e5e6d05a007ecc69911d", size = 122781, upload-time = "2026-01-21T03:57:55.912Z" }, ] -[[package]] -name = "pyreadline3" -version = "3.5.4" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/0f/49/4cea918a08f02817aabae639e3d0ac046fef9f9180518a3ad394e22da148/pyreadline3-3.5.4.tar.gz", hash = "sha256:8d57d53039a1c75adba8e50dd3d992b28143480816187ea5efbd5c78e6c885b7", size = 99839, upload-time = "2024-09-19T02:40:10.062Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/5a/dc/491b7661614ab97483abf2056be1deee4dc2490ecbf7bff9ab5cdbac86e1/pyreadline3-3.5.4-py3-none-any.whl", hash = "sha256:eaf8e6cc3c49bcccf145fc6067ba8643d1df34d604a1ec0eccbf7a18e6d3fae6", size = 83178, upload-time = "2024-09-19T02:40:08.598Z" }, -] - -[[package]] -name = "pytest" -version = "8.4.2" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", -] -dependencies = [ - { name = "colorama", marker = "(python_full_version < '3.10' and sys_platform == 'win32') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "exceptiongroup", marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "iniconfig", version = "2.1.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "packaging", marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "pluggy", marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "pygments", marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "tomli", marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/a3/5c/00a0e072241553e1a7496d638deababa67c5058571567b92a7eaa258397c/pytest-8.4.2.tar.gz", hash = "sha256:86c0d0b93306b961d58d62a4db4879f27fe25513d4b969df351abdddb3c30e01", size = 1519618, upload-time = "2025-09-04T14:34:22.711Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/a8/a4/20da314d277121d6534b3a980b29035dcd51e6744bd79075a6ce8fa4eb8d/pytest-8.4.2-py3-none-any.whl", hash = "sha256:872f880de3fc3a5bdc88a11b39c9710c3497a547cfa9320bc3c5e62fbf272e79", size = 365750, upload-time = "2025-09-04T14:34:20.226Z" }, -] - [[package]] name = "pytest" version = "9.0.2" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.11.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.10.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.11.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.10.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", -] dependencies = [ - { name = "colorama", marker = "(python_full_version >= '3.10' and sys_platform == 'win32') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'win32' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "exceptiongroup", marker = "python_full_version == '3.10.*' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "iniconfig", version = "2.3.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "packaging", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "pluggy", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "pygments", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "tomli", marker = "python_full_version == '3.10.*' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "colorama", marker = "sys_platform == 'win32' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "iniconfig" }, + { name = "packaging" }, + { name = "pluggy" }, + { name = "pygments" }, ] sdist = { url = "https://files.pythonhosted.org/packages/d1/db/7ef3487e0fb0049ddb5ce41d3a49c235bf9ad299b6a25d5780a89f19230f/pytest-9.0.2.tar.gz", hash = "sha256:75186651a92bd89611d1d9fc20f0b4345fd827c41ccd5c299a868a05d70edf11", size = 1568901, upload-time = "2025-12-06T21:30:51.014Z" } wheels = [ { url = "https://files.pythonhosted.org/packages/3b/ab/b3226f0bd7cdcf710fbede2b3548584366da3b19b5021e74f5bde2a8fa3f/pytest-9.0.2-py3-none-any.whl", hash = "sha256:711ffd45bf766d5264d487b917733b453d917afd2b0ad65223959f59089f875b", size = 374801, upload-time = "2025-12-06T21:30:49.154Z" }, ] -[[package]] -name = "pytest-asyncio" -version = "1.2.0" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", -] -dependencies = [ - { name = "backports-asyncio-runner", marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "pytest", version = "8.4.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "typing-extensions", marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/42/86/9e3c5f48f7b7b638b216e4b9e645f54d199d7abbbab7a64a13b4e12ba10f/pytest_asyncio-1.2.0.tar.gz", hash = "sha256:c609a64a2a8768462d0c99811ddb8bd2583c33fd33cf7f21af1c142e824ffb57", size = 50119, upload-time = "2025-09-12T07:33:53.816Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/04/93/2fa34714b7a4ae72f2f8dad66ba17dd9a2c793220719e736dda28b7aec27/pytest_asyncio-1.2.0-py3-none-any.whl", hash = "sha256:8e17ae5e46d8e7efe51ab6494dd2010f4ca8dae51652aa3c8d55acf50bfb2e99", size = 15095, upload-time = "2025-09-12T07:33:52.639Z" }, -] - [[package]] name = "pytest-asyncio" version = "1.3.0" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.11.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.10.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.11.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.10.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", -] dependencies = [ - { name = "backports-asyncio-runner", marker = "python_full_version == '3.10.*' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "pytest", version = "9.0.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "typing-extensions", marker = "(python_full_version >= '3.10' and python_full_version < '3.13') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "pytest" }, + { name = "typing-extensions", marker = "python_full_version < '3.13' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/90/2c/8af215c0f776415f3590cac4f9086ccefd6fd463befeae41cd4d3f193e5a/pytest_asyncio-1.3.0.tar.gz", hash = "sha256:d7f52f36d231b80ee124cd216ffb19369aa168fc10095013c6b014a34d3ee9e5", size = 50087, upload-time = "2025-11-10T16:07:47.256Z" } wheels = [ @@ -7795,136 +3689,21 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/ec/57/56b9bcc3c9c6a792fcbaf139543cee77261f3651ca9da0c93f5c1221264b/python_dateutil-2.9.0.post0-py2.py3-none-any.whl", hash = "sha256:a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427", size = 229892, upload-time = "2024-03-01T18:36:18.57Z" }, ] -[[package]] -name = "pytorch-lightning" -version = "2.6.0" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", -] -dependencies = [ - { name = "fsspec", extra = ["http"], marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "lightning-utilities", version = "0.15.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "packaging", marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "pyyaml", marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and sys_platform == 'darwin') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.8.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(python_full_version < '3.10' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.8.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torchmetrics", marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "tqdm", marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "typing-extensions", marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/07/d7/e3963d9669758f93b07941f4e2e82a394eb3d0980e29baa4764f3bad6689/pytorch_lightning-2.6.0.tar.gz", hash = "sha256:25b0d4f05e1f33b72be0920c34d0465777fe5f623228f9d6252b4b0f685d7037", size = 658853, upload-time = "2025-11-28T09:34:13.098Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/77/eb/cc6dbfe70d15318dbce82674b1e8057cef2634ca9f9121a16b8a06c630db/pytorch_lightning-2.6.0-py3-none-any.whl", hash = "sha256:ee72cff4b8c983ecfaae8599382544bd5236d9eb300adc7dd305f359195f4e79", size = 849476, upload-time = "2025-11-28T09:34:11.271Z" }, -] - [[package]] name = "pytorch-lightning" version = "2.6.1" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.11.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.10.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.11.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.10.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", -] dependencies = [ - { name = "fsspec", extra = ["http"], marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "lightning-utilities", version = "0.15.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "packaging", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "pyyaml", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.10.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version >= '3.10' and sys_platform == 'darwin') or (python_full_version >= '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.10.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(python_full_version >= '3.10' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.10.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(python_full_version >= '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torchmetrics", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "tqdm", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "typing-extensions", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "fsspec", extra = ["http"] }, + { name = "lightning-utilities" }, + { name = "packaging" }, + { name = "pyyaml" }, + { name = "torch", version = "2.10.0", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or sys_platform == 'darwin' or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.10.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.10.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torchmetrics" }, + { name = "tqdm" }, + { name = "typing-extensions" }, ] sdist = { url = "https://files.pythonhosted.org/packages/8b/ac/ebd5f6f58691cbd4f73836e43e1727f3814311b960c41f88e259606ca2b2/pytorch_lightning-2.6.1.tar.gz", hash = "sha256:ba08f8901cf226fcca473046ad9346f414e99117762dc869c76e650d5b3d7bdc", size = 665563, upload-time = "2026-01-30T14:59:11.636Z" } wheels = [ @@ -7937,15 +3716,10 @@ version = "2.9.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "numpy" }, - { name = "scikit-learn", version = "1.6.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "scikit-learn", version = "1.7.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version == '3.10.*' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "scikit-learn", version = "1.8.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and sys_platform == 'darwin') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.8.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(python_full_version < '3.10' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.8.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.10.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version >= '3.10' and sys_platform == 'darwin') or (python_full_version >= '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.10.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(python_full_version >= '3.10' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.10.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(python_full_version >= '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "scikit-learn" }, + { name = "torch", version = "2.10.0", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or sys_platform == 'darwin' or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.10.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.10.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, { name = "tqdm" }, ] sdist = { url = "https://files.pythonhosted.org/packages/9b/80/6e61b1a91debf4c1b47d441f9a9d7fe2aabcdd9575ed70b2811474eb95c3/pytorch-metric-learning-2.9.0.tar.gz", hash = "sha256:27a626caf5e2876a0fd666605a78cb67ef7597e25d7a68c18053dd503830701f", size = 84530, upload-time = "2025-08-17T17:11:19.501Z" } @@ -7968,15 +3742,6 @@ version = "6.0.3" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/05/8e/961c0007c59b8dd7729d542c61a4d537767a59645b82a0b521206e1e25c2/pyyaml-6.0.3.tar.gz", hash = "sha256:d76623373421df22fb4cf8817020cbb7ef15c725b9d5e45f17e189bfc384190f", size = 130960, upload-time = "2025-09-25T21:33:16.546Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/f4/a0/39350dd17dd6d6c6507025c0e53aef67a9293a6d37d3511f23ea510d5800/pyyaml-6.0.3-cp310-cp310-macosx_10_13_x86_64.whl", hash = "sha256:214ed4befebe12df36bcc8bc2b64b396ca31be9304b8f59e25c11cf94a4c033b", size = 184227, upload-time = "2025-09-25T21:31:46.04Z" }, - { url = "https://files.pythonhosted.org/packages/05/14/52d505b5c59ce73244f59c7a50ecf47093ce4765f116cdb98286a71eeca2/pyyaml-6.0.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:02ea2dfa234451bbb8772601d7b8e426c2bfa197136796224e50e35a78777956", size = 174019, upload-time = "2025-09-25T21:31:47.706Z" }, - { url = "https://files.pythonhosted.org/packages/43/f7/0e6a5ae5599c838c696adb4e6330a59f463265bfa1e116cfd1fbb0abaaae/pyyaml-6.0.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b30236e45cf30d2b8e7b3e85881719e98507abed1011bf463a8fa23e9c3e98a8", size = 740646, upload-time = "2025-09-25T21:31:49.21Z" }, - { url = "https://files.pythonhosted.org/packages/2f/3a/61b9db1d28f00f8fd0ae760459a5c4bf1b941baf714e207b6eb0657d2578/pyyaml-6.0.3-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:66291b10affd76d76f54fad28e22e51719ef9ba22b29e1d7d03d6777a9174198", size = 840793, upload-time = "2025-09-25T21:31:50.735Z" }, - { url = "https://files.pythonhosted.org/packages/7a/1e/7acc4f0e74c4b3d9531e24739e0ab832a5edf40e64fbae1a9c01941cabd7/pyyaml-6.0.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:9c7708761fccb9397fe64bbc0395abcae8c4bf7b0eac081e12b809bf47700d0b", size = 770293, upload-time = "2025-09-25T21:31:51.828Z" }, - { url = "https://files.pythonhosted.org/packages/8b/ef/abd085f06853af0cd59fa5f913d61a8eab65d7639ff2a658d18a25d6a89d/pyyaml-6.0.3-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:418cf3f2111bc80e0933b2cd8cd04f286338bb88bdc7bc8e6dd775ebde60b5e0", size = 732872, upload-time = "2025-09-25T21:31:53.282Z" }, - { url = "https://files.pythonhosted.org/packages/1f/15/2bc9c8faf6450a8b3c9fc5448ed869c599c0a74ba2669772b1f3a0040180/pyyaml-6.0.3-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:5e0b74767e5f8c593e8c9b5912019159ed0533c70051e9cce3e8b6aa699fcd69", size = 758828, upload-time = "2025-09-25T21:31:54.807Z" }, - { url = "https://files.pythonhosted.org/packages/a3/00/531e92e88c00f4333ce359e50c19b8d1de9fe8d581b1534e35ccfbc5f393/pyyaml-6.0.3-cp310-cp310-win32.whl", hash = "sha256:28c8d926f98f432f88adc23edf2e6d4921ac26fb084b028c733d01868d19007e", size = 142415, upload-time = "2025-09-25T21:31:55.885Z" }, - { url = "https://files.pythonhosted.org/packages/2a/fa/926c003379b19fca39dd4634818b00dec6c62d87faf628d1394e137354d4/pyyaml-6.0.3-cp310-cp310-win_amd64.whl", hash = "sha256:bdb2c67c6c1390b63c6ff89f210c8fd09d9a1217a465701eac7316313c915e4c", size = 158561, upload-time = "2025-09-25T21:31:57.406Z" }, { url = "https://files.pythonhosted.org/packages/6d/16/a95b6757765b7b031c9374925bb718d55e0a9ba8a1b6a12d25962ea44347/pyyaml-6.0.3-cp311-cp311-macosx_10_13_x86_64.whl", hash = "sha256:44edc647873928551a01e7a563d7452ccdebee747728c1080d881d68af7b997e", size = 185826, upload-time = "2025-09-25T21:31:58.655Z" }, { url = "https://files.pythonhosted.org/packages/16/19/13de8e4377ed53079ee996e1ab0a9c33ec2faf808a4647b7b4c0d46dd239/pyyaml-6.0.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:652cb6edd41e718550aad172851962662ff2681490a8a711af6a4d288dd96824", size = 175577, upload-time = "2025-09-25T21:32:00.088Z" }, { url = "https://files.pythonhosted.org/packages/0c/62/d2eb46264d4b157dae1275b573017abec435397aa59cbcdab6fc978a8af4/pyyaml-6.0.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:10892704fc220243f5305762e276552a0395f7beb4dbf9b14ec8fd43b57f126c", size = 775556, upload-time = "2025-09-25T21:32:01.31Z" }, @@ -8006,15 +3771,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/de/94/980b50a6531b3019e45ddeada0626d45fa85cbe22300844a7983285bed3b/pyyaml-6.0.3-cp313-cp313-win32.whl", hash = "sha256:d0eae10f8159e8fdad514efdc92d74fd8d682c933a6dd088030f3834bc8e6b26", size = 137427, upload-time = "2025-09-25T21:32:32.58Z" }, { url = "https://files.pythonhosted.org/packages/97/c9/39d5b874e8b28845e4ec2202b5da735d0199dbe5b8fb85f91398814a9a46/pyyaml-6.0.3-cp313-cp313-win_amd64.whl", hash = "sha256:79005a0d97d5ddabfeeea4cf676af11e647e41d81c9a7722a193022accdb6b7c", size = 154090, upload-time = "2025-09-25T21:32:33.659Z" }, { url = "https://files.pythonhosted.org/packages/73/e8/2bdf3ca2090f68bb3d75b44da7bbc71843b19c9f2b9cb9b0f4ab7a5a4329/pyyaml-6.0.3-cp313-cp313-win_arm64.whl", hash = "sha256:5498cd1645aa724a7c71c8f378eb29ebe23da2fc0d7a08071d89469bf1d2defb", size = 140246, upload-time = "2025-09-25T21:32:34.663Z" }, - { url = "https://files.pythonhosted.org/packages/9f/62/67fc8e68a75f738c9200422bf65693fb79a4cd0dc5b23310e5202e978090/pyyaml-6.0.3-cp39-cp39-macosx_10_13_x86_64.whl", hash = "sha256:b865addae83924361678b652338317d1bd7e79b1f4596f96b96c77a5a34b34da", size = 184450, upload-time = "2025-09-25T21:33:00.618Z" }, - { url = "https://files.pythonhosted.org/packages/ae/92/861f152ce87c452b11b9d0977952259aa7df792d71c1053365cc7b09cc08/pyyaml-6.0.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c3355370a2c156cffb25e876646f149d5d68f5e0a3ce86a5084dd0b64a994917", size = 174319, upload-time = "2025-09-25T21:33:02.086Z" }, - { url = "https://files.pythonhosted.org/packages/d0/cd/f0cfc8c74f8a030017a2b9c771b7f47e5dd702c3e28e5b2071374bda2948/pyyaml-6.0.3-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:3c5677e12444c15717b902a5798264fa7909e41153cdf9ef7ad571b704a63dd9", size = 737631, upload-time = "2025-09-25T21:33:03.25Z" }, - { url = "https://files.pythonhosted.org/packages/ef/b2/18f2bd28cd2055a79a46c9b0895c0b3d987ce40ee471cecf58a1a0199805/pyyaml-6.0.3-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:5ed875a24292240029e4483f9d4a4b8a1ae08843b9c54f43fcc11e404532a8a5", size = 836795, upload-time = "2025-09-25T21:33:05.014Z" }, - { url = "https://files.pythonhosted.org/packages/73/b9/793686b2d54b531203c160ef12bec60228a0109c79bae6c1277961026770/pyyaml-6.0.3-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:0150219816b6a1fa26fb4699fb7daa9caf09eb1999f3b70fb6e786805e80375a", size = 750767, upload-time = "2025-09-25T21:33:06.398Z" }, - { url = "https://files.pythonhosted.org/packages/a9/86/a137b39a611def2ed78b0e66ce2fe13ee701a07c07aebe55c340ed2a050e/pyyaml-6.0.3-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:fa160448684b4e94d80416c0fa4aac48967a969efe22931448d853ada8baf926", size = 727982, upload-time = "2025-09-25T21:33:08.708Z" }, - { url = "https://files.pythonhosted.org/packages/dd/62/71c27c94f457cf4418ef8ccc71735324c549f7e3ea9d34aba50874563561/pyyaml-6.0.3-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:27c0abcb4a5dac13684a37f76e701e054692a9b2d3064b70f5e4eb54810553d7", size = 755677, upload-time = "2025-09-25T21:33:09.876Z" }, - { url = "https://files.pythonhosted.org/packages/29/3d/6f5e0d58bd924fb0d06c3a6bad00effbdae2de5adb5cda5648006ffbd8d3/pyyaml-6.0.3-cp39-cp39-win32.whl", hash = "sha256:1ebe39cb5fc479422b83de611d14e2c0d3bb2a18bbcb01f229ab3cfbd8fee7a0", size = 142592, upload-time = "2025-09-25T21:33:10.983Z" }, - { url = "https://files.pythonhosted.org/packages/f0/0c/25113e0b5e103d7f1490c0e947e303fe4a696c10b501dea7a9f49d4e876c/pyyaml-6.0.3-cp39-cp39-win_amd64.whl", hash = "sha256:2e71d11abed7344e42a8849600193d15b6def118602c4c176f748e4583246007", size = 158777, upload-time = "2025-09-25T21:33:15.55Z" }, ] [[package]] @@ -8047,17 +3803,6 @@ version = "3.14.3" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/d3/28/9d808fe62375b9aab5ba92fa9b29371297b067c2790b2d7cda648b1e2f8d/rapidfuzz-3.14.3.tar.gz", hash = "sha256:2491937177868bc4b1e469087601d53f925e8d270ccc21e07404b4b5814b7b5f", size = 57863900, upload-time = "2025-11-01T11:54:52.321Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/69/d1/0efa42a602ed466d3ca1c462eed5d62015c3fd2a402199e2c4b87aa5aa25/rapidfuzz-3.14.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:b9fcd4d751a4fffa17aed1dde41647923c72c74af02459ad1222e3b0022da3a1", size = 1952376, upload-time = "2025-11-01T11:52:29.175Z" }, - { url = "https://files.pythonhosted.org/packages/be/00/37a169bb28b23850a164e6624b1eb299e1ad73c9e7c218ee15744e68d628/rapidfuzz-3.14.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:4ad73afb688b36864a8d9b7344a9cf6da186c471e5790cbf541a635ee0f457f2", size = 1390903, upload-time = "2025-11-01T11:52:31.239Z" }, - { url = "https://files.pythonhosted.org/packages/3c/91/b37207cbbdb6eaafac3da3f55ea85287b27745cb416e75e15769b7d8abe8/rapidfuzz-3.14.3-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c5fb2d978a601820d2cfd111e2c221a9a7bfdf84b41a3ccbb96ceef29f2f1ac7", size = 1385655, upload-time = "2025-11-01T11:52:32.852Z" }, - { url = "https://files.pythonhosted.org/packages/f2/bb/ca53e518acf43430be61f23b9c5987bd1e01e74fcb7a9ee63e00f597aefb/rapidfuzz-3.14.3-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:1d83b8b712fa37e06d59f29a4b49e2e9e8635e908fbc21552fe4d1163db9d2a1", size = 3164708, upload-time = "2025-11-01T11:52:34.618Z" }, - { url = "https://files.pythonhosted.org/packages/df/e1/7667bf2db3e52adb13cb933dd4a6a2efc66045d26fa150fc0feb64c26d61/rapidfuzz-3.14.3-cp310-cp310-manylinux_2_31_armv7l.whl", hash = "sha256:dc8c07801df5206b81ed6bd6c35cb520cf9b6c64b9b0d19d699f8633dc942897", size = 1221106, upload-time = "2025-11-01T11:52:36.069Z" }, - { url = "https://files.pythonhosted.org/packages/05/8a/84d9f2d46a2c8eb2ccae81747c4901fa10fe4010aade2d57ce7b4b8e02ec/rapidfuzz-3.14.3-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:c71ce6d4231e5ef2e33caa952bfe671cb9fd42e2afb11952df9fad41d5c821f9", size = 2406048, upload-time = "2025-11-01T11:52:37.936Z" }, - { url = "https://files.pythonhosted.org/packages/3c/a9/a0b7b7a1b81a020c034eb67c8e23b7e49f920004e295378de3046b0d99e1/rapidfuzz-3.14.3-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:0e38828d1381a0cceb8a4831212b2f673d46f5129a1897b0451c883eaf4a1747", size = 2527020, upload-time = "2025-11-01T11:52:39.657Z" }, - { url = "https://files.pythonhosted.org/packages/b4/bc/416df7d108b99b4942ba04dd4cf73c45c3aadb3ef003d95cad78b1d12eb9/rapidfuzz-3.14.3-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:da2a007434323904719158e50f3076a4dadb176ce43df28ed14610c773cc9825", size = 4273958, upload-time = "2025-11-01T11:52:41.017Z" }, - { url = "https://files.pythonhosted.org/packages/81/d0/b81e041c17cd475002114e0ab8800e4305e60837882cb376a621e520d70f/rapidfuzz-3.14.3-cp310-cp310-win32.whl", hash = "sha256:fce3152f94afcfd12f3dd8cf51e48fa606e3cb56719bccebe3b401f43d0714f9", size = 1725043, upload-time = "2025-11-01T11:52:42.465Z" }, - { url = "https://files.pythonhosted.org/packages/09/6b/64ad573337d81d64bc78a6a1df53a72a71d54d43d276ce0662c2e95a1f35/rapidfuzz-3.14.3-cp310-cp310-win_amd64.whl", hash = "sha256:37d3c653af15cd88592633e942f5407cb4c64184efab163c40fcebad05f25141", size = 1542273, upload-time = "2025-11-01T11:52:44.005Z" }, - { url = "https://files.pythonhosted.org/packages/f4/5e/faf76e259bc15808bc0b86028f510215c3d755b6c3a3911113079485e561/rapidfuzz-3.14.3-cp310-cp310-win_arm64.whl", hash = "sha256:cc594bbcd3c62f647dfac66800f307beaee56b22aaba1c005e9c4c40ed733923", size = 814875, upload-time = "2025-11-01T11:52:45.405Z" }, { url = "https://files.pythonhosted.org/packages/76/25/5b0a33ad3332ee1213068c66f7c14e9e221be90bab434f0cb4defa9d6660/rapidfuzz-3.14.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:dea2d113e260a5da0c4003e0a5e9fdf24a9dc2bb9eaa43abd030a1e46ce7837d", size = 1953885, upload-time = "2025-11-01T11:52:47.75Z" }, { url = "https://files.pythonhosted.org/packages/2d/ab/f1181f500c32c8fcf7c966f5920c7e56b9b1d03193386d19c956505c312d/rapidfuzz-3.14.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:e6c31a4aa68cfa75d7eede8b0ed24b9e458447db604c2db53f358be9843d81d3", size = 1390200, upload-time = "2025-11-01T11:52:49.491Z" }, { url = "https://files.pythonhosted.org/packages/14/2a/0f2de974ececad873865c6bb3ea3ad07c976ac293d5025b2d73325aac1d4/rapidfuzz-3.14.3-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:02821366d928e68ddcb567fed8723dad7ea3a979fada6283e6914d5858674850", size = 1389319, upload-time = "2025-11-01T11:52:51.224Z" }, @@ -8109,287 +3854,26 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/b1/ad/fa2d3e5c29a04ead7eaa731c7cd1f30f9ec3c77b3a578fdf90280797cbcb/rapidfuzz-3.14.3-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:56fefb4382bb12250f164250240b9dd7772e41c5c8ae976fd598a32292449cc5", size = 1511361, upload-time = "2025-11-01T11:54:49.057Z" }, ] -[[package]] -name = "referencing" -version = "0.36.2" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", -] -dependencies = [ - { name = "attrs", marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "rpds-py", version = "0.27.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "typing-extensions", marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/2f/db/98b5c277be99dd18bfd91dd04e1b759cad18d1a338188c936e92f921c7e2/referencing-0.36.2.tar.gz", hash = "sha256:df2e89862cd09deabbdba16944cc3f10feb6b3e6f18e902f7cc25609a34775aa", size = 74744, upload-time = "2025-01-25T08:48:16.138Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/c1/b1/3baf80dc6d2b7bc27a95a67752d0208e410351e3feb4eb78de5f77454d8d/referencing-0.36.2-py3-none-any.whl", hash = "sha256:e8699adbbf8b5c7de96d8ffa0eb5c158b3beafce084968e2ea8bb08c6794dcd0", size = 26775, upload-time = "2025-01-25T08:48:14.241Z" }, -] - [[package]] name = "referencing" version = "0.37.0" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.11.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.10.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", -] dependencies = [ - { name = "attrs", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "rpds-py", version = "0.30.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "typing-extensions", marker = "(python_full_version >= '3.10' and python_full_version < '3.13') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "attrs" }, + { name = "rpds-py" }, + { name = "typing-extensions", marker = "python_full_version < '3.13' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/22/f5/df4e9027acead3ecc63e50fe1e36aca1523e1719559c499951bb4b53188f/referencing-0.37.0.tar.gz", hash = "sha256:44aefc3142c5b842538163acb373e24cce6632bd54bdb01b21ad5863489f50d8", size = 78036, upload-time = "2025-10-13T15:30:48.871Z" } wheels = [ { url = "https://files.pythonhosted.org/packages/2c/58/ca301544e1fa93ed4f80d724bf5b194f6e4b945841c5bfd555878eea9fcb/referencing-0.37.0-py3-none-any.whl", hash = "sha256:381329a9f99628c9069361716891d34ad94af76e461dcb0335825aecc7692231", size = 26766, upload-time = "2025-10-13T15:30:47.625Z" }, ] -[[package]] -name = "regex" -version = "2026.1.15" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", -] -sdist = { url = "https://files.pythonhosted.org/packages/0b/86/07d5056945f9ec4590b518171c4254a5925832eb727b56d3c38a7476f316/regex-2026.1.15.tar.gz", hash = "sha256:164759aa25575cbc0651bef59a0b18353e54300d79ace8084c818ad8ac72b7d5", size = 414811, upload-time = "2026-01-14T23:18:02.775Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/ea/d2/e6ee96b7dff201a83f650241c52db8e5bd080967cb93211f57aa448dc9d6/regex-2026.1.15-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:4e3dd93c8f9abe8aa4b6c652016da9a3afa190df5ad822907efe6b206c09896e", size = 488166, upload-time = "2026-01-14T23:13:46.408Z" }, - { url = "https://files.pythonhosted.org/packages/23/8a/819e9ce14c9f87af026d0690901b3931f3101160833e5d4c8061fa3a1b67/regex-2026.1.15-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:97499ff7862e868b1977107873dd1a06e151467129159a6ffd07b66706ba3a9f", size = 290632, upload-time = "2026-01-14T23:13:48.688Z" }, - { url = "https://files.pythonhosted.org/packages/d5/c3/23dfe15af25d1d45b07dfd4caa6003ad710dcdcb4c4b279909bdfe7a2de8/regex-2026.1.15-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:0bda75ebcac38d884240914c6c43d8ab5fb82e74cde6da94b43b17c411aa4c2b", size = 288500, upload-time = "2026-01-14T23:13:50.503Z" }, - { url = "https://files.pythonhosted.org/packages/c6/31/1adc33e2f717df30d2f4d973f8776d2ba6ecf939301efab29fca57505c95/regex-2026.1.15-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:7dcc02368585334f5bc81fc73a2a6a0bbade60e7d83da21cead622faf408f32c", size = 781670, upload-time = "2026-01-14T23:13:52.453Z" }, - { url = "https://files.pythonhosted.org/packages/23/ce/21a8a22d13bc4adcb927c27b840c948f15fc973e21ed2346c1bd0eae22dc/regex-2026.1.15-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:693b465171707bbe882a7a05de5e866f33c76aa449750bee94a8d90463533cc9", size = 850820, upload-time = "2026-01-14T23:13:54.894Z" }, - { url = "https://files.pythonhosted.org/packages/6c/4f/3eeacdf587a4705a44484cd0b30e9230a0e602811fb3e2cc32268c70d509/regex-2026.1.15-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:b0d190e6f013ea938623a58706d1469a62103fb2a241ce2873a9906e0386582c", size = 898777, upload-time = "2026-01-14T23:13:56.908Z" }, - { url = "https://files.pythonhosted.org/packages/79/a9/1898a077e2965c35fc22796488141a22676eed2d73701e37c73ad7c0b459/regex-2026.1.15-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:5ff818702440a5878a81886f127b80127f5d50563753a28211482867f8318106", size = 791750, upload-time = "2026-01-14T23:13:58.527Z" }, - { url = "https://files.pythonhosted.org/packages/4c/84/e31f9d149a178889b3817212827f5e0e8c827a049ff31b4b381e76b26e2d/regex-2026.1.15-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:f052d1be37ef35a54e394de66136e30fa1191fab64f71fc06ac7bc98c9a84618", size = 782674, upload-time = "2026-01-14T23:13:59.874Z" }, - { url = "https://files.pythonhosted.org/packages/d2/ff/adf60063db24532add6a1676943754a5654dcac8237af024ede38244fd12/regex-2026.1.15-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:6bfc31a37fd1592f0c4fc4bfc674b5c42e52efe45b4b7a6a14f334cca4bcebe4", size = 767906, upload-time = "2026-01-14T23:14:01.298Z" }, - { url = "https://files.pythonhosted.org/packages/af/3e/e6a216cee1e2780fec11afe7fc47b6f3925d7264e8149c607ac389fd9b1a/regex-2026.1.15-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3d6ce5ae80066b319ae3bc62fd55a557c9491baa5efd0d355f0de08c4ba54e79", size = 774798, upload-time = "2026-01-14T23:14:02.715Z" }, - { url = "https://files.pythonhosted.org/packages/0f/98/23a4a8378a9208514ed3efc7e7850c27fa01e00ed8557c958df0335edc4a/regex-2026.1.15-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:1704d204bd42b6bb80167df0e4554f35c255b579ba99616def38f69e14a5ccb9", size = 845861, upload-time = "2026-01-14T23:14:04.824Z" }, - { url = "https://files.pythonhosted.org/packages/f8/57/d7605a9d53bd07421a8785d349cd29677fe660e13674fa4c6cbd624ae354/regex-2026.1.15-cp310-cp310-musllinux_1_2_riscv64.whl", hash = "sha256:e3174a5ed4171570dc8318afada56373aa9289eb6dc0d96cceb48e7358b0e220", size = 755648, upload-time = "2026-01-14T23:14:06.371Z" }, - { url = "https://files.pythonhosted.org/packages/6f/76/6f2e24aa192da1e299cc1101674a60579d3912391867ce0b946ba83e2194/regex-2026.1.15-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:87adf5bd6d72e3e17c9cb59ac4096b1faaf84b7eb3037a5ffa61c4b4370f0f13", size = 836250, upload-time = "2026-01-14T23:14:08.343Z" }, - { url = "https://files.pythonhosted.org/packages/11/3a/1f2a1d29453299a7858eab7759045fc3d9d1b429b088dec2dc85b6fa16a2/regex-2026.1.15-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:e85dc94595f4d766bd7d872a9de5ede1ca8d3063f3bdf1e2c725f5eb411159e3", size = 779919, upload-time = "2026-01-14T23:14:09.954Z" }, - { url = "https://files.pythonhosted.org/packages/c0/67/eab9bc955c9dcc58e9b222c801e39cff7ca0b04261792a2149166ce7e792/regex-2026.1.15-cp310-cp310-win32.whl", hash = "sha256:21ca32c28c30d5d65fc9886ff576fc9b59bbca08933e844fa2363e530f4c8218", size = 265888, upload-time = "2026-01-14T23:14:11.35Z" }, - { url = "https://files.pythonhosted.org/packages/1d/62/31d16ae24e1f8803bddb0885508acecaec997fcdcde9c243787103119ae4/regex-2026.1.15-cp310-cp310-win_amd64.whl", hash = "sha256:3038a62fc7d6e5547b8915a3d927a0fbeef84cdbe0b1deb8c99bbd4a8961b52a", size = 277830, upload-time = "2026-01-14T23:14:12.908Z" }, - { url = "https://files.pythonhosted.org/packages/e5/36/5d9972bccd6417ecd5a8be319cebfd80b296875e7f116c37fb2a2deecebf/regex-2026.1.15-cp310-cp310-win_arm64.whl", hash = "sha256:505831646c945e3e63552cc1b1b9b514f0e93232972a2d5bedbcc32f15bc82e3", size = 270376, upload-time = "2026-01-14T23:14:14.782Z" }, - { url = "https://files.pythonhosted.org/packages/d0/c9/0c80c96eab96948363d270143138d671d5731c3a692b417629bf3492a9d6/regex-2026.1.15-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:1ae6020fb311f68d753b7efa9d4b9a5d47a5d6466ea0d5e3b5a471a960ea6e4a", size = 488168, upload-time = "2026-01-14T23:14:16.129Z" }, - { url = "https://files.pythonhosted.org/packages/17/f0/271c92f5389a552494c429e5cc38d76d1322eb142fb5db3c8ccc47751468/regex-2026.1.15-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:eddf73f41225942c1f994914742afa53dc0d01a6e20fe14b878a1b1edc74151f", size = 290636, upload-time = "2026-01-14T23:14:17.715Z" }, - { url = "https://files.pythonhosted.org/packages/a0/f9/5f1fd077d106ca5655a0f9ff8f25a1ab55b92128b5713a91ed7134ff688e/regex-2026.1.15-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:1e8cd52557603f5c66a548f69421310886b28b7066853089e1a71ee710e1cdc1", size = 288496, upload-time = "2026-01-14T23:14:19.326Z" }, - { url = "https://files.pythonhosted.org/packages/b5/e1/8f43b03a4968c748858ec77f746c286d81f896c2e437ccf050ebc5d3128c/regex-2026.1.15-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5170907244b14303edc5978f522f16c974f32d3aa92109fabc2af52411c9433b", size = 793503, upload-time = "2026-01-14T23:14:20.922Z" }, - { url = "https://files.pythonhosted.org/packages/8d/4e/a39a5e8edc5377a46a7c875c2f9a626ed3338cb3bb06931be461c3e1a34a/regex-2026.1.15-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:2748c1ec0663580b4510bd89941a31560b4b439a0b428b49472a3d9944d11cd8", size = 860535, upload-time = "2026-01-14T23:14:22.405Z" }, - { url = "https://files.pythonhosted.org/packages/dc/1c/9dce667a32a9477f7a2869c1c767dc00727284a9fa3ff5c09a5c6c03575e/regex-2026.1.15-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:2f2775843ca49360508d080eaa87f94fa248e2c946bbcd963bb3aae14f333413", size = 907225, upload-time = "2026-01-14T23:14:23.897Z" }, - { url = "https://files.pythonhosted.org/packages/a4/3c/87ca0a02736d16b6262921425e84b48984e77d8e4e572c9072ce96e66c30/regex-2026.1.15-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:d9ea2604370efc9a174c1b5dcc81784fb040044232150f7f33756049edfc9026", size = 800526, upload-time = "2026-01-14T23:14:26.039Z" }, - { url = "https://files.pythonhosted.org/packages/4b/ff/647d5715aeea7c87bdcbd2f578f47b415f55c24e361e639fe8c0cc88878f/regex-2026.1.15-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:0dcd31594264029b57bf16f37fd7248a70b3b764ed9e0839a8f271b2d22c0785", size = 773446, upload-time = "2026-01-14T23:14:28.109Z" }, - { url = "https://files.pythonhosted.org/packages/af/89/bf22cac25cb4ba0fe6bff52ebedbb65b77a179052a9d6037136ae93f42f4/regex-2026.1.15-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:c08c1f3e34338256732bd6938747daa3c0d5b251e04b6e43b5813e94d503076e", size = 783051, upload-time = "2026-01-14T23:14:29.929Z" }, - { url = "https://files.pythonhosted.org/packages/1e/f4/6ed03e71dca6348a5188363a34f5e26ffd5db1404780288ff0d79513bce4/regex-2026.1.15-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:e43a55f378df1e7a4fa3547c88d9a5a9b7113f653a66821bcea4718fe6c58763", size = 854485, upload-time = "2026-01-14T23:14:31.366Z" }, - { url = "https://files.pythonhosted.org/packages/d9/9a/8e8560bd78caded8eb137e3e47612430a05b9a772caf60876435192d670a/regex-2026.1.15-cp311-cp311-musllinux_1_2_riscv64.whl", hash = "sha256:f82110ab962a541737bd0ce87978d4c658f06e7591ba899192e2712a517badbb", size = 762195, upload-time = "2026-01-14T23:14:32.802Z" }, - { url = "https://files.pythonhosted.org/packages/38/6b/61fc710f9aa8dfcd764fe27d37edfaa023b1a23305a0d84fccd5adb346ea/regex-2026.1.15-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:27618391db7bdaf87ac6c92b31e8f0dfb83a9de0075855152b720140bda177a2", size = 845986, upload-time = "2026-01-14T23:14:34.898Z" }, - { url = "https://files.pythonhosted.org/packages/fd/2e/fbee4cb93f9d686901a7ca8d94285b80405e8c34fe4107f63ffcbfb56379/regex-2026.1.15-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:bfb0d6be01fbae8d6655c8ca21b3b72458606c4aec9bbc932db758d47aba6db1", size = 788992, upload-time = "2026-01-14T23:14:37.116Z" }, - { url = "https://files.pythonhosted.org/packages/ed/14/3076348f3f586de64b1ab75a3fbabdaab7684af7f308ad43be7ef1849e55/regex-2026.1.15-cp311-cp311-win32.whl", hash = "sha256:b10e42a6de0e32559a92f2f8dc908478cc0fa02838d7dbe764c44dca3fa13569", size = 265893, upload-time = "2026-01-14T23:14:38.426Z" }, - { url = "https://files.pythonhosted.org/packages/0f/19/772cf8b5fc803f5c89ba85d8b1870a1ca580dc482aa030383a9289c82e44/regex-2026.1.15-cp311-cp311-win_amd64.whl", hash = "sha256:e9bf3f0bbdb56633c07d7116ae60a576f846efdd86a8848f8d62b749e1209ca7", size = 277840, upload-time = "2026-01-14T23:14:39.785Z" }, - { url = "https://files.pythonhosted.org/packages/78/84/d05f61142709474da3c0853222d91086d3e1372bcdab516c6fd8d80f3297/regex-2026.1.15-cp311-cp311-win_arm64.whl", hash = "sha256:41aef6f953283291c4e4e6850607bd71502be67779586a61472beacb315c97ec", size = 270374, upload-time = "2026-01-14T23:14:41.592Z" }, - { url = "https://files.pythonhosted.org/packages/92/81/10d8cf43c807d0326efe874c1b79f22bfb0fb226027b0b19ebc26d301408/regex-2026.1.15-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:4c8fcc5793dde01641a35905d6731ee1548f02b956815f8f1cab89e515a5bdf1", size = 489398, upload-time = "2026-01-14T23:14:43.741Z" }, - { url = "https://files.pythonhosted.org/packages/90/b0/7c2a74e74ef2a7c32de724658a69a862880e3e4155cba992ba04d1c70400/regex-2026.1.15-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:bfd876041a956e6a90ad7cdb3f6a630c07d491280bfeed4544053cd434901681", size = 291339, upload-time = "2026-01-14T23:14:45.183Z" }, - { url = "https://files.pythonhosted.org/packages/19/4d/16d0773d0c818417f4cc20aa0da90064b966d22cd62a8c46765b5bd2d643/regex-2026.1.15-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:9250d087bc92b7d4899ccd5539a1b2334e44eee85d848c4c1aef8e221d3f8c8f", size = 289003, upload-time = "2026-01-14T23:14:47.25Z" }, - { url = "https://files.pythonhosted.org/packages/c6/e4/1fc4599450c9f0863d9406e944592d968b8d6dfd0d552a7d569e43bceada/regex-2026.1.15-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c8a154cf6537ebbc110e24dabe53095e714245c272da9c1be05734bdad4a61aa", size = 798656, upload-time = "2026-01-14T23:14:48.77Z" }, - { url = "https://files.pythonhosted.org/packages/b2/e6/59650d73a73fa8a60b3a590545bfcf1172b4384a7df2e7fe7b9aab4e2da9/regex-2026.1.15-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:8050ba2e3ea1d8731a549e83c18d2f0999fbc99a5f6bd06b4c91449f55291804", size = 864252, upload-time = "2026-01-14T23:14:50.528Z" }, - { url = "https://files.pythonhosted.org/packages/6e/ab/1d0f4d50a1638849a97d731364c9a80fa304fec46325e48330c170ee8e80/regex-2026.1.15-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:0bf065240704cb8951cc04972cf107063917022511273e0969bdb34fc173456c", size = 912268, upload-time = "2026-01-14T23:14:52.952Z" }, - { url = "https://files.pythonhosted.org/packages/dd/df/0d722c030c82faa1d331d1921ee268a4e8fb55ca8b9042c9341c352f17fa/regex-2026.1.15-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:c32bef3e7aeee75746748643667668ef941d28b003bfc89994ecf09a10f7a1b5", size = 803589, upload-time = "2026-01-14T23:14:55.182Z" }, - { url = "https://files.pythonhosted.org/packages/66/23/33289beba7ccb8b805c6610a8913d0131f834928afc555b241caabd422a9/regex-2026.1.15-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:d5eaa4a4c5b1906bd0d2508d68927f15b81821f85092e06f1a34a4254b0e1af3", size = 775700, upload-time = "2026-01-14T23:14:56.707Z" }, - { url = "https://files.pythonhosted.org/packages/e7/65/bf3a42fa6897a0d3afa81acb25c42f4b71c274f698ceabd75523259f6688/regex-2026.1.15-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:86c1077a3cc60d453d4084d5b9649065f3bf1184e22992bd322e1f081d3117fb", size = 787928, upload-time = "2026-01-14T23:14:58.312Z" }, - { url = "https://files.pythonhosted.org/packages/f4/f5/13bf65864fc314f68cdd6d8ca94adcab064d4d39dbd0b10fef29a9da48fc/regex-2026.1.15-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:2b091aefc05c78d286657cd4db95f2e6313375ff65dcf085e42e4c04d9c8d410", size = 858607, upload-time = "2026-01-14T23:15:00.657Z" }, - { url = "https://files.pythonhosted.org/packages/a3/31/040e589834d7a439ee43fb0e1e902bc81bd58a5ba81acffe586bb3321d35/regex-2026.1.15-cp312-cp312-musllinux_1_2_riscv64.whl", hash = "sha256:57e7d17f59f9ebfa9667e6e5a1c0127b96b87cb9cede8335482451ed00788ba4", size = 763729, upload-time = "2026-01-14T23:15:02.248Z" }, - { url = "https://files.pythonhosted.org/packages/9b/84/6921e8129687a427edf25a34a5594b588b6d88f491320b9de5b6339a4fcb/regex-2026.1.15-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:c6c4dcdfff2c08509faa15d36ba7e5ef5fcfab25f1e8f85a0c8f45bc3a30725d", size = 850697, upload-time = "2026-01-14T23:15:03.878Z" }, - { url = "https://files.pythonhosted.org/packages/8a/87/3d06143d4b128f4229158f2de5de6c8f2485170c7221e61bf381313314b2/regex-2026.1.15-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:cf8ff04c642716a7f2048713ddc6278c5fd41faa3b9cab12607c7abecd012c22", size = 789849, upload-time = "2026-01-14T23:15:06.102Z" }, - { url = "https://files.pythonhosted.org/packages/77/69/c50a63842b6bd48850ebc7ab22d46e7a2a32d824ad6c605b218441814639/regex-2026.1.15-cp312-cp312-win32.whl", hash = "sha256:82345326b1d8d56afbe41d881fdf62f1926d7264b2fc1537f99ae5da9aad7913", size = 266279, upload-time = "2026-01-14T23:15:07.678Z" }, - { url = "https://files.pythonhosted.org/packages/f2/36/39d0b29d087e2b11fd8191e15e81cce1b635fcc845297c67f11d0d19274d/regex-2026.1.15-cp312-cp312-win_amd64.whl", hash = "sha256:4def140aa6156bc64ee9912383d4038f3fdd18fee03a6f222abd4de6357ce42a", size = 277166, upload-time = "2026-01-14T23:15:09.257Z" }, - { url = "https://files.pythonhosted.org/packages/28/32/5b8e476a12262748851fa8ab1b0be540360692325975b094e594dfebbb52/regex-2026.1.15-cp312-cp312-win_arm64.whl", hash = "sha256:c6c565d9a6e1a8d783c1948937ffc377dd5771e83bd56de8317c450a954d2056", size = 270415, upload-time = "2026-01-14T23:15:10.743Z" }, - { url = "https://files.pythonhosted.org/packages/f8/2e/6870bb16e982669b674cce3ee9ff2d1d46ab80528ee6bcc20fb2292efb60/regex-2026.1.15-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:e69d0deeb977ffe7ed3d2e4439360089f9c3f217ada608f0f88ebd67afb6385e", size = 489164, upload-time = "2026-01-14T23:15:13.962Z" }, - { url = "https://files.pythonhosted.org/packages/dc/67/9774542e203849b0286badf67199970a44ebdb0cc5fb739f06e47ada72f8/regex-2026.1.15-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:3601ffb5375de85a16f407854d11cca8fe3f5febbe3ac78fb2866bb220c74d10", size = 291218, upload-time = "2026-01-14T23:15:15.647Z" }, - { url = "https://files.pythonhosted.org/packages/b2/87/b0cda79f22b8dee05f774922a214da109f9a4c0eca5da2c9d72d77ea062c/regex-2026.1.15-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:4c5ef43b5c2d4114eb8ea424bb8c9cec01d5d17f242af88b2448f5ee81caadbc", size = 288895, upload-time = "2026-01-14T23:15:17.788Z" }, - { url = "https://files.pythonhosted.org/packages/3b/6a/0041f0a2170d32be01ab981d6346c83a8934277d82c780d60b127331f264/regex-2026.1.15-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:968c14d4f03e10b2fd960f1d5168c1f0ac969381d3c1fcc973bc45fb06346599", size = 798680, upload-time = "2026-01-14T23:15:19.342Z" }, - { url = "https://files.pythonhosted.org/packages/58/de/30e1cfcdbe3e891324aa7568b7c968771f82190df5524fabc1138cb2d45a/regex-2026.1.15-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:56a5595d0f892f214609c9f76b41b7428bed439d98dc961efafdd1354d42baae", size = 864210, upload-time = "2026-01-14T23:15:22.005Z" }, - { url = "https://files.pythonhosted.org/packages/64/44/4db2f5c5ca0ccd40ff052ae7b1e9731352fcdad946c2b812285a7505ca75/regex-2026.1.15-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:0bf650f26087363434c4e560011f8e4e738f6f3e029b85d4904c50135b86cfa5", size = 912358, upload-time = "2026-01-14T23:15:24.569Z" }, - { url = "https://files.pythonhosted.org/packages/79/b6/e6a5665d43a7c42467138c8a2549be432bad22cbd206f5ec87162de74bd7/regex-2026.1.15-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:18388a62989c72ac24de75f1449d0fb0b04dfccd0a1a7c1c43af5eb503d890f6", size = 803583, upload-time = "2026-01-14T23:15:26.526Z" }, - { url = "https://files.pythonhosted.org/packages/e7/53/7cd478222169d85d74d7437e74750005e993f52f335f7c04ff7adfda3310/regex-2026.1.15-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:6d220a2517f5893f55daac983bfa9fe998a7dbcaee4f5d27a88500f8b7873788", size = 775782, upload-time = "2026-01-14T23:15:29.352Z" }, - { url = "https://files.pythonhosted.org/packages/ca/b5/75f9a9ee4b03a7c009fe60500fe550b45df94f0955ca29af16333ef557c5/regex-2026.1.15-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c9c08c2fbc6120e70abff5d7f28ffb4d969e14294fb2143b4b5c7d20e46d1714", size = 787978, upload-time = "2026-01-14T23:15:31.295Z" }, - { url = "https://files.pythonhosted.org/packages/72/b3/79821c826245bbe9ccbb54f6eadb7879c722fd3e0248c17bfc90bf54e123/regex-2026.1.15-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:7ef7d5d4bd49ec7364315167a4134a015f61e8266c6d446fc116a9ac4456e10d", size = 858550, upload-time = "2026-01-14T23:15:33.558Z" }, - { url = "https://files.pythonhosted.org/packages/4a/85/2ab5f77a1c465745bfbfcb3ad63178a58337ae8d5274315e2cc623a822fa/regex-2026.1.15-cp313-cp313-musllinux_1_2_riscv64.whl", hash = "sha256:6e42844ad64194fa08d5ccb75fe6a459b9b08e6d7296bd704460168d58a388f3", size = 763747, upload-time = "2026-01-14T23:15:35.206Z" }, - { url = "https://files.pythonhosted.org/packages/6d/84/c27df502d4bfe2873a3e3a7cf1bdb2b9cc10284d1a44797cf38bed790470/regex-2026.1.15-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:cfecdaa4b19f9ca534746eb3b55a5195d5c95b88cac32a205e981ec0a22b7d31", size = 850615, upload-time = "2026-01-14T23:15:37.523Z" }, - { url = "https://files.pythonhosted.org/packages/7d/b7/658a9782fb253680aa8ecb5ccbb51f69e088ed48142c46d9f0c99b46c575/regex-2026.1.15-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:08df9722d9b87834a3d701f3fca570b2be115654dbfd30179f30ab2f39d606d3", size = 789951, upload-time = "2026-01-14T23:15:39.582Z" }, - { url = "https://files.pythonhosted.org/packages/fc/2a/5928af114441e059f15b2f63e188bd00c6529b3051c974ade7444b85fcda/regex-2026.1.15-cp313-cp313-win32.whl", hash = "sha256:d426616dae0967ca225ab12c22274eb816558f2f99ccb4a1d52ca92e8baf180f", size = 266275, upload-time = "2026-01-14T23:15:42.108Z" }, - { url = "https://files.pythonhosted.org/packages/4f/16/5bfbb89e435897bff28cf0352a992ca719d9e55ebf8b629203c96b6ce4f7/regex-2026.1.15-cp313-cp313-win_amd64.whl", hash = "sha256:febd38857b09867d3ed3f4f1af7d241c5c50362e25ef43034995b77a50df494e", size = 277145, upload-time = "2026-01-14T23:15:44.244Z" }, - { url = "https://files.pythonhosted.org/packages/56/c1/a09ff7392ef4233296e821aec5f78c51be5e91ffde0d163059e50fd75835/regex-2026.1.15-cp313-cp313-win_arm64.whl", hash = "sha256:8e32f7896f83774f91499d239e24cebfadbc07639c1494bb7213983842348337", size = 270411, upload-time = "2026-01-14T23:15:45.858Z" }, - { url = "https://files.pythonhosted.org/packages/3c/38/0cfd5a78e5c6db00e6782fdae70458f89850ce95baa5e8694ab91d89744f/regex-2026.1.15-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:ec94c04149b6a7b8120f9f44565722c7ae31b7a6d2275569d2eefa76b83da3be", size = 492068, upload-time = "2026-01-14T23:15:47.616Z" }, - { url = "https://files.pythonhosted.org/packages/50/72/6c86acff16cb7c959c4355826bbf06aad670682d07c8f3998d9ef4fee7cd/regex-2026.1.15-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:40c86d8046915bb9aeb15d3f3f15b6fd500b8ea4485b30e1bbc799dab3fe29f8", size = 292756, upload-time = "2026-01-14T23:15:49.307Z" }, - { url = "https://files.pythonhosted.org/packages/4e/58/df7fb69eadfe76526ddfce28abdc0af09ffe65f20c2c90932e89d705153f/regex-2026.1.15-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:726ea4e727aba21643205edad8f2187ec682d3305d790f73b7a51c7587b64bdd", size = 291114, upload-time = "2026-01-14T23:15:51.484Z" }, - { url = "https://files.pythonhosted.org/packages/ed/6c/a4011cd1cf96b90d2cdc7e156f91efbd26531e822a7fbb82a43c1016678e/regex-2026.1.15-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1cb740d044aff31898804e7bf1181cc72c03d11dfd19932b9911ffc19a79070a", size = 807524, upload-time = "2026-01-14T23:15:53.102Z" }, - { url = "https://files.pythonhosted.org/packages/1d/25/a53ffb73183f69c3e9f4355c4922b76d2840aee160af6af5fac229b6201d/regex-2026.1.15-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:05d75a668e9ea16f832390d22131fe1e8acc8389a694c8febc3e340b0f810b93", size = 873455, upload-time = "2026-01-14T23:15:54.956Z" }, - { url = "https://files.pythonhosted.org/packages/66/0b/8b47fc2e8f97d9b4a851736f3890a5f786443aa8901061c55f24c955f45b/regex-2026.1.15-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:d991483606f3dbec93287b9f35596f41aa2e92b7c2ebbb935b63f409e243c9af", size = 915007, upload-time = "2026-01-14T23:15:57.041Z" }, - { url = "https://files.pythonhosted.org/packages/c2/fa/97de0d681e6d26fabe71968dbee06dd52819e9a22fdce5dac7256c31ed84/regex-2026.1.15-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:194312a14819d3e44628a44ed6fea6898fdbecb0550089d84c403475138d0a09", size = 812794, upload-time = "2026-01-14T23:15:58.916Z" }, - { url = "https://files.pythonhosted.org/packages/22/38/e752f94e860d429654aa2b1c51880bff8dfe8f084268258adf9151cf1f53/regex-2026.1.15-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:fe2fda4110a3d0bc163c2e0664be44657431440722c5c5315c65155cab92f9e5", size = 781159, upload-time = "2026-01-14T23:16:00.817Z" }, - { url = "https://files.pythonhosted.org/packages/e9/a7/d739ffaef33c378fc888302a018d7f81080393d96c476b058b8c64fd2b0d/regex-2026.1.15-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:124dc36c85d34ef2d9164da41a53c1c8c122cfb1f6e1ec377a1f27ee81deb794", size = 795558, upload-time = "2026-01-14T23:16:03.267Z" }, - { url = "https://files.pythonhosted.org/packages/3e/c4/542876f9a0ac576100fc73e9c75b779f5c31e3527576cfc9cb3009dcc58a/regex-2026.1.15-cp313-cp313t-musllinux_1_2_ppc64le.whl", hash = "sha256:a1774cd1981cd212506a23a14dba7fdeaee259f5deba2df6229966d9911e767a", size = 868427, upload-time = "2026-01-14T23:16:05.646Z" }, - { url = "https://files.pythonhosted.org/packages/fc/0f/d5655bea5b22069e32ae85a947aa564912f23758e112cdb74212848a1a1b/regex-2026.1.15-cp313-cp313t-musllinux_1_2_riscv64.whl", hash = "sha256:b5f7d8d2867152cdb625e72a530d2ccb48a3d199159144cbdd63870882fb6f80", size = 769939, upload-time = "2026-01-14T23:16:07.542Z" }, - { url = "https://files.pythonhosted.org/packages/20/06/7e18a4fa9d326daeda46d471a44ef94201c46eaa26dbbb780b5d92cbfdda/regex-2026.1.15-cp313-cp313t-musllinux_1_2_s390x.whl", hash = "sha256:492534a0ab925d1db998defc3c302dae3616a2fc3fe2e08db1472348f096ddf2", size = 854753, upload-time = "2026-01-14T23:16:10.395Z" }, - { url = "https://files.pythonhosted.org/packages/3b/67/dc8946ef3965e166f558ef3b47f492bc364e96a265eb4a2bb3ca765c8e46/regex-2026.1.15-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:c661fc820cfb33e166bf2450d3dadbda47c8d8981898adb9b6fe24e5e582ba60", size = 799559, upload-time = "2026-01-14T23:16:12.347Z" }, - { url = "https://files.pythonhosted.org/packages/a5/61/1bba81ff6d50c86c65d9fd84ce9699dd106438ee4cdb105bf60374ee8412/regex-2026.1.15-cp313-cp313t-win32.whl", hash = "sha256:99ad739c3686085e614bf77a508e26954ff1b8f14da0e3765ff7abbf7799f952", size = 268879, upload-time = "2026-01-14T23:16:14.049Z" }, - { url = "https://files.pythonhosted.org/packages/e9/5e/cef7d4c5fb0ea3ac5c775fd37db5747f7378b29526cc83f572198924ff47/regex-2026.1.15-cp313-cp313t-win_amd64.whl", hash = "sha256:32655d17905e7ff8ba5c764c43cb124e34a9245e45b83c22e81041e1071aee10", size = 280317, upload-time = "2026-01-14T23:16:15.718Z" }, - { url = "https://files.pythonhosted.org/packages/b4/52/4317f7a5988544e34ab57b4bde0f04944c4786128c933fb09825924d3e82/regex-2026.1.15-cp313-cp313t-win_arm64.whl", hash = "sha256:b2a13dd6a95e95a489ca242319d18fc02e07ceb28fa9ad146385194d95b3c829", size = 271551, upload-time = "2026-01-14T23:16:17.533Z" }, - { url = "https://files.pythonhosted.org/packages/a2/e7/0e1913dc52eee9c5cf8417c9813c4c55972a3f37d27cfa2e623b79b63dbc/regex-2026.1.15-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:55b4ea996a8e4458dd7b584a2f89863b1655dd3d17b88b46cbb9becc495a0ec5", size = 488185, upload-time = "2026-01-14T23:17:25.2Z" }, - { url = "https://files.pythonhosted.org/packages/78/df/c52c1ff4221529faad0953e197982fe9508c6dbb42327e31bf98ea07472a/regex-2026.1.15-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:7e1e28be779884189cdd57735e997f282b64fd7ccf6e2eef3e16e57d7a34a815", size = 290628, upload-time = "2026-01-14T23:17:27.125Z" }, - { url = "https://files.pythonhosted.org/packages/4b/d2/a2fef3717deaff647d7de2bccf899a576c7eaf042b6b271fc4474515fe97/regex-2026.1.15-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:0057de9eaef45783ff69fa94ae9f0fd906d629d0bd4c3217048f46d1daa32e9b", size = 288509, upload-time = "2026-01-14T23:17:29.017Z" }, - { url = "https://files.pythonhosted.org/packages/70/89/faf5ee5c69168753c845a3d58b4683f61c899d162bfe1264fca88d5b3924/regex-2026.1.15-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:cc7cd0b2be0f0269283a45c0d8b2c35e149d1319dcb4a43c9c3689fa935c1ee6", size = 781088, upload-time = "2026-01-14T23:17:30.961Z" }, - { url = "https://files.pythonhosted.org/packages/7d/2c/707e5c380ad547c93686e21144e7e24dc2064dd84ec5b751b6dbdfc9be2b/regex-2026.1.15-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:8db052bbd981e1666f09e957f3790ed74080c2229007c1dd67afdbf0b469c48b", size = 850516, upload-time = "2026-01-14T23:17:32.946Z" }, - { url = "https://files.pythonhosted.org/packages/5d/3b/baa816cdcad1c0f8195f9f40ab2b2a2246c8a2989dcd90641c0c6559e3fd/regex-2026.1.15-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:343db82cb3712c31ddf720f097ef17c11dab2f67f7a3e7be976c4f82eba4e6df", size = 898124, upload-time = "2026-01-14T23:17:36.019Z" }, - { url = "https://files.pythonhosted.org/packages/e7/74/1eb46bde30899825ed9fdf645eba16b7b97c49d12d300f5177989b9a09a4/regex-2026.1.15-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:55e9d0118d97794367309635df398bdfd7c33b93e2fdfa0b239661cd74b4c14e", size = 791290, upload-time = "2026-01-14T23:17:38.097Z" }, - { url = "https://files.pythonhosted.org/packages/c4/5d/b72e176fb21e2ec248baed01151a342d1f44dd43c2b6bb6a41ad183b274e/regex-2026.1.15-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:008b185f235acd1e53787333e5690082e4f156c44c87d894f880056089e9bc7c", size = 781996, upload-time = "2026-01-14T23:17:40.109Z" }, - { url = "https://files.pythonhosted.org/packages/61/0e/d3b3710eaafd994a4a71205d114abc38cda8691692a2ce2313abe68e7eb7/regex-2026.1.15-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:fd65af65e2aaf9474e468f9e571bd7b189e1df3a61caa59dcbabd0000e4ea839", size = 767578, upload-time = "2026-01-14T23:17:42.134Z" }, - { url = "https://files.pythonhosted.org/packages/09/51/c6a6311833e040f95d229a34d82ac1cec2af8a5c00d58b244f2fceecef87/regex-2026.1.15-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:f42e68301ff4afee63e365a5fc302b81bb8ba31af625a671d7acb19d10168a8c", size = 774354, upload-time = "2026-01-14T23:17:44.392Z" }, - { url = "https://files.pythonhosted.org/packages/cc/97/c522d1f19fb2c549aaf680b115c110cd124c02062bc8c95f33db8583b4bb/regex-2026.1.15-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:f7792f27d3ee6e0244ea4697d92b825f9a329ab5230a78c1a68bd274e64b5077", size = 845297, upload-time = "2026-01-14T23:17:47.145Z" }, - { url = "https://files.pythonhosted.org/packages/99/a0/99468c386ab68a5e24c946c5c353c29c33a95523e275c17839f2446db15d/regex-2026.1.15-cp39-cp39-musllinux_1_2_riscv64.whl", hash = "sha256:dbaf3c3c37ef190439981648ccbf0c02ed99ae066087dd117fcb616d80b010a4", size = 755132, upload-time = "2026-01-14T23:17:49.796Z" }, - { url = "https://files.pythonhosted.org/packages/70/33/d5748c7b6c9d3621f12570583561ba529e2d1b12e4f70b8f17979b133e65/regex-2026.1.15-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:adc97a9077c2696501443d8ad3fa1b4fc6d131fc8fd7dfefd1a723f89071cf0a", size = 835662, upload-time = "2026-01-14T23:17:52.559Z" }, - { url = "https://files.pythonhosted.org/packages/ad/15/1986972c276672505437f1ba3c9706c2d91f321cfb9b2f4d06e8bff1b999/regex-2026.1.15-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:069f56a7bf71d286a6ff932a9e6fb878f151c998ebb2519a9f6d1cee4bffdba3", size = 779513, upload-time = "2026-01-14T23:17:54.711Z" }, - { url = "https://files.pythonhosted.org/packages/bc/f9/124f6a5cb3969d8e30471ed4f46cfc17c47aef1a9863ee8b4ba1d98b1bc4/regex-2026.1.15-cp39-cp39-win32.whl", hash = "sha256:ea4e6b3566127fda5e007e90a8fd5a4169f0cf0619506ed426db647f19c8454a", size = 265923, upload-time = "2026-01-14T23:17:56.69Z" }, - { url = "https://files.pythonhosted.org/packages/7b/c2/bb8fad7d27f1d71fc9772befd544bccd22eddc62a6735f57b003b4aff005/regex-2026.1.15-cp39-cp39-win_amd64.whl", hash = "sha256:cda1ed70d2b264952e88adaa52eea653a33a1b98ac907ae2f86508eb44f65cdc", size = 277900, upload-time = "2026-01-14T23:17:58.72Z" }, - { url = "https://files.pythonhosted.org/packages/f7/fa/4e033327c1d8350bc812cac906d873984d3d4b39529252f392a47ccc356d/regex-2026.1.15-cp39-cp39-win_arm64.whl", hash = "sha256:b325d4714c3c48277bfea1accd94e193ad6ed42b4bad79ad64f3b8f8a31260a5", size = 270413, upload-time = "2026-01-14T23:18:00.764Z" }, -] - [[package]] name = "regex" version = "2026.2.19" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.11.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.10.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.11.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.10.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", -] sdist = { url = "https://files.pythonhosted.org/packages/ff/c0/d8079d4f6342e4cec5c3e7d7415b5cd3e633d5f4124f7a4626908dbe84c7/regex-2026.2.19.tar.gz", hash = "sha256:6fb8cb09b10e38f3ae17cc6dc04a1df77762bd0351b6ba9041438e7cc85ec310", size = 414973, upload-time = "2026-02-19T19:03:47.899Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/af/de/f10b4506acfd684de4e42b0aa56ccea1a778a18864da8f6d319a40591062/regex-2026.2.19-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:f5a37a17d110f9d5357a43aa7e3507cb077bf3143d1c549a45c4649e90e40a70", size = 488369, upload-time = "2026-02-19T18:59:45.01Z" }, - { url = "https://files.pythonhosted.org/packages/8b/2f/b4eaef1f0b4d0bf2a73eaf07c08f6c13422918a4180c9211ce0521746d0c/regex-2026.2.19-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:676c4e6847a83a1d5732b4ed553881ad36f0a8133627bb695a89ecf3571499d3", size = 290743, upload-time = "2026-02-19T18:59:48.527Z" }, - { url = "https://files.pythonhosted.org/packages/76/7c/805413bd0a88d04688c0725c222cfb811bd54a2f571004c24199a1ae55d6/regex-2026.2.19-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:82336faeecac33297cd42857c3b36f12b91810e3fdd276befdd128f73a2b43fa", size = 288652, upload-time = "2026-02-19T18:59:50.2Z" }, - { url = "https://files.pythonhosted.org/packages/08/ff/2c4cd530a878b1975398e76faef4285f11e7c9ccf1aaedfd528bfcc1f580/regex-2026.2.19-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:52136f5b71f095cb74b736cc3a1b578030dada2e361ef2f07ca582240b703946", size = 781759, upload-time = "2026-02-19T18:59:51.836Z" }, - { url = "https://files.pythonhosted.org/packages/37/45/9608ab1b41f6740ff4076eabadde8e8b3f3400942b348ac41e8599ccc131/regex-2026.2.19-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:4192464fe3e6cb0ef6751f7d3b16f886d8270d359ed1590dd555539d364f0ff7", size = 850947, upload-time = "2026-02-19T18:59:53.739Z" }, - { url = "https://files.pythonhosted.org/packages/90/3a/66471b6c4f7cac17e14bf5300e46661bba2b17ffb0871bd2759e837a6f82/regex-2026.2.19-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:e561dd47a85d2660d3d3af4e6cb2da825cf20f121e577147963f875b83d32786", size = 898794, upload-time = "2026-02-19T18:59:55.993Z" }, - { url = "https://files.pythonhosted.org/packages/c2/d2/38c53929a5931f7398e5e49f5a5a3079cb2aba30119b4350608364cfad8c/regex-2026.2.19-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:00ec994d7824bf01cd6c7d14c7a6a04d9aeaf7c42a2bc22d2359d715634d539b", size = 791922, upload-time = "2026-02-19T18:59:58.216Z" }, - { url = "https://files.pythonhosted.org/packages/8b/bd/b046e065630fa25059d9c195b7b5308ea94da45eee65d40879772500f74c/regex-2026.2.19-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:2cb00aabd96b345d56a8c2bc328c8d6c4d29935061e05078bf1f02302e12abf5", size = 783345, upload-time = "2026-02-19T18:59:59.948Z" }, - { url = "https://files.pythonhosted.org/packages/d4/8f/045c643d2fa255a985e8f87d848e4be230b711a8935e4bdc58e60b8f7b84/regex-2026.2.19-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:f374366ed35673ea81b86a8859c457d4fae6ba092b71024857e9e237410c7404", size = 768055, upload-time = "2026-02-19T19:00:01.65Z" }, - { url = "https://files.pythonhosted.org/packages/72/9f/ab7ae9f5447559562f1a788bbc85c0e526528c5e6c20542d18e4afc86aad/regex-2026.2.19-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:f9417fd853fcd00b7d55167e692966dd12d95ba1a88bf08a62002ccd85030790", size = 774955, upload-time = "2026-02-19T19:00:03.368Z" }, - { url = "https://files.pythonhosted.org/packages/37/5c/f16fc23c56f60b6f4ff194604a6e53bb8aec7b6e8e4a23a482dee8d77235/regex-2026.2.19-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:12e86a01594031abf892686fcb309b041bf3de3d13d99eb7e2b02a8f3c687df1", size = 846010, upload-time = "2026-02-19T19:00:05.079Z" }, - { url = "https://files.pythonhosted.org/packages/51/c8/6be4c854135d7c9f35d4deeafdaf124b039ecb4ffcaeb7ed0495ad2c97ca/regex-2026.2.19-cp310-cp310-musllinux_1_2_riscv64.whl", hash = "sha256:79014115e6fdf18fd9b32e291d58181bf42d4298642beaa13fd73e69810e4cb6", size = 755938, upload-time = "2026-02-19T19:00:07.148Z" }, - { url = "https://files.pythonhosted.org/packages/d6/8d/f683d49b9663a5324b95a328e69d397f6dade7cb84154eec116bf79fe150/regex-2026.2.19-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:31aefac2506967b7dd69af2c58eca3cc8b086d4110b66d6ac6e9026f0ee5b697", size = 835773, upload-time = "2026-02-19T19:00:08.939Z" }, - { url = "https://files.pythonhosted.org/packages/16/cd/619224b90da09f167fe4497c350a0d0b30edc539ee9244bf93e604c073c3/regex-2026.2.19-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:49cef7bb2a491f91a8869c7cdd90babf0a417047ab0bf923cd038ed2eab2ccb8", size = 780075, upload-time = "2026-02-19T19:00:10.838Z" }, - { url = "https://files.pythonhosted.org/packages/5b/88/19cfb0c262d6f9d722edef29157125418bf90eb3508186bf79335afeedae/regex-2026.2.19-cp310-cp310-win32.whl", hash = "sha256:3a039474986e7a314ace6efb9ce52f5da2bdb80ac4955358723d350ec85c32ad", size = 266004, upload-time = "2026-02-19T19:00:12.371Z" }, - { url = "https://files.pythonhosted.org/packages/82/af/5b487e0287ef72545d7ae92edecdacbe3d44e531cac24fda7de5598ba8dd/regex-2026.2.19-cp310-cp310-win_amd64.whl", hash = "sha256:5b81ff4f9cad99f90c807a00c5882fbcda86d8b3edd94e709fb531fc52cb3d25", size = 277895, upload-time = "2026-02-19T19:00:13.75Z" }, - { url = "https://files.pythonhosted.org/packages/4c/19/b6715a187ffca4d2979af92a46ce922445ba41f910bf187ccd666a2d52ef/regex-2026.2.19-cp310-cp310-win_arm64.whl", hash = "sha256:a032bc01a4bc73fc3cadba793fce28eb420da39338f47910c59ffcc11a5ba5ef", size = 270465, upload-time = "2026-02-19T19:00:15.127Z" }, { url = "https://files.pythonhosted.org/packages/6f/93/43f405a98f54cc59c786efb4fc0b644615ed2392fc89d57d30da11f35b5b/regex-2026.2.19-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:93b16a18cadb938f0f2306267161d57eb33081a861cee9ffcd71e60941eb5dfc", size = 488365, upload-time = "2026-02-19T19:00:17.857Z" }, { url = "https://files.pythonhosted.org/packages/66/46/da0efce22cd8f5ae28eeb25ac69703f49edcad3331ac22440776f4ea0867/regex-2026.2.19-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:78af1e499cab704131f6f4e2f155b7f54ce396ca2acb6ef21a49507e4752e0be", size = 290737, upload-time = "2026-02-19T19:00:19.869Z" }, { url = "https://files.pythonhosted.org/packages/fb/19/f735078448132c1c974974d30d5306337bc297fe6b6f126164bff72c1019/regex-2026.2.19-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:eb20c11aa4c3793c9ad04c19a972078cdadb261b8429380364be28e867a843f2", size = 288654, upload-time = "2026-02-19T19:00:21.307Z" }, @@ -8476,8 +3960,8 @@ name = "resampy" version = "0.4.3" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "numba", version = "0.61.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "numpy", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "numba" }, + { name = "numpy" }, ] sdist = { url = "https://files.pythonhosted.org/packages/29/f1/34be702a69a5d272e844c98cee82351f880985cfbca0cc86378011078497/resampy-0.4.3.tar.gz", hash = "sha256:a0d1c28398f0e55994b739650afef4e3974115edbe96cd4bb81968425e916e47", size = 3080604, upload-time = "2024-03-05T20:36:08.119Z" } wheels = [ @@ -8489,8 +3973,7 @@ name = "rich" version = "14.3.3" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "markdown-it-py", version = "3.0.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "markdown-it-py", version = "4.0.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "markdown-it-py" }, { name = "pygments" }, ] sdist = { url = "https://files.pythonhosted.org/packages/b3/c6/f3b320c27991c46f43ee9d856302c70dc2d0fb2dba4842ff739d5f46b393/rich-14.3.3.tar.gz", hash = "sha256:b8daa0b9e4eef54dd8cf7c86c03713f53241884e814f4e2f5fb342fe520f639b", size = 230582, upload-time = "2026-02-19T17:23:12.474Z" } @@ -8498,189 +3981,12 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/14/25/b208c5683343959b670dc001595f2f3737e051da617f66c31f7c4fa93abc/rich-14.3.3-py3-none-any.whl", hash = "sha256:793431c1f8619afa7d3b52b2cdec859562b950ea0d4b6b505397612db8d5362d", size = 310458, upload-time = "2026-02-19T17:23:13.732Z" }, ] -[[package]] -name = "rpds-py" -version = "0.27.1" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", -] -sdist = { url = "https://files.pythonhosted.org/packages/e9/dd/2c0cbe774744272b0ae725f44032c77bdcab6e8bcf544bffa3b6e70c8dba/rpds_py-0.27.1.tar.gz", hash = "sha256:26a1c73171d10b7acccbded82bf6a586ab8203601e565badc74bbbf8bc5a10f8", size = 27479, upload-time = "2025-08-27T12:16:36.024Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/a5/ed/3aef893e2dd30e77e35d20d4ddb45ca459db59cead748cad9796ad479411/rpds_py-0.27.1-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:68afeec26d42ab3b47e541b272166a0b4400313946871cba3ed3a4fc0cab1cef", size = 371606, upload-time = "2025-08-27T12:12:25.189Z" }, - { url = "https://files.pythonhosted.org/packages/6d/82/9818b443e5d3eb4c83c3994561387f116aae9833b35c484474769c4a8faf/rpds_py-0.27.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:74e5b2f7bb6fa38b1b10546d27acbacf2a022a8b5543efb06cfebc72a59c85be", size = 353452, upload-time = "2025-08-27T12:12:27.433Z" }, - { url = "https://files.pythonhosted.org/packages/99/c7/d2a110ffaaa397fc6793a83c7bd3545d9ab22658b7cdff05a24a4535cc45/rpds_py-0.27.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9024de74731df54546fab0bfbcdb49fae19159ecaecfc8f37c18d2c7e2c0bd61", size = 381519, upload-time = "2025-08-27T12:12:28.719Z" }, - { url = "https://files.pythonhosted.org/packages/5a/bc/e89581d1f9d1be7d0247eaef602566869fdc0d084008ba139e27e775366c/rpds_py-0.27.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:31d3ebadefcd73b73928ed0b2fd696f7fefda8629229f81929ac9c1854d0cffb", size = 394424, upload-time = "2025-08-27T12:12:30.207Z" }, - { url = "https://files.pythonhosted.org/packages/ac/2e/36a6861f797530e74bb6ed53495f8741f1ef95939eed01d761e73d559067/rpds_py-0.27.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b2e7f8f169d775dd9092a1743768d771f1d1300453ddfe6325ae3ab5332b4657", size = 523467, upload-time = "2025-08-27T12:12:31.808Z" }, - { url = "https://files.pythonhosted.org/packages/c4/59/c1bc2be32564fa499f988f0a5c6505c2f4746ef96e58e4d7de5cf923d77e/rpds_py-0.27.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3d905d16f77eb6ab2e324e09bfa277b4c8e5e6b8a78a3e7ff8f3cdf773b4c013", size = 402660, upload-time = "2025-08-27T12:12:33.444Z" }, - { url = "https://files.pythonhosted.org/packages/0a/ec/ef8bf895f0628dd0a59e54d81caed6891663cb9c54a0f4bb7da918cb88cf/rpds_py-0.27.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:50c946f048209e6362e22576baea09193809f87687a95a8db24e5fbdb307b93a", size = 384062, upload-time = "2025-08-27T12:12:34.857Z" }, - { url = "https://files.pythonhosted.org/packages/69/f7/f47ff154be8d9a5e691c083a920bba89cef88d5247c241c10b9898f595a1/rpds_py-0.27.1-cp310-cp310-manylinux_2_31_riscv64.whl", hash = "sha256:3deab27804d65cd8289eb814c2c0e807c4b9d9916c9225e363cb0cf875eb67c1", size = 401289, upload-time = "2025-08-27T12:12:36.085Z" }, - { url = "https://files.pythonhosted.org/packages/3b/d9/ca410363efd0615814ae579f6829cafb39225cd63e5ea5ed1404cb345293/rpds_py-0.27.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:8b61097f7488de4be8244c89915da8ed212832ccf1e7c7753a25a394bf9b1f10", size = 417718, upload-time = "2025-08-27T12:12:37.401Z" }, - { url = "https://files.pythonhosted.org/packages/e3/a0/8cb5c2ff38340f221cc067cc093d1270e10658ba4e8d263df923daa18e86/rpds_py-0.27.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:8a3f29aba6e2d7d90528d3c792555a93497fe6538aa65eb675b44505be747808", size = 558333, upload-time = "2025-08-27T12:12:38.672Z" }, - { url = "https://files.pythonhosted.org/packages/6f/8c/1b0de79177c5d5103843774ce12b84caa7164dfc6cd66378768d37db11bf/rpds_py-0.27.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:dd6cd0485b7d347304067153a6dc1d73f7d4fd995a396ef32a24d24b8ac63ac8", size = 589127, upload-time = "2025-08-27T12:12:41.48Z" }, - { url = "https://files.pythonhosted.org/packages/c8/5e/26abb098d5e01266b0f3a2488d299d19ccc26849735d9d2b95c39397e945/rpds_py-0.27.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:6f4461bf931108c9fa226ffb0e257c1b18dc2d44cd72b125bec50ee0ab1248a9", size = 554899, upload-time = "2025-08-27T12:12:42.925Z" }, - { url = "https://files.pythonhosted.org/packages/de/41/905cc90ced13550db017f8f20c6d8e8470066c5738ba480d7ba63e3d136b/rpds_py-0.27.1-cp310-cp310-win32.whl", hash = "sha256:ee5422d7fb21f6a00c1901bf6559c49fee13a5159d0288320737bbf6585bd3e4", size = 217450, upload-time = "2025-08-27T12:12:44.813Z" }, - { url = "https://files.pythonhosted.org/packages/75/3d/6bef47b0e253616ccdf67c283e25f2d16e18ccddd38f92af81d5a3420206/rpds_py-0.27.1-cp310-cp310-win_amd64.whl", hash = "sha256:3e039aabf6d5f83c745d5f9a0a381d031e9ed871967c0a5c38d201aca41f3ba1", size = 228447, upload-time = "2025-08-27T12:12:46.204Z" }, - { url = "https://files.pythonhosted.org/packages/b5/c1/7907329fbef97cbd49db6f7303893bd1dd5a4a3eae415839ffdfb0762cae/rpds_py-0.27.1-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:be898f271f851f68b318872ce6ebebbc62f303b654e43bf72683dbdc25b7c881", size = 371063, upload-time = "2025-08-27T12:12:47.856Z" }, - { url = "https://files.pythonhosted.org/packages/11/94/2aab4bc86228bcf7c48760990273653a4900de89c7537ffe1b0d6097ed39/rpds_py-0.27.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:62ac3d4e3e07b58ee0ddecd71d6ce3b1637de2d373501412df395a0ec5f9beb5", size = 353210, upload-time = "2025-08-27T12:12:49.187Z" }, - { url = "https://files.pythonhosted.org/packages/3a/57/f5eb3ecf434342f4f1a46009530e93fd201a0b5b83379034ebdb1d7c1a58/rpds_py-0.27.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4708c5c0ceb2d034f9991623631d3d23cb16e65c83736ea020cdbe28d57c0a0e", size = 381636, upload-time = "2025-08-27T12:12:50.492Z" }, - { url = "https://files.pythonhosted.org/packages/ae/f4/ef95c5945e2ceb5119571b184dd5a1cc4b8541bbdf67461998cfeac9cb1e/rpds_py-0.27.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:abfa1171a9952d2e0002aba2ad3780820b00cc3d9c98c6630f2e93271501f66c", size = 394341, upload-time = "2025-08-27T12:12:52.024Z" }, - { url = "https://files.pythonhosted.org/packages/5a/7e/4bd610754bf492d398b61725eb9598ddd5eb86b07d7d9483dbcd810e20bc/rpds_py-0.27.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4b507d19f817ebaca79574b16eb2ae412e5c0835542c93fe9983f1e432aca195", size = 523428, upload-time = "2025-08-27T12:12:53.779Z" }, - { url = "https://files.pythonhosted.org/packages/9f/e5/059b9f65a8c9149361a8b75094864ab83b94718344db511fd6117936ed2a/rpds_py-0.27.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:168b025f8fd8d8d10957405f3fdcef3dc20f5982d398f90851f4abc58c566c52", size = 402923, upload-time = "2025-08-27T12:12:55.15Z" }, - { url = "https://files.pythonhosted.org/packages/f5/48/64cabb7daced2968dd08e8a1b7988bf358d7bd5bcd5dc89a652f4668543c/rpds_py-0.27.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cb56c6210ef77caa58e16e8c17d35c63fe3f5b60fd9ba9d424470c3400bcf9ed", size = 384094, upload-time = "2025-08-27T12:12:57.194Z" }, - { url = "https://files.pythonhosted.org/packages/ae/e1/dc9094d6ff566bff87add8a510c89b9e158ad2ecd97ee26e677da29a9e1b/rpds_py-0.27.1-cp311-cp311-manylinux_2_31_riscv64.whl", hash = "sha256:d252f2d8ca0195faa707f8eb9368955760880b2b42a8ee16d382bf5dd807f89a", size = 401093, upload-time = "2025-08-27T12:12:58.985Z" }, - { url = "https://files.pythonhosted.org/packages/37/8e/ac8577e3ecdd5593e283d46907d7011618994e1d7ab992711ae0f78b9937/rpds_py-0.27.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:6e5e54da1e74b91dbc7996b56640f79b195d5925c2b78efaa8c5d53e1d88edde", size = 417969, upload-time = "2025-08-27T12:13:00.367Z" }, - { url = "https://files.pythonhosted.org/packages/66/6d/87507430a8f74a93556fe55c6485ba9c259949a853ce407b1e23fea5ba31/rpds_py-0.27.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:ffce0481cc6e95e5b3f0a47ee17ffbd234399e6d532f394c8dce320c3b089c21", size = 558302, upload-time = "2025-08-27T12:13:01.737Z" }, - { url = "https://files.pythonhosted.org/packages/3a/bb/1db4781ce1dda3eecc735e3152659a27b90a02ca62bfeea17aee45cc0fbc/rpds_py-0.27.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:a205fdfe55c90c2cd8e540ca9ceba65cbe6629b443bc05db1f590a3db8189ff9", size = 589259, upload-time = "2025-08-27T12:13:03.127Z" }, - { url = "https://files.pythonhosted.org/packages/7b/0e/ae1c8943d11a814d01b482e1f8da903f88047a962dff9bbdadf3bd6e6fd1/rpds_py-0.27.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:689fb5200a749db0415b092972e8eba85847c23885c8543a8b0f5c009b1a5948", size = 554983, upload-time = "2025-08-27T12:13:04.516Z" }, - { url = "https://files.pythonhosted.org/packages/b2/d5/0b2a55415931db4f112bdab072443ff76131b5ac4f4dc98d10d2d357eb03/rpds_py-0.27.1-cp311-cp311-win32.whl", hash = "sha256:3182af66048c00a075010bc7f4860f33913528a4b6fc09094a6e7598e462fe39", size = 217154, upload-time = "2025-08-27T12:13:06.278Z" }, - { url = "https://files.pythonhosted.org/packages/24/75/3b7ffe0d50dc86a6a964af0d1cc3a4a2cdf437cb7b099a4747bbb96d1819/rpds_py-0.27.1-cp311-cp311-win_amd64.whl", hash = "sha256:b4938466c6b257b2f5c4ff98acd8128ec36b5059e5c8f8372d79316b1c36bb15", size = 228627, upload-time = "2025-08-27T12:13:07.625Z" }, - { url = "https://files.pythonhosted.org/packages/8d/3f/4fd04c32abc02c710f09a72a30c9a55ea3cc154ef8099078fd50a0596f8e/rpds_py-0.27.1-cp311-cp311-win_arm64.whl", hash = "sha256:2f57af9b4d0793e53266ee4325535a31ba48e2f875da81a9177c9926dfa60746", size = 220998, upload-time = "2025-08-27T12:13:08.972Z" }, - { url = "https://files.pythonhosted.org/packages/bd/fe/38de28dee5df58b8198c743fe2bea0c785c6d40941b9950bac4cdb71a014/rpds_py-0.27.1-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:ae2775c1973e3c30316892737b91f9283f9908e3cc7625b9331271eaaed7dc90", size = 361887, upload-time = "2025-08-27T12:13:10.233Z" }, - { url = "https://files.pythonhosted.org/packages/7c/9a/4b6c7eedc7dd90986bf0fab6ea2a091ec11c01b15f8ba0a14d3f80450468/rpds_py-0.27.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:2643400120f55c8a96f7c9d858f7be0c88d383cd4653ae2cf0d0c88f668073e5", size = 345795, upload-time = "2025-08-27T12:13:11.65Z" }, - { url = "https://files.pythonhosted.org/packages/6f/0e/e650e1b81922847a09cca820237b0edee69416a01268b7754d506ade11ad/rpds_py-0.27.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:16323f674c089b0360674a4abd28d5042947d54ba620f72514d69be4ff64845e", size = 385121, upload-time = "2025-08-27T12:13:13.008Z" }, - { url = "https://files.pythonhosted.org/packages/1b/ea/b306067a712988e2bff00dcc7c8f31d26c29b6d5931b461aa4b60a013e33/rpds_py-0.27.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9a1f4814b65eacac94a00fc9a526e3fdafd78e439469644032032d0d63de4881", size = 398976, upload-time = "2025-08-27T12:13:14.368Z" }, - { url = "https://files.pythonhosted.org/packages/2c/0a/26dc43c8840cb8fe239fe12dbc8d8de40f2365e838f3d395835dde72f0e5/rpds_py-0.27.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7ba32c16b064267b22f1850a34051121d423b6f7338a12b9459550eb2096e7ec", size = 525953, upload-time = "2025-08-27T12:13:15.774Z" }, - { url = "https://files.pythonhosted.org/packages/22/14/c85e8127b573aaf3a0cbd7fbb8c9c99e735a4a02180c84da2a463b766e9e/rpds_py-0.27.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e5c20f33fd10485b80f65e800bbe5f6785af510b9f4056c5a3c612ebc83ba6cb", size = 407915, upload-time = "2025-08-27T12:13:17.379Z" }, - { url = "https://files.pythonhosted.org/packages/ed/7b/8f4fee9ba1fb5ec856eb22d725a4efa3deb47f769597c809e03578b0f9d9/rpds_py-0.27.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:466bfe65bd932da36ff279ddd92de56b042f2266d752719beb97b08526268ec5", size = 386883, upload-time = "2025-08-27T12:13:18.704Z" }, - { url = "https://files.pythonhosted.org/packages/86/47/28fa6d60f8b74fcdceba81b272f8d9836ac0340570f68f5df6b41838547b/rpds_py-0.27.1-cp312-cp312-manylinux_2_31_riscv64.whl", hash = "sha256:41e532bbdcb57c92ba3be62c42e9f096431b4cf478da9bc3bc6ce5c38ab7ba7a", size = 405699, upload-time = "2025-08-27T12:13:20.089Z" }, - { url = "https://files.pythonhosted.org/packages/d0/fd/c5987b5e054548df56953a21fe2ebed51fc1ec7c8f24fd41c067b68c4a0a/rpds_py-0.27.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f149826d742b406579466283769a8ea448eed82a789af0ed17b0cd5770433444", size = 423713, upload-time = "2025-08-27T12:13:21.436Z" }, - { url = "https://files.pythonhosted.org/packages/ac/ba/3c4978b54a73ed19a7d74531be37a8bcc542d917c770e14d372b8daea186/rpds_py-0.27.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:80c60cfb5310677bd67cb1e85a1e8eb52e12529545441b43e6f14d90b878775a", size = 562324, upload-time = "2025-08-27T12:13:22.789Z" }, - { url = "https://files.pythonhosted.org/packages/b5/6c/6943a91768fec16db09a42b08644b960cff540c66aab89b74be6d4a144ba/rpds_py-0.27.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:7ee6521b9baf06085f62ba9c7a3e5becffbc32480d2f1b351559c001c38ce4c1", size = 593646, upload-time = "2025-08-27T12:13:24.122Z" }, - { url = "https://files.pythonhosted.org/packages/11/73/9d7a8f4be5f4396f011a6bb7a19fe26303a0dac9064462f5651ced2f572f/rpds_py-0.27.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:a512c8263249a9d68cac08b05dd59d2b3f2061d99b322813cbcc14c3c7421998", size = 558137, upload-time = "2025-08-27T12:13:25.557Z" }, - { url = "https://files.pythonhosted.org/packages/6e/96/6772cbfa0e2485bcceef8071de7821f81aeac8bb45fbfd5542a3e8108165/rpds_py-0.27.1-cp312-cp312-win32.whl", hash = "sha256:819064fa048ba01b6dadc5116f3ac48610435ac9a0058bbde98e569f9e785c39", size = 221343, upload-time = "2025-08-27T12:13:26.967Z" }, - { url = "https://files.pythonhosted.org/packages/67/b6/c82f0faa9af1c6a64669f73a17ee0eeef25aff30bb9a1c318509efe45d84/rpds_py-0.27.1-cp312-cp312-win_amd64.whl", hash = "sha256:d9199717881f13c32c4046a15f024971a3b78ad4ea029e8da6b86e5aa9cf4594", size = 232497, upload-time = "2025-08-27T12:13:28.326Z" }, - { url = "https://files.pythonhosted.org/packages/e1/96/2817b44bd2ed11aebacc9251da03689d56109b9aba5e311297b6902136e2/rpds_py-0.27.1-cp312-cp312-win_arm64.whl", hash = "sha256:33aa65b97826a0e885ef6e278fbd934e98cdcfed80b63946025f01e2f5b29502", size = 222790, upload-time = "2025-08-27T12:13:29.71Z" }, - { url = "https://files.pythonhosted.org/packages/cc/77/610aeee8d41e39080c7e14afa5387138e3c9fa9756ab893d09d99e7d8e98/rpds_py-0.27.1-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:e4b9fcfbc021633863a37e92571d6f91851fa656f0180246e84cbd8b3f6b329b", size = 361741, upload-time = "2025-08-27T12:13:31.039Z" }, - { url = "https://files.pythonhosted.org/packages/3a/fc/c43765f201c6a1c60be2043cbdb664013def52460a4c7adace89d6682bf4/rpds_py-0.27.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:1441811a96eadca93c517d08df75de45e5ffe68aa3089924f963c782c4b898cf", size = 345574, upload-time = "2025-08-27T12:13:32.902Z" }, - { url = "https://files.pythonhosted.org/packages/20/42/ee2b2ca114294cd9847d0ef9c26d2b0851b2e7e00bf14cc4c0b581df0fc3/rpds_py-0.27.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:55266dafa22e672f5a4f65019015f90336ed31c6383bd53f5e7826d21a0e0b83", size = 385051, upload-time = "2025-08-27T12:13:34.228Z" }, - { url = "https://files.pythonhosted.org/packages/fd/e8/1e430fe311e4799e02e2d1af7c765f024e95e17d651612425b226705f910/rpds_py-0.27.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d78827d7ac08627ea2c8e02c9e5b41180ea5ea1f747e9db0915e3adf36b62dcf", size = 398395, upload-time = "2025-08-27T12:13:36.132Z" }, - { url = "https://files.pythonhosted.org/packages/82/95/9dc227d441ff2670651c27a739acb2535ccaf8b351a88d78c088965e5996/rpds_py-0.27.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ae92443798a40a92dc5f0b01d8a7c93adde0c4dc965310a29ae7c64d72b9fad2", size = 524334, upload-time = "2025-08-27T12:13:37.562Z" }, - { url = "https://files.pythonhosted.org/packages/87/01/a670c232f401d9ad461d9a332aa4080cd3cb1d1df18213dbd0d2a6a7ab51/rpds_py-0.27.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c46c9dd2403b66a2a3b9720ec4b74d4ab49d4fabf9f03dfdce2d42af913fe8d0", size = 407691, upload-time = "2025-08-27T12:13:38.94Z" }, - { url = "https://files.pythonhosted.org/packages/03/36/0a14aebbaa26fe7fab4780c76f2239e76cc95a0090bdb25e31d95c492fcd/rpds_py-0.27.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2efe4eb1d01b7f5f1939f4ef30ecea6c6b3521eec451fb93191bf84b2a522418", size = 386868, upload-time = "2025-08-27T12:13:40.192Z" }, - { url = "https://files.pythonhosted.org/packages/3b/03/8c897fb8b5347ff6c1cc31239b9611c5bf79d78c984430887a353e1409a1/rpds_py-0.27.1-cp313-cp313-manylinux_2_31_riscv64.whl", hash = "sha256:15d3b4d83582d10c601f481eca29c3f138d44c92187d197aff663a269197c02d", size = 405469, upload-time = "2025-08-27T12:13:41.496Z" }, - { url = "https://files.pythonhosted.org/packages/da/07/88c60edc2df74850d496d78a1fdcdc7b54360a7f610a4d50008309d41b94/rpds_py-0.27.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:4ed2e16abbc982a169d30d1a420274a709949e2cbdef119fe2ec9d870b42f274", size = 422125, upload-time = "2025-08-27T12:13:42.802Z" }, - { url = "https://files.pythonhosted.org/packages/6b/86/5f4c707603e41b05f191a749984f390dabcbc467cf833769b47bf14ba04f/rpds_py-0.27.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:a75f305c9b013289121ec0f1181931975df78738cdf650093e6b86d74aa7d8dd", size = 562341, upload-time = "2025-08-27T12:13:44.472Z" }, - { url = "https://files.pythonhosted.org/packages/b2/92/3c0cb2492094e3cd9baf9e49bbb7befeceb584ea0c1a8b5939dca4da12e5/rpds_py-0.27.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:67ce7620704745881a3d4b0ada80ab4d99df390838839921f99e63c474f82cf2", size = 592511, upload-time = "2025-08-27T12:13:45.898Z" }, - { url = "https://files.pythonhosted.org/packages/10/bb/82e64fbb0047c46a168faa28d0d45a7851cd0582f850b966811d30f67ad8/rpds_py-0.27.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:9d992ac10eb86d9b6f369647b6a3f412fc0075cfd5d799530e84d335e440a002", size = 557736, upload-time = "2025-08-27T12:13:47.408Z" }, - { url = "https://files.pythonhosted.org/packages/00/95/3c863973d409210da7fb41958172c6b7dbe7fc34e04d3cc1f10bb85e979f/rpds_py-0.27.1-cp313-cp313-win32.whl", hash = "sha256:4f75e4bd8ab8db624e02c8e2fc4063021b58becdbe6df793a8111d9343aec1e3", size = 221462, upload-time = "2025-08-27T12:13:48.742Z" }, - { url = "https://files.pythonhosted.org/packages/ce/2c/5867b14a81dc217b56d95a9f2a40fdbc56a1ab0181b80132beeecbd4b2d6/rpds_py-0.27.1-cp313-cp313-win_amd64.whl", hash = "sha256:f9025faafc62ed0b75a53e541895ca272815bec18abe2249ff6501c8f2e12b83", size = 232034, upload-time = "2025-08-27T12:13:50.11Z" }, - { url = "https://files.pythonhosted.org/packages/c7/78/3958f3f018c01923823f1e47f1cc338e398814b92d83cd278364446fac66/rpds_py-0.27.1-cp313-cp313-win_arm64.whl", hash = "sha256:ed10dc32829e7d222b7d3b93136d25a406ba9788f6a7ebf6809092da1f4d279d", size = 222392, upload-time = "2025-08-27T12:13:52.587Z" }, - { url = "https://files.pythonhosted.org/packages/01/76/1cdf1f91aed5c3a7bf2eba1f1c4e4d6f57832d73003919a20118870ea659/rpds_py-0.27.1-cp313-cp313t-macosx_10_12_x86_64.whl", hash = "sha256:92022bbbad0d4426e616815b16bc4127f83c9a74940e1ccf3cfe0b387aba0228", size = 358355, upload-time = "2025-08-27T12:13:54.012Z" }, - { url = "https://files.pythonhosted.org/packages/c3/6f/bf142541229374287604caf3bb2a4ae17f0a580798fd72d3b009b532db4e/rpds_py-0.27.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:47162fdab9407ec3f160805ac3e154df042e577dd53341745fc7fb3f625e6d92", size = 342138, upload-time = "2025-08-27T12:13:55.791Z" }, - { url = "https://files.pythonhosted.org/packages/1a/77/355b1c041d6be40886c44ff5e798b4e2769e497b790f0f7fd1e78d17e9a8/rpds_py-0.27.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fb89bec23fddc489e5d78b550a7b773557c9ab58b7946154a10a6f7a214a48b2", size = 380247, upload-time = "2025-08-27T12:13:57.683Z" }, - { url = "https://files.pythonhosted.org/packages/d6/a4/d9cef5c3946ea271ce2243c51481971cd6e34f21925af2783dd17b26e815/rpds_py-0.27.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:e48af21883ded2b3e9eb48cb7880ad8598b31ab752ff3be6457001d78f416723", size = 390699, upload-time = "2025-08-27T12:13:59.137Z" }, - { url = "https://files.pythonhosted.org/packages/3a/06/005106a7b8c6c1a7e91b73169e49870f4af5256119d34a361ae5240a0c1d/rpds_py-0.27.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:6f5b7bd8e219ed50299e58551a410b64daafb5017d54bbe822e003856f06a802", size = 521852, upload-time = "2025-08-27T12:14:00.583Z" }, - { url = "https://files.pythonhosted.org/packages/e5/3e/50fb1dac0948e17a02eb05c24510a8fe12d5ce8561c6b7b7d1339ab7ab9c/rpds_py-0.27.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:08f1e20bccf73b08d12d804d6e1c22ca5530e71659e6673bce31a6bb71c1e73f", size = 402582, upload-time = "2025-08-27T12:14:02.034Z" }, - { url = "https://files.pythonhosted.org/packages/cb/b0/f4e224090dc5b0ec15f31a02d746ab24101dd430847c4d99123798661bfc/rpds_py-0.27.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0dc5dceeaefcc96dc192e3a80bbe1d6c410c469e97bdd47494a7d930987f18b2", size = 384126, upload-time = "2025-08-27T12:14:03.437Z" }, - { url = "https://files.pythonhosted.org/packages/54/77/ac339d5f82b6afff1df8f0fe0d2145cc827992cb5f8eeb90fc9f31ef7a63/rpds_py-0.27.1-cp313-cp313t-manylinux_2_31_riscv64.whl", hash = "sha256:d76f9cc8665acdc0c9177043746775aa7babbf479b5520b78ae4002d889f5c21", size = 399486, upload-time = "2025-08-27T12:14:05.443Z" }, - { url = "https://files.pythonhosted.org/packages/d6/29/3e1c255eee6ac358c056a57d6d6869baa00a62fa32eea5ee0632039c50a3/rpds_py-0.27.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:134fae0e36022edad8290a6661edf40c023562964efea0cc0ec7f5d392d2aaef", size = 414832, upload-time = "2025-08-27T12:14:06.902Z" }, - { url = "https://files.pythonhosted.org/packages/3f/db/6d498b844342deb3fa1d030598db93937a9964fcf5cb4da4feb5f17be34b/rpds_py-0.27.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:eb11a4f1b2b63337cfd3b4d110af778a59aae51c81d195768e353d8b52f88081", size = 557249, upload-time = "2025-08-27T12:14:08.37Z" }, - { url = "https://files.pythonhosted.org/packages/60/f3/690dd38e2310b6f68858a331399b4d6dbb9132c3e8ef8b4333b96caf403d/rpds_py-0.27.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:13e608ac9f50a0ed4faec0e90ece76ae33b34c0e8656e3dceb9a7db994c692cd", size = 587356, upload-time = "2025-08-27T12:14:10.034Z" }, - { url = "https://files.pythonhosted.org/packages/86/e3/84507781cccd0145f35b1dc32c72675200c5ce8d5b30f813e49424ef68fc/rpds_py-0.27.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:dd2135527aa40f061350c3f8f89da2644de26cd73e4de458e79606384f4f68e7", size = 555300, upload-time = "2025-08-27T12:14:11.783Z" }, - { url = "https://files.pythonhosted.org/packages/e5/ee/375469849e6b429b3516206b4580a79e9ef3eb12920ddbd4492b56eaacbe/rpds_py-0.27.1-cp313-cp313t-win32.whl", hash = "sha256:3020724ade63fe320a972e2ffd93b5623227e684315adce194941167fee02688", size = 216714, upload-time = "2025-08-27T12:14:13.629Z" }, - { url = "https://files.pythonhosted.org/packages/21/87/3fc94e47c9bd0742660e84706c311a860dcae4374cf4a03c477e23ce605a/rpds_py-0.27.1-cp313-cp313t-win_amd64.whl", hash = "sha256:8ee50c3e41739886606388ba3ab3ee2aae9f35fb23f833091833255a31740797", size = 228943, upload-time = "2025-08-27T12:14:14.937Z" }, - { url = "https://files.pythonhosted.org/packages/7f/6c/252e83e1ce7583c81f26d1d884b2074d40a13977e1b6c9c50bbf9a7f1f5a/rpds_py-0.27.1-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:c918c65ec2e42c2a78d19f18c553d77319119bf43aa9e2edf7fb78d624355527", size = 372140, upload-time = "2025-08-27T12:15:05.441Z" }, - { url = "https://files.pythonhosted.org/packages/9d/71/949c195d927c5aeb0d0629d329a20de43a64c423a6aa53836290609ef7ec/rpds_py-0.27.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:1fea2b1a922c47c51fd07d656324531adc787e415c8b116530a1d29c0516c62d", size = 354086, upload-time = "2025-08-27T12:15:07.404Z" }, - { url = "https://files.pythonhosted.org/packages/9f/02/e43e332ad8ce4f6c4342d151a471a7f2900ed1d76901da62eb3762663a71/rpds_py-0.27.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bbf94c58e8e0cd6b6f38d8de67acae41b3a515c26169366ab58bdca4a6883bb8", size = 382117, upload-time = "2025-08-27T12:15:09.275Z" }, - { url = "https://files.pythonhosted.org/packages/d0/05/b0fdeb5b577197ad72812bbdfb72f9a08fa1e64539cc3940b1b781cd3596/rpds_py-0.27.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:c2a8fed130ce946d5c585eddc7c8eeef0051f58ac80a8ee43bd17835c144c2cc", size = 394520, upload-time = "2025-08-27T12:15:10.727Z" }, - { url = "https://files.pythonhosted.org/packages/67/1f/4cfef98b2349a7585181e99294fa2a13f0af06902048a5d70f431a66d0b9/rpds_py-0.27.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:037a2361db72ee98d829bc2c5b7cc55598ae0a5e0ec1823a56ea99374cfd73c1", size = 522657, upload-time = "2025-08-27T12:15:12.613Z" }, - { url = "https://files.pythonhosted.org/packages/44/55/ccf37ddc4c6dce7437b335088b5ca18da864b334890e2fe9aa6ddc3f79a9/rpds_py-0.27.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5281ed1cc1d49882f9997981c88df1a22e140ab41df19071222f7e5fc4e72125", size = 402967, upload-time = "2025-08-27T12:15:14.113Z" }, - { url = "https://files.pythonhosted.org/packages/74/e5/5903f92e41e293b07707d5bf00ef39a0eb2af7190aff4beaf581a6591510/rpds_py-0.27.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2fd50659a069c15eef8aa3d64bbef0d69fd27bb4a50c9ab4f17f83a16cbf8905", size = 384372, upload-time = "2025-08-27T12:15:15.842Z" }, - { url = "https://files.pythonhosted.org/packages/8f/e3/fbb409e18aeefc01e49f5922ac63d2d914328430e295c12183ce56ebf76b/rpds_py-0.27.1-cp39-cp39-manylinux_2_31_riscv64.whl", hash = "sha256:c4b676c4ae3921649a15d28ed10025548e9b561ded473aa413af749503c6737e", size = 401264, upload-time = "2025-08-27T12:15:17.388Z" }, - { url = "https://files.pythonhosted.org/packages/55/79/529ad07794e05cb0f38e2f965fc5bb20853d523976719400acecc447ec9d/rpds_py-0.27.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:079bc583a26db831a985c5257797b2b5d3affb0386e7ff886256762f82113b5e", size = 418691, upload-time = "2025-08-27T12:15:19.144Z" }, - { url = "https://files.pythonhosted.org/packages/33/39/6554a7fd6d9906fda2521c6d52f5d723dca123529fb719a5b5e074c15e01/rpds_py-0.27.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:4e44099bd522cba71a2c6b97f68e19f40e7d85399de899d66cdb67b32d7cb786", size = 558989, upload-time = "2025-08-27T12:15:21.087Z" }, - { url = "https://files.pythonhosted.org/packages/19/b2/76fa15173b6f9f445e5ef15120871b945fb8dd9044b6b8c7abe87e938416/rpds_py-0.27.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:e202e6d4188e53c6661af813b46c37ca2c45e497fc558bacc1a7630ec2695aec", size = 589835, upload-time = "2025-08-27T12:15:22.696Z" }, - { url = "https://files.pythonhosted.org/packages/ee/9e/5560a4b39bab780405bed8a88ee85b30178061d189558a86003548dea045/rpds_py-0.27.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:f41f814b8eaa48768d1bb551591f6ba45f87ac76899453e8ccd41dba1289b04b", size = 555227, upload-time = "2025-08-27T12:15:24.278Z" }, - { url = "https://files.pythonhosted.org/packages/52/d7/cd9c36215111aa65724c132bf709c6f35175973e90b32115dedc4ced09cb/rpds_py-0.27.1-cp39-cp39-win32.whl", hash = "sha256:9e71f5a087ead99563c11fdaceee83ee982fd39cf67601f4fd66cb386336ee52", size = 217899, upload-time = "2025-08-27T12:15:25.926Z" }, - { url = "https://files.pythonhosted.org/packages/5b/e0/d75ab7b4dd8ba777f6b365adbdfc7614bbfe7c5f05703031dfa4b61c3d6c/rpds_py-0.27.1-cp39-cp39-win_amd64.whl", hash = "sha256:71108900c9c3c8590697244b9519017a400d9ba26a36c48381b3f64743a44aab", size = 228725, upload-time = "2025-08-27T12:15:27.398Z" }, - { url = "https://files.pythonhosted.org/packages/d5/63/b7cc415c345625d5e62f694ea356c58fb964861409008118f1245f8c3347/rpds_py-0.27.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:7ba22cb9693df986033b91ae1d7a979bc399237d45fccf875b76f62bb9e52ddf", size = 371360, upload-time = "2025-08-27T12:15:29.218Z" }, - { url = "https://files.pythonhosted.org/packages/e5/8c/12e1b24b560cf378b8ffbdb9dc73abd529e1adcfcf82727dfd29c4a7b88d/rpds_py-0.27.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:5b640501be9288c77738b5492b3fd3abc4ba95c50c2e41273c8a1459f08298d3", size = 353933, upload-time = "2025-08-27T12:15:30.837Z" }, - { url = "https://files.pythonhosted.org/packages/9b/85/1bb2210c1f7a1b99e91fea486b9f0f894aa5da3a5ec7097cbad7dec6d40f/rpds_py-0.27.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fb08b65b93e0c6dd70aac7f7890a9c0938d5ec71d5cb32d45cf844fb8ae47636", size = 382962, upload-time = "2025-08-27T12:15:32.348Z" }, - { url = "https://files.pythonhosted.org/packages/cc/c9/a839b9f219cf80ed65f27a7f5ddbb2809c1b85c966020ae2dff490e0b18e/rpds_py-0.27.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d7ff07d696a7a38152ebdb8212ca9e5baab56656749f3d6004b34ab726b550b8", size = 394412, upload-time = "2025-08-27T12:15:33.839Z" }, - { url = "https://files.pythonhosted.org/packages/02/2d/b1d7f928b0b1f4fc2e0133e8051d199b01d7384875adc63b6ddadf3de7e5/rpds_py-0.27.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:fb7c72262deae25366e3b6c0c0ba46007967aea15d1eea746e44ddba8ec58dcc", size = 523972, upload-time = "2025-08-27T12:15:35.377Z" }, - { url = "https://files.pythonhosted.org/packages/a9/af/2cbf56edd2d07716df1aec8a726b3159deb47cb5c27e1e42b71d705a7c2f/rpds_py-0.27.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7b002cab05d6339716b03a4a3a2ce26737f6231d7b523f339fa061d53368c9d8", size = 403273, upload-time = "2025-08-27T12:15:37.051Z" }, - { url = "https://files.pythonhosted.org/packages/c0/93/425e32200158d44ff01da5d9612c3b6711fe69f606f06e3895511f17473b/rpds_py-0.27.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:23f6b69d1c26c4704fec01311963a41d7de3ee0570a84ebde4d544e5a1859ffc", size = 385278, upload-time = "2025-08-27T12:15:38.571Z" }, - { url = "https://files.pythonhosted.org/packages/eb/1a/1a04a915ecd0551bfa9e77b7672d1937b4b72a0fc204a17deef76001cfb2/rpds_py-0.27.1-pp310-pypy310_pp73-manylinux_2_31_riscv64.whl", hash = "sha256:530064db9146b247351f2a0250b8f00b289accea4596a033e94be2389977de71", size = 402084, upload-time = "2025-08-27T12:15:40.529Z" }, - { url = "https://files.pythonhosted.org/packages/51/f7/66585c0fe5714368b62951d2513b684e5215beaceab2c6629549ddb15036/rpds_py-0.27.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:7b90b0496570bd6b0321724a330d8b545827c4df2034b6ddfc5f5275f55da2ad", size = 419041, upload-time = "2025-08-27T12:15:42.191Z" }, - { url = "https://files.pythonhosted.org/packages/8e/7e/83a508f6b8e219bba2d4af077c35ba0e0cdd35a751a3be6a7cba5a55ad71/rpds_py-0.27.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:879b0e14a2da6a1102a3fc8af580fc1ead37e6d6692a781bd8c83da37429b5ab", size = 560084, upload-time = "2025-08-27T12:15:43.839Z" }, - { url = "https://files.pythonhosted.org/packages/66/66/bb945683b958a1b19eb0fe715594630d0f36396ebdef4d9b89c2fa09aa56/rpds_py-0.27.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:0d807710df3b5faa66c731afa162ea29717ab3be17bdc15f90f2d9f183da4059", size = 590115, upload-time = "2025-08-27T12:15:46.647Z" }, - { url = "https://files.pythonhosted.org/packages/12/00/ccfaafaf7db7e7adace915e5c2f2c2410e16402561801e9c7f96683002d3/rpds_py-0.27.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:3adc388fc3afb6540aec081fa59e6e0d3908722771aa1e37ffe22b220a436f0b", size = 556561, upload-time = "2025-08-27T12:15:48.219Z" }, - { url = "https://files.pythonhosted.org/packages/e1/b7/92b6ed9aad103bfe1c45df98453dfae40969eef2cb6c6239c58d7e96f1b3/rpds_py-0.27.1-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:c796c0c1cc68cb08b0284db4229f5af76168172670c74908fdbd4b7d7f515819", size = 229125, upload-time = "2025-08-27T12:15:49.956Z" }, - { url = "https://files.pythonhosted.org/packages/0c/ed/e1fba02de17f4f76318b834425257c8ea297e415e12c68b4361f63e8ae92/rpds_py-0.27.1-pp311-pypy311_pp73-macosx_10_12_x86_64.whl", hash = "sha256:cdfe4bb2f9fe7458b7453ad3c33e726d6d1c7c0a72960bcc23800d77384e42df", size = 371402, upload-time = "2025-08-27T12:15:51.561Z" }, - { url = "https://files.pythonhosted.org/packages/af/7c/e16b959b316048b55585a697e94add55a4ae0d984434d279ea83442e460d/rpds_py-0.27.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:8fabb8fd848a5f75a2324e4a84501ee3a5e3c78d8603f83475441866e60b94a3", size = 354084, upload-time = "2025-08-27T12:15:53.219Z" }, - { url = "https://files.pythonhosted.org/packages/de/c1/ade645f55de76799fdd08682d51ae6724cb46f318573f18be49b1e040428/rpds_py-0.27.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:eda8719d598f2f7f3e0f885cba8646644b55a187762bec091fa14a2b819746a9", size = 383090, upload-time = "2025-08-27T12:15:55.158Z" }, - { url = "https://files.pythonhosted.org/packages/1f/27/89070ca9b856e52960da1472efcb6c20ba27cfe902f4f23ed095b9cfc61d/rpds_py-0.27.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:3c64d07e95606ec402a0a1c511fe003873fa6af630bda59bac77fac8b4318ebc", size = 394519, upload-time = "2025-08-27T12:15:57.238Z" }, - { url = "https://files.pythonhosted.org/packages/b3/28/be120586874ef906aa5aeeae95ae8df4184bc757e5b6bd1c729ccff45ed5/rpds_py-0.27.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:93a2ed40de81bcff59aabebb626562d48332f3d028ca2036f1d23cbb52750be4", size = 523817, upload-time = "2025-08-27T12:15:59.237Z" }, - { url = "https://files.pythonhosted.org/packages/a8/ef/70cc197bc11cfcde02a86f36ac1eed15c56667c2ebddbdb76a47e90306da/rpds_py-0.27.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:387ce8c44ae94e0ec50532d9cb0edce17311024c9794eb196b90e1058aadeb66", size = 403240, upload-time = "2025-08-27T12:16:00.923Z" }, - { url = "https://files.pythonhosted.org/packages/cf/35/46936cca449f7f518f2f4996e0e8344db4b57e2081e752441154089d2a5f/rpds_py-0.27.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:aaf94f812c95b5e60ebaf8bfb1898a7d7cb9c1af5744d4a67fa47796e0465d4e", size = 385194, upload-time = "2025-08-27T12:16:02.802Z" }, - { url = "https://files.pythonhosted.org/packages/e1/62/29c0d3e5125c3270b51415af7cbff1ec587379c84f55a5761cc9efa8cd06/rpds_py-0.27.1-pp311-pypy311_pp73-manylinux_2_31_riscv64.whl", hash = "sha256:4848ca84d6ded9b58e474dfdbad4b8bfb450344c0551ddc8d958bf4b36aa837c", size = 402086, upload-time = "2025-08-27T12:16:04.806Z" }, - { url = "https://files.pythonhosted.org/packages/8f/66/03e1087679227785474466fdd04157fb793b3b76e3fcf01cbf4c693c1949/rpds_py-0.27.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:2bde09cbcf2248b73c7c323be49b280180ff39fadcfe04e7b6f54a678d02a7cf", size = 419272, upload-time = "2025-08-27T12:16:06.471Z" }, - { url = "https://files.pythonhosted.org/packages/6a/24/e3e72d265121e00b063aef3e3501e5b2473cf1b23511d56e529531acf01e/rpds_py-0.27.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:94c44ee01fd21c9058f124d2d4f0c9dc7634bec93cd4b38eefc385dabe71acbf", size = 560003, upload-time = "2025-08-27T12:16:08.06Z" }, - { url = "https://files.pythonhosted.org/packages/26/ca/f5a344c534214cc2d41118c0699fffbdc2c1bc7046f2a2b9609765ab9c92/rpds_py-0.27.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl", hash = "sha256:df8b74962e35c9249425d90144e721eed198e6555a0e22a563d29fe4486b51f6", size = 590482, upload-time = "2025-08-27T12:16:10.137Z" }, - { url = "https://files.pythonhosted.org/packages/ce/08/4349bdd5c64d9d193c360aa9db89adeee6f6682ab8825dca0a3f535f434f/rpds_py-0.27.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:dc23e6820e3b40847e2f4a7726462ba0cf53089512abe9ee16318c366494c17a", size = 556523, upload-time = "2025-08-27T12:16:12.188Z" }, - { url = "https://files.pythonhosted.org/packages/4e/ea/5463cd5048a7a2fcdae308b6e96432802132c141bfb9420260142632a0f1/rpds_py-0.27.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:aa8933159edc50be265ed22b401125c9eebff3171f570258854dbce3ecd55475", size = 371778, upload-time = "2025-08-27T12:16:13.851Z" }, - { url = "https://files.pythonhosted.org/packages/0d/c8/f38c099db07f5114029c1467649d308543906933eebbc226d4527a5f4693/rpds_py-0.27.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:a50431bf02583e21bf273c71b89d710e7a710ad5e39c725b14e685610555926f", size = 354394, upload-time = "2025-08-27T12:16:15.609Z" }, - { url = "https://files.pythonhosted.org/packages/7d/79/b76f97704d9dd8ddbd76fed4c4048153a847c5d6003afe20a6b5c3339065/rpds_py-0.27.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:78af06ddc7fe5cc0e967085a9115accee665fb912c22a3f54bad70cc65b05fe6", size = 382348, upload-time = "2025-08-27T12:16:17.251Z" }, - { url = "https://files.pythonhosted.org/packages/8a/3f/ef23d3c1be1b837b648a3016d5bbe7cfe711422ad110b4081c0a90ef5a53/rpds_py-0.27.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:70d0738ef8fee13c003b100c2fbd667ec4f133468109b3472d249231108283a3", size = 394159, upload-time = "2025-08-27T12:16:19.251Z" }, - { url = "https://files.pythonhosted.org/packages/74/8a/9e62693af1a34fd28b1a190d463d12407bd7cf561748cb4745845d9548d3/rpds_py-0.27.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e2f6fd8a1cea5bbe599b6e78a6e5ee08db434fc8ffea51ff201c8765679698b3", size = 522775, upload-time = "2025-08-27T12:16:20.929Z" }, - { url = "https://files.pythonhosted.org/packages/36/0d/8d5bb122bf7a60976b54c5c99a739a3819f49f02d69df3ea2ca2aff47d5c/rpds_py-0.27.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8177002868d1426305bb5de1e138161c2ec9eb2d939be38291d7c431c4712df8", size = 402633, upload-time = "2025-08-27T12:16:22.548Z" }, - { url = "https://files.pythonhosted.org/packages/0f/0e/237948c1f425e23e0cf5a566d702652a6e55c6f8fbd332a1792eb7043daf/rpds_py-0.27.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:008b839781d6c9bf3b6a8984d1d8e56f0ec46dc56df61fd669c49b58ae800400", size = 384867, upload-time = "2025-08-27T12:16:24.29Z" }, - { url = "https://files.pythonhosted.org/packages/d6/0a/da0813efcd998d260cbe876d97f55b0f469ada8ba9cbc47490a132554540/rpds_py-0.27.1-pp39-pypy39_pp73-manylinux_2_31_riscv64.whl", hash = "sha256:a55b9132bb1ade6c734ddd2759c8dc132aa63687d259e725221f106b83a0e485", size = 401791, upload-time = "2025-08-27T12:16:25.954Z" }, - { url = "https://files.pythonhosted.org/packages/51/78/c6c9e8a8aaca416a6f0d1b6b4a6ee35b88fe2c5401d02235d0a056eceed2/rpds_py-0.27.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:a46fdec0083a26415f11d5f236b79fa1291c32aaa4a17684d82f7017a1f818b1", size = 419525, upload-time = "2025-08-27T12:16:27.659Z" }, - { url = "https://files.pythonhosted.org/packages/a3/69/5af37e1d71487cf6d56dd1420dc7e0c2732c1b6ff612aa7a88374061c0a8/rpds_py-0.27.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:8a63b640a7845f2bdd232eb0d0a4a2dd939bcdd6c57e6bb134526487f3160ec5", size = 559255, upload-time = "2025-08-27T12:16:29.343Z" }, - { url = "https://files.pythonhosted.org/packages/40/7f/8b7b136069ef7ac3960eda25d832639bdb163018a34c960ed042dd1707c8/rpds_py-0.27.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:7e32721e5d4922deaaf963469d795d5bde6093207c52fec719bd22e5d1bedbc4", size = 590384, upload-time = "2025-08-27T12:16:31.005Z" }, - { url = "https://files.pythonhosted.org/packages/d8/06/c316d3f6ff03f43ccb0eba7de61376f8ec4ea850067dddfafe98274ae13c/rpds_py-0.27.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:2c426b99a068601b5f4623573df7a7c3d72e87533a2dd2253353a03e7502566c", size = 555959, upload-time = "2025-08-27T12:16:32.73Z" }, - { url = "https://files.pythonhosted.org/packages/60/94/384cf54c430b9dac742bbd2ec26c23feb78ded0d43d6d78563a281aec017/rpds_py-0.27.1-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:4fc9b7fe29478824361ead6e14e4f5aed570d477e06088826537e202d25fe859", size = 228784, upload-time = "2025-08-27T12:16:34.428Z" }, -] - [[package]] name = "rpds-py" version = "0.30.0" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.11.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.10.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", -] sdist = { url = "https://files.pythonhosted.org/packages/20/af/3f2f423103f1113b36230496629986e0ef7e199d2aa8392452b484b38ced/rpds_py-0.30.0.tar.gz", hash = "sha256:dd8ff7cf90014af0c0f787eea34794ebf6415242ee1d6fa91eaba725cc441e84", size = 69469, upload-time = "2025-11-30T20:24:38.837Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/06/0c/0c411a0ec64ccb6d104dcabe0e713e05e153a9a2c3c2bd2b32ce412166fe/rpds_py-0.30.0-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:679ae98e00c0e8d68a7fda324e16b90fd5260945b45d3b824c892cec9eea3288", size = 370490, upload-time = "2025-11-30T20:21:33.256Z" }, - { url = "https://files.pythonhosted.org/packages/19/6a/4ba3d0fb7297ebae71171822554abe48d7cab29c28b8f9f2c04b79988c05/rpds_py-0.30.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:4cc2206b76b4f576934f0ed374b10d7ca5f457858b157ca52064bdfc26b9fc00", size = 359751, upload-time = "2025-11-30T20:21:34.591Z" }, - { url = "https://files.pythonhosted.org/packages/cd/7c/e4933565ef7f7a0818985d87c15d9d273f1a649afa6a52ea35ad011195ea/rpds_py-0.30.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:389a2d49eded1896c3d48b0136ead37c48e221b391c052fba3f4055c367f60a6", size = 389696, upload-time = "2025-11-30T20:21:36.122Z" }, - { url = "https://files.pythonhosted.org/packages/5e/01/6271a2511ad0815f00f7ed4390cf2567bec1d4b1da39e2c27a41e6e3b4de/rpds_py-0.30.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:32c8528634e1bf7121f3de08fa85b138f4e0dc47657866630611b03967f041d7", size = 403136, upload-time = "2025-11-30T20:21:37.728Z" }, - { url = "https://files.pythonhosted.org/packages/55/64/c857eb7cd7541e9b4eee9d49c196e833128a55b89a9850a9c9ac33ccf897/rpds_py-0.30.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f207f69853edd6f6700b86efb84999651baf3789e78a466431df1331608e5324", size = 524699, upload-time = "2025-11-30T20:21:38.92Z" }, - { url = "https://files.pythonhosted.org/packages/9c/ed/94816543404078af9ab26159c44f9e98e20fe47e2126d5d32c9d9948d10a/rpds_py-0.30.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:67b02ec25ba7a9e8fa74c63b6ca44cf5707f2fbfadae3ee8e7494297d56aa9df", size = 412022, upload-time = "2025-11-30T20:21:40.407Z" }, - { url = "https://files.pythonhosted.org/packages/61/b5/707f6cf0066a6412aacc11d17920ea2e19e5b2f04081c64526eb35b5c6e7/rpds_py-0.30.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0c0e95f6819a19965ff420f65578bacb0b00f251fefe2c8b23347c37174271f3", size = 390522, upload-time = "2025-11-30T20:21:42.17Z" }, - { url = "https://files.pythonhosted.org/packages/13/4e/57a85fda37a229ff4226f8cbcf09f2a455d1ed20e802ce5b2b4a7f5ed053/rpds_py-0.30.0-cp310-cp310-manylinux_2_31_riscv64.whl", hash = "sha256:a452763cc5198f2f98898eb98f7569649fe5da666c2dc6b5ddb10fde5a574221", size = 404579, upload-time = "2025-11-30T20:21:43.769Z" }, - { url = "https://files.pythonhosted.org/packages/f9/da/c9339293513ec680a721e0e16bf2bac3db6e5d7e922488de471308349bba/rpds_py-0.30.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:e0b65193a413ccc930671c55153a03ee57cecb49e6227204b04fae512eb657a7", size = 421305, upload-time = "2025-11-30T20:21:44.994Z" }, - { url = "https://files.pythonhosted.org/packages/f9/be/522cb84751114f4ad9d822ff5a1aa3c98006341895d5f084779b99596e5c/rpds_py-0.30.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:858738e9c32147f78b3ac24dc0edb6610000e56dc0f700fd5f651d0a0f0eb9ff", size = 572503, upload-time = "2025-11-30T20:21:46.91Z" }, - { url = "https://files.pythonhosted.org/packages/a2/9b/de879f7e7ceddc973ea6e4629e9b380213a6938a249e94b0cdbcc325bb66/rpds_py-0.30.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:da279aa314f00acbb803da1e76fa18666778e8a8f83484fba94526da5de2cba7", size = 598322, upload-time = "2025-11-30T20:21:48.709Z" }, - { url = "https://files.pythonhosted.org/packages/48/ac/f01fc22efec3f37d8a914fc1b2fb9bcafd56a299edbe96406f3053edea5a/rpds_py-0.30.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:7c64d38fb49b6cdeda16ab49e35fe0da2e1e9b34bc38bd78386530f218b37139", size = 560792, upload-time = "2025-11-30T20:21:50.024Z" }, - { url = "https://files.pythonhosted.org/packages/e2/da/4e2b19d0f131f35b6146425f846563d0ce036763e38913d917187307a671/rpds_py-0.30.0-cp310-cp310-win32.whl", hash = "sha256:6de2a32a1665b93233cde140ff8b3467bdb9e2af2b91079f0333a0974d12d464", size = 221901, upload-time = "2025-11-30T20:21:51.32Z" }, - { url = "https://files.pythonhosted.org/packages/96/cb/156d7a5cf4f78a7cc571465d8aec7a3c447c94f6749c5123f08438bcf7bc/rpds_py-0.30.0-cp310-cp310-win_amd64.whl", hash = "sha256:1726859cd0de969f88dc8673bdd954185b9104e05806be64bcd87badbe313169", size = 235823, upload-time = "2025-11-30T20:21:52.505Z" }, { url = "https://files.pythonhosted.org/packages/4d/6e/f964e88b3d2abee2a82c1ac8366da848fce1c6d834dc2132c3fda3970290/rpds_py-0.30.0-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:a2bffea6a4ca9f01b3f8e548302470306689684e61602aa3d141e34da06cf425", size = 370157, upload-time = "2025-11-30T20:21:53.789Z" }, { url = "https://files.pythonhosted.org/packages/94/ba/24e5ebb7c1c82e74c4e4f33b2112a5573ddc703915b13a073737b59b86e0/rpds_py-0.30.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:dc4f992dfe1e2bc3ebc7444f6c7051b4bc13cd8e33e43511e8ffd13bf407010d", size = 359676, upload-time = "2025-11-30T20:21:55.475Z" }, { url = "https://files.pythonhosted.org/packages/84/86/04dbba1b087227747d64d80c3b74df946b986c57af0a9f0c98726d4d7a3b/rpds_py-0.30.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:422c3cb9856d80b09d30d2eb255d0754b23e090034e1deb4083f8004bd0761e4", size = 389938, upload-time = "2025-11-30T20:21:57.079Z" }, @@ -8777,10 +4083,10 @@ name = "sacremoses" version = "0.1.1" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "click", version = "8.3.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "joblib", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "regex", version = "2026.2.19", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "tqdm", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "click" }, + { name = "joblib" }, + { name = "regex" }, + { name = "tqdm" }, ] sdist = { url = "https://files.pythonhosted.org/packages/1d/51/fbdc4af4f6e85d26169e28be3763fe50ddfd0d4bf8b871422b0788dcc4d2/sacremoses-0.1.1.tar.gz", hash = "sha256:b6fd5d3a766b02154ed80b962ddca91e1fd25629c0978c7efba21ebccf663934", size = 883188, upload-time = "2023-10-30T15:56:20.187Z" } wheels = [ @@ -8807,203 +4113,17 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/4a/d8/0c8a7dc9b41dcac53c4cbf9df2b9c83e0e0097203de8b37a712b345c0be5/safetensors-0.7.0-cp38-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:b0f6d66c1c538d5a94a73aa9ddca8ccc4227e6c9ff555322ea40bdd142391dd4", size = 677368, upload-time = "2025-11-19T15:18:41.627Z" }, { url = "https://files.pythonhosted.org/packages/05/e5/cb4b713c8a93469e3c5be7c3f8d77d307e65fe89673e731f5c2bfd0a9237/safetensors-0.7.0-cp38-abi3-win32.whl", hash = "sha256:c74af94bf3ac15ac4d0f2a7c7b4663a15f8c2ab15ed0fc7531ca61d0835eccba", size = 326423, upload-time = "2025-11-19T15:18:45.74Z" }, { url = "https://files.pythonhosted.org/packages/5d/e6/ec8471c8072382cb91233ba7267fd931219753bb43814cbc71757bfd4dab/safetensors-0.7.0-cp38-abi3-win_amd64.whl", hash = "sha256:d1239932053f56f3456f32eb9625590cc7582e905021f94636202a864d470755", size = 341380, upload-time = "2025-11-19T15:18:44.427Z" }, - { url = "https://files.pythonhosted.org/packages/a7/6a/4d08d89a6fcbe905c5ae68b8b34f0791850882fc19782d0d02c65abbdf3b/safetensors-0.7.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f4729811a6640d019a4b7ba8638ee2fd21fa5ca8c7e7bdf0fed62068fcaac737", size = 492430, upload-time = "2025-11-19T15:18:11.884Z" }, - { url = "https://files.pythonhosted.org/packages/dd/29/59ed8152b30f72c42d00d241e58eaca558ae9dbfa5695206e2e0f54c7063/safetensors-0.7.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:12f49080303fa6bb424b362149a12949dfbbf1e06811a88f2307276b0c131afd", size = 503977, upload-time = "2025-11-19T15:18:17.523Z" }, - { url = "https://files.pythonhosted.org/packages/d3/0b/4811bfec67fa260e791369b16dab105e4bae82686120554cc484064e22b4/safetensors-0.7.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0071bffba4150c2f46cae1432d31995d77acfd9f8db598b5d1a2ce67e8440ad2", size = 623890, upload-time = "2025-11-19T15:18:22.666Z" }, - { url = "https://files.pythonhosted.org/packages/58/5b/632a58724221ef03d78ab65062e82a1010e1bef8e8e0b9d7c6d7b8044841/safetensors-0.7.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:473b32699f4200e69801bf5abf93f1a4ecd432a70984df164fc22ccf39c4a6f3", size = 531885, upload-time = "2025-11-19T15:18:27.146Z" }, - { url = "https://files.pythonhosted.org/packages/94/60/13ccb63ea85bfe2e4fe6af602cf1272155f048906556d5ec8509da9dba42/safetensors-0.7.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7b95a3fa7b3abb9b5b0e07668e808364d0d40f6bbbf9ae0faa8b5b210c97b140", size = 492627, upload-time = "2025-11-19T15:18:14.661Z" }, - { url = "https://files.pythonhosted.org/packages/2e/2b/e2fde0d6334439908b0b0c4cba18b8ad76ea6a03b569d4a3388f423b4046/safetensors-0.7.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:cfdead2f57330d76aa7234051dadfa7d4eedc0e5a27fd08e6f96714a92b00f09", size = 503861, upload-time = "2025-11-19T15:18:19.418Z" }, - { url = "https://files.pythonhosted.org/packages/f0/71/566e3dd559a9cef1b4775c239daae09e6b6a32ca8b45eb1db9a4dfa1ba81/safetensors-0.7.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc92bc2db7b45bda4510e4f51c59b00fe80b2d6be88928346e4294ce1c2abe7c", size = 623577, upload-time = "2025-11-19T15:18:24.275Z" }, - { url = "https://files.pythonhosted.org/packages/82/fc/3035c5c30c8a5a82c31c6b2ad6f8bcd45ea2ddd9a8088840406bcf997413/safetensors-0.7.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6999421eb8ba9df4450a16d9184fcb7bef26240b9f98e95401f17af6c2210b71", size = 532524, upload-time = "2025-11-19T15:18:29.334Z" }, -] - -[[package]] -name = "scikit-learn" -version = "1.6.1" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", -] -dependencies = [ - { name = "joblib", marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "numpy", marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "scipy", version = "1.13.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "threadpoolctl", marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/9e/a5/4ae3b3a0755f7b35a280ac90b28817d1f380318973cff14075ab41ef50d9/scikit_learn-1.6.1.tar.gz", hash = "sha256:b4fc2525eca2c69a59260f583c56a7557c6ccdf8deafdba6e060f94c1c59738e", size = 7068312, upload-time = "2025-01-10T08:07:55.348Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/2e/3a/f4597eb41049110b21ebcbb0bcb43e4035017545daa5eedcfeb45c08b9c5/scikit_learn-1.6.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d056391530ccd1e501056160e3c9673b4da4805eb67eb2bdf4e983e1f9c9204e", size = 12067702, upload-time = "2025-01-10T08:05:56.515Z" }, - { url = "https://files.pythonhosted.org/packages/37/19/0423e5e1fd1c6ec5be2352ba05a537a473c1677f8188b9306097d684b327/scikit_learn-1.6.1-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:0c8d036eb937dbb568c6242fa598d551d88fb4399c0344d95c001980ec1c7d36", size = 11112765, upload-time = "2025-01-10T08:06:00.272Z" }, - { url = "https://files.pythonhosted.org/packages/70/95/d5cb2297a835b0f5fc9a77042b0a2d029866379091ab8b3f52cc62277808/scikit_learn-1.6.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8634c4bd21a2a813e0a7e3900464e6d593162a29dd35d25bdf0103b3fce60ed5", size = 12643991, upload-time = "2025-01-10T08:06:04.813Z" }, - { url = "https://files.pythonhosted.org/packages/b7/91/ab3c697188f224d658969f678be86b0968ccc52774c8ab4a86a07be13c25/scikit_learn-1.6.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:775da975a471c4f6f467725dff0ced5c7ac7bda5e9316b260225b48475279a1b", size = 13497182, upload-time = "2025-01-10T08:06:08.42Z" }, - { url = "https://files.pythonhosted.org/packages/17/04/d5d556b6c88886c092cc989433b2bab62488e0f0dafe616a1d5c9cb0efb1/scikit_learn-1.6.1-cp310-cp310-win_amd64.whl", hash = "sha256:8a600c31592bd7dab31e1c61b9bbd6dea1b3433e67d264d17ce1017dbdce8002", size = 11125517, upload-time = "2025-01-10T08:06:12.783Z" }, - { url = "https://files.pythonhosted.org/packages/6c/2a/e291c29670795406a824567d1dfc91db7b699799a002fdaa452bceea8f6e/scikit_learn-1.6.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:72abc587c75234935e97d09aa4913a82f7b03ee0b74111dcc2881cba3c5a7b33", size = 12102620, upload-time = "2025-01-10T08:06:16.675Z" }, - { url = "https://files.pythonhosted.org/packages/25/92/ee1d7a00bb6b8c55755d4984fd82608603a3cc59959245068ce32e7fb808/scikit_learn-1.6.1-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:b3b00cdc8f1317b5f33191df1386c0befd16625f49d979fe77a8d44cae82410d", size = 11116234, upload-time = "2025-01-10T08:06:21.83Z" }, - { url = "https://files.pythonhosted.org/packages/30/cd/ed4399485ef364bb25f388ab438e3724e60dc218c547a407b6e90ccccaef/scikit_learn-1.6.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dc4765af3386811c3ca21638f63b9cf5ecf66261cc4815c1db3f1e7dc7b79db2", size = 12592155, upload-time = "2025-01-10T08:06:27.309Z" }, - { url = "https://files.pythonhosted.org/packages/a8/f3/62fc9a5a659bb58a03cdd7e258956a5824bdc9b4bb3c5d932f55880be569/scikit_learn-1.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:25fc636bdaf1cc2f4a124a116312d837148b5e10872147bdaf4887926b8c03d8", size = 13497069, upload-time = "2025-01-10T08:06:32.515Z" }, - { url = "https://files.pythonhosted.org/packages/a1/a6/c5b78606743a1f28eae8f11973de6613a5ee87366796583fb74c67d54939/scikit_learn-1.6.1-cp311-cp311-win_amd64.whl", hash = "sha256:fa909b1a36e000a03c382aade0bd2063fd5680ff8b8e501660c0f59f021a6415", size = 11139809, upload-time = "2025-01-10T08:06:35.514Z" }, - { url = "https://files.pythonhosted.org/packages/0a/18/c797c9b8c10380d05616db3bfb48e2a3358c767affd0857d56c2eb501caa/scikit_learn-1.6.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:926f207c804104677af4857b2c609940b743d04c4c35ce0ddc8ff4f053cddc1b", size = 12104516, upload-time = "2025-01-10T08:06:40.009Z" }, - { url = "https://files.pythonhosted.org/packages/c4/b7/2e35f8e289ab70108f8cbb2e7a2208f0575dc704749721286519dcf35f6f/scikit_learn-1.6.1-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:2c2cae262064e6a9b77eee1c8e768fc46aa0b8338c6a8297b9b6759720ec0ff2", size = 11167837, upload-time = "2025-01-10T08:06:43.305Z" }, - { url = "https://files.pythonhosted.org/packages/a4/f6/ff7beaeb644bcad72bcfd5a03ff36d32ee4e53a8b29a639f11bcb65d06cd/scikit_learn-1.6.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1061b7c028a8663fb9a1a1baf9317b64a257fcb036dae5c8752b2abef31d136f", size = 12253728, upload-time = "2025-01-10T08:06:47.618Z" }, - { url = "https://files.pythonhosted.org/packages/29/7a/8bce8968883e9465de20be15542f4c7e221952441727c4dad24d534c6d99/scikit_learn-1.6.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2e69fab4ebfc9c9b580a7a80111b43d214ab06250f8a7ef590a4edf72464dd86", size = 13147700, upload-time = "2025-01-10T08:06:50.888Z" }, - { url = "https://files.pythonhosted.org/packages/62/27/585859e72e117fe861c2079bcba35591a84f801e21bc1ab85bce6ce60305/scikit_learn-1.6.1-cp312-cp312-win_amd64.whl", hash = "sha256:70b1d7e85b1c96383f872a519b3375f92f14731e279a7b4c6cfd650cf5dffc52", size = 11110613, upload-time = "2025-01-10T08:06:54.115Z" }, - { url = "https://files.pythonhosted.org/packages/2e/59/8eb1872ca87009bdcdb7f3cdc679ad557b992c12f4b61f9250659e592c63/scikit_learn-1.6.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:2ffa1e9e25b3d93990e74a4be2c2fc61ee5af85811562f1288d5d055880c4322", size = 12010001, upload-time = "2025-01-10T08:06:58.613Z" }, - { url = "https://files.pythonhosted.org/packages/9d/05/f2fc4effc5b32e525408524c982c468c29d22f828834f0625c5ef3d601be/scikit_learn-1.6.1-cp313-cp313-macosx_12_0_arm64.whl", hash = "sha256:dc5cf3d68c5a20ad6d571584c0750ec641cc46aeef1c1507be51300e6003a7e1", size = 11096360, upload-time = "2025-01-10T08:07:01.556Z" }, - { url = "https://files.pythonhosted.org/packages/c8/e4/4195d52cf4f113573fb8ebc44ed5a81bd511a92c0228889125fac2f4c3d1/scikit_learn-1.6.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c06beb2e839ecc641366000ca84f3cf6fa9faa1777e29cf0c04be6e4d096a348", size = 12209004, upload-time = "2025-01-10T08:07:06.931Z" }, - { url = "https://files.pythonhosted.org/packages/94/be/47e16cdd1e7fcf97d95b3cb08bde1abb13e627861af427a3651fcb80b517/scikit_learn-1.6.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e8ca8cb270fee8f1f76fa9bfd5c3507d60c6438bbee5687f81042e2bb98e5a97", size = 13171776, upload-time = "2025-01-10T08:07:11.715Z" }, - { url = "https://files.pythonhosted.org/packages/34/b0/ca92b90859070a1487827dbc672f998da95ce83edce1270fc23f96f1f61a/scikit_learn-1.6.1-cp313-cp313-win_amd64.whl", hash = "sha256:7a1c43c8ec9fde528d664d947dc4c0789be4077a3647f232869f41d9bf50e0fb", size = 11071865, upload-time = "2025-01-10T08:07:16.088Z" }, - { url = "https://files.pythonhosted.org/packages/12/ae/993b0fb24a356e71e9a894e42b8a9eec528d4c70217353a1cd7a48bc25d4/scikit_learn-1.6.1-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:a17c1dea1d56dcda2fac315712f3651a1fea86565b64b48fa1bc090249cbf236", size = 11955804, upload-time = "2025-01-10T08:07:20.385Z" }, - { url = "https://files.pythonhosted.org/packages/d6/54/32fa2ee591af44507eac86406fa6bba968d1eb22831494470d0a2e4a1eb1/scikit_learn-1.6.1-cp313-cp313t-macosx_12_0_arm64.whl", hash = "sha256:6a7aa5f9908f0f28f4edaa6963c0a6183f1911e63a69aa03782f0d924c830a35", size = 11100530, upload-time = "2025-01-10T08:07:23.675Z" }, - { url = "https://files.pythonhosted.org/packages/3f/58/55856da1adec655bdce77b502e94a267bf40a8c0b89f8622837f89503b5a/scikit_learn-1.6.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0650e730afb87402baa88afbf31c07b84c98272622aaba002559b614600ca691", size = 12433852, upload-time = "2025-01-10T08:07:26.817Z" }, - { url = "https://files.pythonhosted.org/packages/ff/4f/c83853af13901a574f8f13b645467285a48940f185b690936bb700a50863/scikit_learn-1.6.1-cp313-cp313t-win_amd64.whl", hash = "sha256:3f59fe08dc03ea158605170eb52b22a105f238a5d512c4470ddeca71feae8e5f", size = 11337256, upload-time = "2025-01-10T08:07:31.084Z" }, - { url = "https://files.pythonhosted.org/packages/d2/37/b305b759cc65829fe1b8853ff3e308b12cdd9d8884aa27840835560f2b42/scikit_learn-1.6.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6849dd3234e87f55dce1db34c89a810b489ead832aaf4d4550b7ea85628be6c1", size = 12101868, upload-time = "2025-01-10T08:07:34.189Z" }, - { url = "https://files.pythonhosted.org/packages/83/74/f64379a4ed5879d9db744fe37cfe1978c07c66684d2439c3060d19a536d8/scikit_learn-1.6.1-cp39-cp39-macosx_12_0_arm64.whl", hash = "sha256:e7be3fa5d2eb9be7d77c3734ff1d599151bb523674be9b834e8da6abe132f44e", size = 11144062, upload-time = "2025-01-10T08:07:37.67Z" }, - { url = "https://files.pythonhosted.org/packages/fd/dc/d5457e03dc9c971ce2b0d750e33148dd060fefb8b7dc71acd6054e4bb51b/scikit_learn-1.6.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:44a17798172df1d3c1065e8fcf9019183f06c87609b49a124ebdf57ae6cb0107", size = 12693173, upload-time = "2025-01-10T08:07:42.713Z" }, - { url = "https://files.pythonhosted.org/packages/79/35/b1d2188967c3204c78fa79c9263668cf1b98060e8e58d1a730fe5b2317bb/scikit_learn-1.6.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b8b7a3b86e411e4bce21186e1c180d792f3d99223dcfa3b4f597ecc92fa1a422", size = 13518605, upload-time = "2025-01-10T08:07:46.551Z" }, - { url = "https://files.pythonhosted.org/packages/fb/d8/8d603bdd26601f4b07e2363032b8565ab82eb857f93d86d0f7956fcf4523/scikit_learn-1.6.1-cp39-cp39-win_amd64.whl", hash = "sha256:7a73d457070e3318e32bdb3aa79a8d990474f19035464dfd8bede2883ab5dc3b", size = 11155078, upload-time = "2025-01-10T08:07:51.376Z" }, -] - -[[package]] -name = "scikit-learn" -version = "1.7.2" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.10.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.10.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", -] -dependencies = [ - { name = "joblib", marker = "python_full_version == '3.10.*' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "numpy", marker = "python_full_version == '3.10.*' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "scipy", version = "1.15.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version == '3.10.*' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "threadpoolctl", marker = "python_full_version == '3.10.*' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/98/c2/a7855e41c9d285dfe86dc50b250978105dce513d6e459ea66a6aeb0e1e0c/scikit_learn-1.7.2.tar.gz", hash = "sha256:20e9e49ecd130598f1ca38a1d85090e1a600147b9c02fa6f15d69cb53d968fda", size = 7193136, upload-time = "2025-09-09T08:21:29.075Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/ba/3e/daed796fd69cce768b8788401cc464ea90b306fb196ae1ffed0b98182859/scikit_learn-1.7.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:6b33579c10a3081d076ab403df4a4190da4f4432d443521674637677dc91e61f", size = 9336221, upload-time = "2025-09-09T08:20:19.328Z" }, - { url = "https://files.pythonhosted.org/packages/1c/ce/af9d99533b24c55ff4e18d9b7b4d9919bbc6cd8f22fe7a7be01519a347d5/scikit_learn-1.7.2-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:36749fb62b3d961b1ce4fedf08fa57a1986cd409eff2d783bca5d4b9b5fce51c", size = 8653834, upload-time = "2025-09-09T08:20:22.073Z" }, - { url = "https://files.pythonhosted.org/packages/58/0e/8c2a03d518fb6bd0b6b0d4b114c63d5f1db01ff0f9925d8eb10960d01c01/scikit_learn-1.7.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:7a58814265dfc52b3295b1900cfb5701589d30a8bb026c7540f1e9d3499d5ec8", size = 9660938, upload-time = "2025-09-09T08:20:24.327Z" }, - { url = "https://files.pythonhosted.org/packages/2b/75/4311605069b5d220e7cf5adabb38535bd96f0079313cdbb04b291479b22a/scikit_learn-1.7.2-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:4a847fea807e278f821a0406ca01e387f97653e284ecbd9750e3ee7c90347f18", size = 9477818, upload-time = "2025-09-09T08:20:26.845Z" }, - { url = "https://files.pythonhosted.org/packages/7f/9b/87961813c34adbca21a6b3f6b2bea344c43b30217a6d24cc437c6147f3e8/scikit_learn-1.7.2-cp310-cp310-win_amd64.whl", hash = "sha256:ca250e6836d10e6f402436d6463d6c0e4d8e0234cfb6a9a47835bd392b852ce5", size = 8886969, upload-time = "2025-09-09T08:20:29.329Z" }, - { url = "https://files.pythonhosted.org/packages/43/83/564e141eef908a5863a54da8ca342a137f45a0bfb71d1d79704c9894c9d1/scikit_learn-1.7.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c7509693451651cd7361d30ce4e86a1347493554f172b1c72a39300fa2aea79e", size = 9331967, upload-time = "2025-09-09T08:20:32.421Z" }, - { url = "https://files.pythonhosted.org/packages/18/d6/ba863a4171ac9d7314c4d3fc251f015704a2caeee41ced89f321c049ed83/scikit_learn-1.7.2-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:0486c8f827c2e7b64837c731c8feff72c0bd2b998067a8a9cbc10643c31f0fe1", size = 8648645, upload-time = "2025-09-09T08:20:34.436Z" }, - { url = "https://files.pythonhosted.org/packages/ef/0e/97dbca66347b8cf0ea8b529e6bb9367e337ba2e8be0ef5c1a545232abfde/scikit_learn-1.7.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:89877e19a80c7b11a2891a27c21c4894fb18e2c2e077815bcade10d34287b20d", size = 9715424, upload-time = "2025-09-09T08:20:36.776Z" }, - { url = "https://files.pythonhosted.org/packages/f7/32/1f3b22e3207e1d2c883a7e09abb956362e7d1bd2f14458c7de258a26ac15/scikit_learn-1.7.2-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:8da8bf89d4d79aaec192d2bda62f9b56ae4e5b4ef93b6a56b5de4977e375c1f1", size = 9509234, upload-time = "2025-09-09T08:20:38.957Z" }, - { url = "https://files.pythonhosted.org/packages/9f/71/34ddbd21f1da67c7a768146968b4d0220ee6831e4bcbad3e03dd3eae88b6/scikit_learn-1.7.2-cp311-cp311-win_amd64.whl", hash = "sha256:9b7ed8d58725030568523e937c43e56bc01cadb478fc43c042a9aca1dacb3ba1", size = 8894244, upload-time = "2025-09-09T08:20:41.166Z" }, - { url = "https://files.pythonhosted.org/packages/a7/aa/3996e2196075689afb9fce0410ebdb4a09099d7964d061d7213700204409/scikit_learn-1.7.2-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:8d91a97fa2b706943822398ab943cde71858a50245e31bc71dba62aab1d60a96", size = 9259818, upload-time = "2025-09-09T08:20:43.19Z" }, - { url = "https://files.pythonhosted.org/packages/43/5d/779320063e88af9c4a7c2cf463ff11c21ac9c8bd730c4a294b0000b666c9/scikit_learn-1.7.2-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:acbc0f5fd2edd3432a22c69bed78e837c70cf896cd7993d71d51ba6708507476", size = 8636997, upload-time = "2025-09-09T08:20:45.468Z" }, - { url = "https://files.pythonhosted.org/packages/5c/d0/0c577d9325b05594fdd33aa970bf53fb673f051a45496842caee13cfd7fe/scikit_learn-1.7.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:e5bf3d930aee75a65478df91ac1225ff89cd28e9ac7bd1196853a9229b6adb0b", size = 9478381, upload-time = "2025-09-09T08:20:47.982Z" }, - { url = "https://files.pythonhosted.org/packages/82/70/8bf44b933837ba8494ca0fc9a9ab60f1c13b062ad0197f60a56e2fc4c43e/scikit_learn-1.7.2-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b4d6e9deed1a47aca9fe2f267ab8e8fe82ee20b4526b2c0cd9e135cea10feb44", size = 9300296, upload-time = "2025-09-09T08:20:50.366Z" }, - { url = "https://files.pythonhosted.org/packages/c6/99/ed35197a158f1fdc2fe7c3680e9c70d0128f662e1fee4ed495f4b5e13db0/scikit_learn-1.7.2-cp312-cp312-win_amd64.whl", hash = "sha256:6088aa475f0785e01bcf8529f55280a3d7d298679f50c0bb70a2364a82d0b290", size = 8731256, upload-time = "2025-09-09T08:20:52.627Z" }, - { url = "https://files.pythonhosted.org/packages/ae/93/a3038cb0293037fd335f77f31fe053b89c72f17b1c8908c576c29d953e84/scikit_learn-1.7.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:0b7dacaa05e5d76759fb071558a8b5130f4845166d88654a0f9bdf3eb57851b7", size = 9212382, upload-time = "2025-09-09T08:20:54.731Z" }, - { url = "https://files.pythonhosted.org/packages/40/dd/9a88879b0c1104259136146e4742026b52df8540c39fec21a6383f8292c7/scikit_learn-1.7.2-cp313-cp313-macosx_12_0_arm64.whl", hash = "sha256:abebbd61ad9e1deed54cca45caea8ad5f79e1b93173dece40bb8e0c658dbe6fe", size = 8592042, upload-time = "2025-09-09T08:20:57.313Z" }, - { url = "https://files.pythonhosted.org/packages/46/af/c5e286471b7d10871b811b72ae794ac5fe2989c0a2df07f0ec723030f5f5/scikit_learn-1.7.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:502c18e39849c0ea1a5d681af1dbcf15f6cce601aebb657aabbfe84133c1907f", size = 9434180, upload-time = "2025-09-09T08:20:59.671Z" }, - { url = "https://files.pythonhosted.org/packages/f1/fd/df59faa53312d585023b2da27e866524ffb8faf87a68516c23896c718320/scikit_learn-1.7.2-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:7a4c328a71785382fe3fe676a9ecf2c86189249beff90bf85e22bdb7efaf9ae0", size = 9283660, upload-time = "2025-09-09T08:21:01.71Z" }, - { url = "https://files.pythonhosted.org/packages/a7/c7/03000262759d7b6f38c836ff9d512f438a70d8a8ddae68ee80de72dcfb63/scikit_learn-1.7.2-cp313-cp313-win_amd64.whl", hash = "sha256:63a9afd6f7b229aad94618c01c252ce9e6fa97918c5ca19c9a17a087d819440c", size = 8702057, upload-time = "2025-09-09T08:21:04.234Z" }, - { url = "https://files.pythonhosted.org/packages/55/87/ef5eb1f267084532c8e4aef98a28b6ffe7425acbfd64b5e2f2e066bc29b3/scikit_learn-1.7.2-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:9acb6c5e867447b4e1390930e3944a005e2cb115922e693c08a323421a6966e8", size = 9558731, upload-time = "2025-09-09T08:21:06.381Z" }, - { url = "https://files.pythonhosted.org/packages/93/f8/6c1e3fc14b10118068d7938878a9f3f4e6d7b74a8ddb1e5bed65159ccda8/scikit_learn-1.7.2-cp313-cp313t-macosx_12_0_arm64.whl", hash = "sha256:2a41e2a0ef45063e654152ec9d8bcfc39f7afce35b08902bfe290c2498a67a6a", size = 9038852, upload-time = "2025-09-09T08:21:08.628Z" }, - { url = "https://files.pythonhosted.org/packages/83/87/066cafc896ee540c34becf95d30375fe5cbe93c3b75a0ee9aa852cd60021/scikit_learn-1.7.2-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:98335fb98509b73385b3ab2bd0639b1f610541d3988ee675c670371d6a87aa7c", size = 9527094, upload-time = "2025-09-09T08:21:11.486Z" }, - { url = "https://files.pythonhosted.org/packages/9c/2b/4903e1ccafa1f6453b1ab78413938c8800633988c838aa0be386cbb33072/scikit_learn-1.7.2-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:191e5550980d45449126e23ed1d5e9e24b2c68329ee1f691a3987476e115e09c", size = 9367436, upload-time = "2025-09-09T08:21:13.602Z" }, - { url = "https://files.pythonhosted.org/packages/b5/aa/8444be3cfb10451617ff9d177b3c190288f4563e6c50ff02728be67ad094/scikit_learn-1.7.2-cp313-cp313t-win_amd64.whl", hash = "sha256:57dc4deb1d3762c75d685507fbd0bc17160144b2f2ba4ccea5dc285ab0d0e973", size = 9275749, upload-time = "2025-09-09T08:21:15.96Z" }, ] [[package]] name = "scikit-learn" version = "1.8.0" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.11.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.11.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", -] dependencies = [ - { name = "joblib", marker = "python_full_version >= '3.11' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "numpy", marker = "python_full_version >= '3.11' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "scipy", version = "1.17.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "threadpoolctl", marker = "python_full_version >= '3.11' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "joblib" }, + { name = "numpy" }, + { name = "scipy" }, + { name = "threadpoolctl" }, ] sdist = { url = "https://files.pythonhosted.org/packages/0e/d4/40988bf3b8e34feec1d0e6a051446b1f66225f8529b9309becaeef62b6c4/scikit_learn-1.8.0.tar.gz", hash = "sha256:9bccbb3b40e3de10351f8f5068e105d0f4083b1a65fa07b6634fbc401a6287fd", size = 7335585, upload-time = "2025-12-10T07:08:53.618Z" } wheels = [ @@ -9033,199 +4153,12 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/5e/37/e192ea709551799379958b4c4771ec507347027bb7c942662c7fbeba31cb/scikit_learn-1.8.0-cp313-cp313t-win_arm64.whl", hash = "sha256:bf97c10a3f5a7543f9b88cbf488d33d175e9146115a451ae34568597ba33dcde", size = 7869518, upload-time = "2025-12-10T07:08:25.71Z" }, ] -[[package]] -name = "scipy" -version = "1.13.1" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", -] -dependencies = [ - { name = "numpy", marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/ae/00/48c2f661e2816ccf2ecd77982f6605b2950afe60f60a52b4cbbc2504aa8f/scipy-1.13.1.tar.gz", hash = "sha256:095a87a0312b08dfd6a6155cbbd310a8c51800fc931b8c0b84003014b874ed3c", size = 57210720, upload-time = "2024-05-23T03:29:26.079Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/33/59/41b2529908c002ade869623b87eecff3e11e3ce62e996d0bdcb536984187/scipy-1.13.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:20335853b85e9a49ff7572ab453794298bcf0354d8068c5f6775a0eabf350aca", size = 39328076, upload-time = "2024-05-23T03:19:01.687Z" }, - { url = "https://files.pythonhosted.org/packages/d5/33/f1307601f492f764062ce7dd471a14750f3360e33cd0f8c614dae208492c/scipy-1.13.1-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:d605e9c23906d1994f55ace80e0125c587f96c020037ea6aa98d01b4bd2e222f", size = 30306232, upload-time = "2024-05-23T03:19:09.089Z" }, - { url = "https://files.pythonhosted.org/packages/c0/66/9cd4f501dd5ea03e4a4572ecd874936d0da296bd04d1c45ae1a4a75d9c3a/scipy-1.13.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cfa31f1def5c819b19ecc3a8b52d28ffdcc7ed52bb20c9a7589669dd3c250989", size = 33743202, upload-time = "2024-05-23T03:19:15.138Z" }, - { url = "https://files.pythonhosted.org/packages/a3/ba/7255e5dc82a65adbe83771c72f384d99c43063648456796436c9a5585ec3/scipy-1.13.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f26264b282b9da0952a024ae34710c2aff7d27480ee91a2e82b7b7073c24722f", size = 38577335, upload-time = "2024-05-23T03:19:21.984Z" }, - { url = "https://files.pythonhosted.org/packages/49/a5/bb9ded8326e9f0cdfdc412eeda1054b914dfea952bda2097d174f8832cc0/scipy-1.13.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:eccfa1906eacc02de42d70ef4aecea45415f5be17e72b61bafcfd329bdc52e94", size = 38820728, upload-time = "2024-05-23T03:19:28.225Z" }, - { url = "https://files.pythonhosted.org/packages/12/30/df7a8fcc08f9b4a83f5f27cfaaa7d43f9a2d2ad0b6562cced433e5b04e31/scipy-1.13.1-cp310-cp310-win_amd64.whl", hash = "sha256:2831f0dc9c5ea9edd6e51e6e769b655f08ec6db6e2e10f86ef39bd32eb11da54", size = 46210588, upload-time = "2024-05-23T03:19:35.661Z" }, - { url = "https://files.pythonhosted.org/packages/b4/15/4a4bb1b15bbd2cd2786c4f46e76b871b28799b67891f23f455323a0cdcfb/scipy-1.13.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:27e52b09c0d3a1d5b63e1105f24177e544a222b43611aaf5bc44d4a0979e32f9", size = 39333805, upload-time = "2024-05-23T03:19:43.081Z" }, - { url = "https://files.pythonhosted.org/packages/ba/92/42476de1af309c27710004f5cdebc27bec62c204db42e05b23a302cb0c9a/scipy-1.13.1-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:54f430b00f0133e2224c3ba42b805bfd0086fe488835effa33fa291561932326", size = 30317687, upload-time = "2024-05-23T03:19:48.799Z" }, - { url = "https://files.pythonhosted.org/packages/80/ba/8be64fe225360a4beb6840f3cbee494c107c0887f33350d0a47d55400b01/scipy-1.13.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e89369d27f9e7b0884ae559a3a956e77c02114cc60a6058b4e5011572eea9299", size = 33694638, upload-time = "2024-05-23T03:19:55.104Z" }, - { url = "https://files.pythonhosted.org/packages/36/07/035d22ff9795129c5a847c64cb43c1fa9188826b59344fee28a3ab02e283/scipy-1.13.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a78b4b3345f1b6f68a763c6e25c0c9a23a9fd0f39f5f3d200efe8feda560a5fa", size = 38569931, upload-time = "2024-05-23T03:20:01.82Z" }, - { url = "https://files.pythonhosted.org/packages/d9/10/f9b43de37e5ed91facc0cfff31d45ed0104f359e4f9a68416cbf4e790241/scipy-1.13.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:45484bee6d65633752c490404513b9ef02475b4284c4cfab0ef946def50b3f59", size = 38838145, upload-time = "2024-05-23T03:20:09.173Z" }, - { url = "https://files.pythonhosted.org/packages/4a/48/4513a1a5623a23e95f94abd675ed91cfb19989c58e9f6f7d03990f6caf3d/scipy-1.13.1-cp311-cp311-win_amd64.whl", hash = "sha256:5713f62f781eebd8d597eb3f88b8bf9274e79eeabf63afb4a737abc6c84ad37b", size = 46196227, upload-time = "2024-05-23T03:20:16.433Z" }, - { url = "https://files.pythonhosted.org/packages/f2/7b/fb6b46fbee30fc7051913068758414f2721003a89dd9a707ad49174e3843/scipy-1.13.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:5d72782f39716b2b3509cd7c33cdc08c96f2f4d2b06d51e52fb45a19ca0c86a1", size = 39357301, upload-time = "2024-05-23T03:20:23.538Z" }, - { url = "https://files.pythonhosted.org/packages/dc/5a/2043a3bde1443d94014aaa41e0b50c39d046dda8360abd3b2a1d3f79907d/scipy-1.13.1-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:017367484ce5498445aade74b1d5ab377acdc65e27095155e448c88497755a5d", size = 30363348, upload-time = "2024-05-23T03:20:29.885Z" }, - { url = "https://files.pythonhosted.org/packages/e7/cb/26e4a47364bbfdb3b7fb3363be6d8a1c543bcd70a7753ab397350f5f189a/scipy-1.13.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:949ae67db5fa78a86e8fa644b9a6b07252f449dcf74247108c50e1d20d2b4627", size = 33406062, upload-time = "2024-05-23T03:20:36.012Z" }, - { url = "https://files.pythonhosted.org/packages/88/ab/6ecdc526d509d33814835447bbbeedbebdec7cca46ef495a61b00a35b4bf/scipy-1.13.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:de3ade0e53bc1f21358aa74ff4830235d716211d7d077e340c7349bc3542e884", size = 38218311, upload-time = "2024-05-23T03:20:42.086Z" }, - { url = "https://files.pythonhosted.org/packages/0b/00/9f54554f0f8318100a71515122d8f4f503b1a2c4b4cfab3b4b68c0eb08fa/scipy-1.13.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:2ac65fb503dad64218c228e2dc2d0a0193f7904747db43014645ae139c8fad16", size = 38442493, upload-time = "2024-05-23T03:20:48.292Z" }, - { url = "https://files.pythonhosted.org/packages/3e/df/963384e90733e08eac978cd103c34df181d1fec424de383cdc443f418dd4/scipy-1.13.1-cp312-cp312-win_amd64.whl", hash = "sha256:cdd7dacfb95fea358916410ec61bbc20440f7860333aee6d882bb8046264e949", size = 45910955, upload-time = "2024-05-23T03:20:55.091Z" }, - { url = "https://files.pythonhosted.org/packages/7f/29/c2ea58c9731b9ecb30b6738113a95d147e83922986b34c685b8f6eefde21/scipy-1.13.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:436bbb42a94a8aeef855d755ce5a465479c721e9d684de76bf61a62e7c2b81d5", size = 39352927, upload-time = "2024-05-23T03:21:01.95Z" }, - { url = "https://files.pythonhosted.org/packages/5c/c0/e71b94b20ccf9effb38d7147c0064c08c622309fd487b1b677771a97d18c/scipy-1.13.1-cp39-cp39-macosx_12_0_arm64.whl", hash = "sha256:8335549ebbca860c52bf3d02f80784e91a004b71b059e3eea9678ba994796a24", size = 30324538, upload-time = "2024-05-23T03:21:07.634Z" }, - { url = "https://files.pythonhosted.org/packages/6d/0f/aaa55b06d474817cea311e7b10aab2ea1fd5d43bc6a2861ccc9caec9f418/scipy-1.13.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d533654b7d221a6a97304ab63c41c96473ff04459e404b83275b60aa8f4b7004", size = 33732190, upload-time = "2024-05-23T03:21:14.41Z" }, - { url = "https://files.pythonhosted.org/packages/35/f5/d0ad1a96f80962ba65e2ce1de6a1e59edecd1f0a7b55990ed208848012e0/scipy-1.13.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:637e98dcf185ba7f8e663e122ebf908c4702420477ae52a04f9908707456ba4d", size = 38612244, upload-time = "2024-05-23T03:21:21.827Z" }, - { url = "https://files.pythonhosted.org/packages/8d/02/1165905f14962174e6569076bcc3315809ae1291ed14de6448cc151eedfd/scipy-1.13.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:a014c2b3697bde71724244f63de2476925596c24285c7a637364761f8710891c", size = 38845637, upload-time = "2024-05-23T03:21:28.729Z" }, - { url = "https://files.pythonhosted.org/packages/3e/77/dab54fe647a08ee4253963bcd8f9cf17509c8ca64d6335141422fe2e2114/scipy-1.13.1-cp39-cp39-win_amd64.whl", hash = "sha256:392e4ec766654852c25ebad4f64e4e584cf19820b980bc04960bca0b0cd6eaa2", size = 46227440, upload-time = "2024-05-23T03:21:35.888Z" }, -] - -[[package]] -name = "scipy" -version = "1.15.3" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.10.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version == '3.10.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", -] -dependencies = [ - { name = "numpy", marker = "python_full_version == '3.10.*' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/0f/37/6964b830433e654ec7485e45a00fc9a27cf868d622838f6b6d9c5ec0d532/scipy-1.15.3.tar.gz", hash = "sha256:eae3cf522bc7df64b42cad3925c876e1b0b6c35c1337c93e12c0f366f55b0eaf", size = 59419214, upload-time = "2025-05-08T16:13:05.955Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/78/2f/4966032c5f8cc7e6a60f1b2e0ad686293b9474b65246b0c642e3ef3badd0/scipy-1.15.3-cp310-cp310-macosx_10_13_x86_64.whl", hash = "sha256:a345928c86d535060c9c2b25e71e87c39ab2f22fc96e9636bd74d1dbf9de448c", size = 38702770, upload-time = "2025-05-08T16:04:20.849Z" }, - { url = "https://files.pythonhosted.org/packages/a0/6e/0c3bf90fae0e910c274db43304ebe25a6b391327f3f10b5dcc638c090795/scipy-1.15.3-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:ad3432cb0f9ed87477a8d97f03b763fd1d57709f1bbde3c9369b1dff5503b253", size = 30094511, upload-time = "2025-05-08T16:04:27.103Z" }, - { url = "https://files.pythonhosted.org/packages/ea/b1/4deb37252311c1acff7f101f6453f0440794f51b6eacb1aad4459a134081/scipy-1.15.3-cp310-cp310-macosx_14_0_arm64.whl", hash = "sha256:aef683a9ae6eb00728a542b796f52a5477b78252edede72b8327a886ab63293f", size = 22368151, upload-time = "2025-05-08T16:04:31.731Z" }, - { url = "https://files.pythonhosted.org/packages/38/7d/f457626e3cd3c29b3a49ca115a304cebb8cc6f31b04678f03b216899d3c6/scipy-1.15.3-cp310-cp310-macosx_14_0_x86_64.whl", hash = "sha256:1c832e1bd78dea67d5c16f786681b28dd695a8cb1fb90af2e27580d3d0967e92", size = 25121732, upload-time = "2025-05-08T16:04:36.596Z" }, - { url = "https://files.pythonhosted.org/packages/db/0a/92b1de4a7adc7a15dcf5bddc6e191f6f29ee663b30511ce20467ef9b82e4/scipy-1.15.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:263961f658ce2165bbd7b99fa5135195c3a12d9bef045345016b8b50c315cb82", size = 35547617, upload-time = "2025-05-08T16:04:43.546Z" }, - { url = "https://files.pythonhosted.org/packages/8e/6d/41991e503e51fc1134502694c5fa7a1671501a17ffa12716a4a9151af3df/scipy-1.15.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9e2abc762b0811e09a0d3258abee2d98e0c703eee49464ce0069590846f31d40", size = 37662964, upload-time = "2025-05-08T16:04:49.431Z" }, - { url = "https://files.pythonhosted.org/packages/25/e1/3df8f83cb15f3500478c889be8fb18700813b95e9e087328230b98d547ff/scipy-1.15.3-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:ed7284b21a7a0c8f1b6e5977ac05396c0d008b89e05498c8b7e8f4a1423bba0e", size = 37238749, upload-time = "2025-05-08T16:04:55.215Z" }, - { url = "https://files.pythonhosted.org/packages/93/3e/b3257cf446f2a3533ed7809757039016b74cd6f38271de91682aa844cfc5/scipy-1.15.3-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:5380741e53df2c566f4d234b100a484b420af85deb39ea35a1cc1be84ff53a5c", size = 40022383, upload-time = "2025-05-08T16:05:01.914Z" }, - { url = "https://files.pythonhosted.org/packages/d1/84/55bc4881973d3f79b479a5a2e2df61c8c9a04fcb986a213ac9c02cfb659b/scipy-1.15.3-cp310-cp310-win_amd64.whl", hash = "sha256:9d61e97b186a57350f6d6fd72640f9e99d5a4a2b8fbf4b9ee9a841eab327dc13", size = 41259201, upload-time = "2025-05-08T16:05:08.166Z" }, - { url = "https://files.pythonhosted.org/packages/96/ab/5cc9f80f28f6a7dff646c5756e559823614a42b1939d86dd0ed550470210/scipy-1.15.3-cp311-cp311-macosx_10_13_x86_64.whl", hash = "sha256:993439ce220d25e3696d1b23b233dd010169b62f6456488567e830654ee37a6b", size = 38714255, upload-time = "2025-05-08T16:05:14.596Z" }, - { url = "https://files.pythonhosted.org/packages/4a/4a/66ba30abe5ad1a3ad15bfb0b59d22174012e8056ff448cb1644deccbfed2/scipy-1.15.3-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:34716e281f181a02341ddeaad584205bd2fd3c242063bd3423d61ac259ca7eba", size = 30111035, upload-time = "2025-05-08T16:05:20.152Z" }, - { url = "https://files.pythonhosted.org/packages/4b/fa/a7e5b95afd80d24313307f03624acc65801846fa75599034f8ceb9e2cbf6/scipy-1.15.3-cp311-cp311-macosx_14_0_arm64.whl", hash = "sha256:3b0334816afb8b91dab859281b1b9786934392aa3d527cd847e41bb6f45bee65", size = 22384499, upload-time = "2025-05-08T16:05:24.494Z" }, - { url = "https://files.pythonhosted.org/packages/17/99/f3aaddccf3588bb4aea70ba35328c204cadd89517a1612ecfda5b2dd9d7a/scipy-1.15.3-cp311-cp311-macosx_14_0_x86_64.whl", hash = "sha256:6db907c7368e3092e24919b5e31c76998b0ce1684d51a90943cb0ed1b4ffd6c1", size = 25152602, upload-time = "2025-05-08T16:05:29.313Z" }, - { url = "https://files.pythonhosted.org/packages/56/c5/1032cdb565f146109212153339f9cb8b993701e9fe56b1c97699eee12586/scipy-1.15.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:721d6b4ef5dc82ca8968c25b111e307083d7ca9091bc38163fb89243e85e3889", size = 35503415, upload-time = "2025-05-08T16:05:34.699Z" }, - { url = "https://files.pythonhosted.org/packages/bd/37/89f19c8c05505d0601ed5650156e50eb881ae3918786c8fd7262b4ee66d3/scipy-1.15.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:39cb9c62e471b1bb3750066ecc3a3f3052b37751c7c3dfd0fd7e48900ed52982", size = 37652622, upload-time = "2025-05-08T16:05:40.762Z" }, - { url = "https://files.pythonhosted.org/packages/7e/31/be59513aa9695519b18e1851bb9e487de66f2d31f835201f1b42f5d4d475/scipy-1.15.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:795c46999bae845966368a3c013e0e00947932d68e235702b5c3f6ea799aa8c9", size = 37244796, upload-time = "2025-05-08T16:05:48.119Z" }, - { url = "https://files.pythonhosted.org/packages/10/c0/4f5f3eeccc235632aab79b27a74a9130c6c35df358129f7ac8b29f562ac7/scipy-1.15.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:18aaacb735ab38b38db42cb01f6b92a2d0d4b6aabefeb07f02849e47f8fb3594", size = 40047684, upload-time = "2025-05-08T16:05:54.22Z" }, - { url = "https://files.pythonhosted.org/packages/ab/a7/0ddaf514ce8a8714f6ed243a2b391b41dbb65251affe21ee3077ec45ea9a/scipy-1.15.3-cp311-cp311-win_amd64.whl", hash = "sha256:ae48a786a28412d744c62fd7816a4118ef97e5be0bee968ce8f0a2fba7acf3bb", size = 41246504, upload-time = "2025-05-08T16:06:00.437Z" }, - { url = "https://files.pythonhosted.org/packages/37/4b/683aa044c4162e10ed7a7ea30527f2cbd92e6999c10a8ed8edb253836e9c/scipy-1.15.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:6ac6310fdbfb7aa6612408bd2f07295bcbd3fda00d2d702178434751fe48e019", size = 38766735, upload-time = "2025-05-08T16:06:06.471Z" }, - { url = "https://files.pythonhosted.org/packages/7b/7e/f30be3d03de07f25dc0ec926d1681fed5c732d759ac8f51079708c79e680/scipy-1.15.3-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:185cd3d6d05ca4b44a8f1595af87f9c372bb6acf9c808e99aa3e9aa03bd98cf6", size = 30173284, upload-time = "2025-05-08T16:06:11.686Z" }, - { url = "https://files.pythonhosted.org/packages/07/9c/0ddb0d0abdabe0d181c1793db51f02cd59e4901da6f9f7848e1f96759f0d/scipy-1.15.3-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:05dc6abcd105e1a29f95eada46d4a3f251743cfd7d3ae8ddb4088047f24ea477", size = 22446958, upload-time = "2025-05-08T16:06:15.97Z" }, - { url = "https://files.pythonhosted.org/packages/af/43/0bce905a965f36c58ff80d8bea33f1f9351b05fad4beaad4eae34699b7a1/scipy-1.15.3-cp312-cp312-macosx_14_0_x86_64.whl", hash = "sha256:06efcba926324df1696931a57a176c80848ccd67ce6ad020c810736bfd58eb1c", size = 25242454, upload-time = "2025-05-08T16:06:20.394Z" }, - { url = "https://files.pythonhosted.org/packages/56/30/a6f08f84ee5b7b28b4c597aca4cbe545535c39fe911845a96414700b64ba/scipy-1.15.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c05045d8b9bfd807ee1b9f38761993297b10b245f012b11b13b91ba8945f7e45", size = 35210199, upload-time = "2025-05-08T16:06:26.159Z" }, - { url = "https://files.pythonhosted.org/packages/0b/1f/03f52c282437a168ee2c7c14a1a0d0781a9a4a8962d84ac05c06b4c5b555/scipy-1.15.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:271e3713e645149ea5ea3e97b57fdab61ce61333f97cfae392c28ba786f9bb49", size = 37309455, upload-time = "2025-05-08T16:06:32.778Z" }, - { url = "https://files.pythonhosted.org/packages/89/b1/fbb53137f42c4bf630b1ffdfc2151a62d1d1b903b249f030d2b1c0280af8/scipy-1.15.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:6cfd56fc1a8e53f6e89ba3a7a7251f7396412d655bca2aa5611c8ec9a6784a1e", size = 36885140, upload-time = "2025-05-08T16:06:39.249Z" }, - { url = "https://files.pythonhosted.org/packages/2e/2e/025e39e339f5090df1ff266d021892694dbb7e63568edcfe43f892fa381d/scipy-1.15.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0ff17c0bb1cb32952c09217d8d1eed9b53d1463e5f1dd6052c7857f83127d539", size = 39710549, upload-time = "2025-05-08T16:06:45.729Z" }, - { url = "https://files.pythonhosted.org/packages/e6/eb/3bf6ea8ab7f1503dca3a10df2e4b9c3f6b3316df07f6c0ded94b281c7101/scipy-1.15.3-cp312-cp312-win_amd64.whl", hash = "sha256:52092bc0472cfd17df49ff17e70624345efece4e1a12b23783a1ac59a1b728ed", size = 40966184, upload-time = "2025-05-08T16:06:52.623Z" }, - { url = "https://files.pythonhosted.org/packages/73/18/ec27848c9baae6e0d6573eda6e01a602e5649ee72c27c3a8aad673ebecfd/scipy-1.15.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:2c620736bcc334782e24d173c0fdbb7590a0a436d2fdf39310a8902505008759", size = 38728256, upload-time = "2025-05-08T16:06:58.696Z" }, - { url = "https://files.pythonhosted.org/packages/74/cd/1aef2184948728b4b6e21267d53b3339762c285a46a274ebb7863c9e4742/scipy-1.15.3-cp313-cp313-macosx_12_0_arm64.whl", hash = "sha256:7e11270a000969409d37ed399585ee530b9ef6aa99d50c019de4cb01e8e54e62", size = 30109540, upload-time = "2025-05-08T16:07:04.209Z" }, - { url = "https://files.pythonhosted.org/packages/5b/d8/59e452c0a255ec352bd0a833537a3bc1bfb679944c4938ab375b0a6b3a3e/scipy-1.15.3-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:8c9ed3ba2c8a2ce098163a9bdb26f891746d02136995df25227a20e71c396ebb", size = 22383115, upload-time = "2025-05-08T16:07:08.998Z" }, - { url = "https://files.pythonhosted.org/packages/08/f5/456f56bbbfccf696263b47095291040655e3cbaf05d063bdc7c7517f32ac/scipy-1.15.3-cp313-cp313-macosx_14_0_x86_64.whl", hash = "sha256:0bdd905264c0c9cfa74a4772cdb2070171790381a5c4d312c973382fc6eaf730", size = 25163884, upload-time = "2025-05-08T16:07:14.091Z" }, - { url = "https://files.pythonhosted.org/packages/a2/66/a9618b6a435a0f0c0b8a6d0a2efb32d4ec5a85f023c2b79d39512040355b/scipy-1.15.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:79167bba085c31f38603e11a267d862957cbb3ce018d8b38f79ac043bc92d825", size = 35174018, upload-time = "2025-05-08T16:07:19.427Z" }, - { url = "https://files.pythonhosted.org/packages/b5/09/c5b6734a50ad4882432b6bb7c02baf757f5b2f256041da5df242e2d7e6b6/scipy-1.15.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c9deabd6d547aee2c9a81dee6cc96c6d7e9a9b1953f74850c179f91fdc729cb7", size = 37269716, upload-time = "2025-05-08T16:07:25.712Z" }, - { url = "https://files.pythonhosted.org/packages/77/0a/eac00ff741f23bcabd352731ed9b8995a0a60ef57f5fd788d611d43d69a1/scipy-1.15.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:dde4fc32993071ac0c7dd2d82569e544f0bdaff66269cb475e0f369adad13f11", size = 36872342, upload-time = "2025-05-08T16:07:31.468Z" }, - { url = "https://files.pythonhosted.org/packages/fe/54/4379be86dd74b6ad81551689107360d9a3e18f24d20767a2d5b9253a3f0a/scipy-1.15.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:f77f853d584e72e874d87357ad70f44b437331507d1c311457bed8ed2b956126", size = 39670869, upload-time = "2025-05-08T16:07:38.002Z" }, - { url = "https://files.pythonhosted.org/packages/87/2e/892ad2862ba54f084ffe8cc4a22667eaf9c2bcec6d2bff1d15713c6c0703/scipy-1.15.3-cp313-cp313-win_amd64.whl", hash = "sha256:b90ab29d0c37ec9bf55424c064312930ca5f4bde15ee8619ee44e69319aab163", size = 40988851, upload-time = "2025-05-08T16:08:33.671Z" }, - { url = "https://files.pythonhosted.org/packages/1b/e9/7a879c137f7e55b30d75d90ce3eb468197646bc7b443ac036ae3fe109055/scipy-1.15.3-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:3ac07623267feb3ae308487c260ac684b32ea35fd81e12845039952f558047b8", size = 38863011, upload-time = "2025-05-08T16:07:44.039Z" }, - { url = "https://files.pythonhosted.org/packages/51/d1/226a806bbd69f62ce5ef5f3ffadc35286e9fbc802f606a07eb83bf2359de/scipy-1.15.3-cp313-cp313t-macosx_12_0_arm64.whl", hash = "sha256:6487aa99c2a3d509a5227d9a5e889ff05830a06b2ce08ec30df6d79db5fcd5c5", size = 30266407, upload-time = "2025-05-08T16:07:49.891Z" }, - { url = "https://files.pythonhosted.org/packages/e5/9b/f32d1d6093ab9eeabbd839b0f7619c62e46cc4b7b6dbf05b6e615bbd4400/scipy-1.15.3-cp313-cp313t-macosx_14_0_arm64.whl", hash = "sha256:50f9e62461c95d933d5c5ef4a1f2ebf9a2b4e83b0db374cb3f1de104d935922e", size = 22540030, upload-time = "2025-05-08T16:07:54.121Z" }, - { url = "https://files.pythonhosted.org/packages/e7/29/c278f699b095c1a884f29fda126340fcc201461ee8bfea5c8bdb1c7c958b/scipy-1.15.3-cp313-cp313t-macosx_14_0_x86_64.whl", hash = "sha256:14ed70039d182f411ffc74789a16df3835e05dc469b898233a245cdfd7f162cb", size = 25218709, upload-time = "2025-05-08T16:07:58.506Z" }, - { url = "https://files.pythonhosted.org/packages/24/18/9e5374b617aba742a990581373cd6b68a2945d65cc588482749ef2e64467/scipy-1.15.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0a769105537aa07a69468a0eefcd121be52006db61cdd8cac8a0e68980bbb723", size = 34809045, upload-time = "2025-05-08T16:08:03.929Z" }, - { url = "https://files.pythonhosted.org/packages/e1/fe/9c4361e7ba2927074360856db6135ef4904d505e9b3afbbcb073c4008328/scipy-1.15.3-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9db984639887e3dffb3928d118145ffe40eff2fa40cb241a306ec57c219ebbbb", size = 36703062, upload-time = "2025-05-08T16:08:09.558Z" }, - { url = "https://files.pythonhosted.org/packages/b7/8e/038ccfe29d272b30086b25a4960f757f97122cb2ec42e62b460d02fe98e9/scipy-1.15.3-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:40e54d5c7e7ebf1aa596c374c49fa3135f04648a0caabcb66c52884b943f02b4", size = 36393132, upload-time = "2025-05-08T16:08:15.34Z" }, - { url = "https://files.pythonhosted.org/packages/10/7e/5c12285452970be5bdbe8352c619250b97ebf7917d7a9a9e96b8a8140f17/scipy-1.15.3-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:5e721fed53187e71d0ccf382b6bf977644c533e506c4d33c3fb24de89f5c3ed5", size = 38979503, upload-time = "2025-05-08T16:08:21.513Z" }, - { url = "https://files.pythonhosted.org/packages/81/06/0a5e5349474e1cbc5757975b21bd4fad0e72ebf138c5592f191646154e06/scipy-1.15.3-cp313-cp313t-win_amd64.whl", hash = "sha256:76ad1fb5f8752eabf0fa02e4cc0336b4e8f021e2d5f061ed37d6d264db35e3ca", size = 40308097, upload-time = "2025-05-08T16:08:27.627Z" }, -] - [[package]] name = "scipy" version = "1.17.1" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.11.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.11.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", -] dependencies = [ - { name = "numpy", marker = "python_full_version >= '3.11' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy" }, ] sdist = { url = "https://files.pythonhosted.org/packages/7a/97/5a3609c4f8d58b039179648e62dd220f89864f56f7357f5d4f45c29eb2cc/scipy-1.17.1.tar.gz", hash = "sha256:95d8e012d8cb8816c226aef832200b1d45109ed4464303e997c5b13122b297c0", size = 30573822, upload-time = "2026-02-23T00:26:24.851Z" } wheels = [ @@ -9286,14 +4219,6 @@ version = "0.2.1" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/15/15/2e7a025fc62d764b151ae6d0f2a92f8081755ebe8d4a64099accc6f77ba6/sentencepiece-0.2.1.tar.gz", hash = "sha256:8138cec27c2f2282f4a34d9a016e3374cd40e5c6e9cb335063db66a0a3b71fad", size = 3228515, upload-time = "2025-08-12T07:00:51.718Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/af/31/5b7cccb307b485db1a2372d6d2980b0a65d067f8be5ca943a103b4acd5b3/sentencepiece-0.2.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:e10fa50bdbaa5e2445dbd387979980d391760faf0ec99a09bd7780ff37eaec44", size = 1942557, upload-time = "2025-08-12T06:59:12.379Z" }, - { url = "https://files.pythonhosted.org/packages/1f/41/0ac923a8e685ad290c5afc8ae55c5844977b8d75076fcc04302b9a324274/sentencepiece-0.2.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:2f27ae6deea72efdb6f361750c92f6c21fd0ad087445082770cc34015213c526", size = 1325384, upload-time = "2025-08-12T06:59:14.334Z" }, - { url = "https://files.pythonhosted.org/packages/fc/ef/3751555d67daf9003384978f169d31c775cb5c7baf28633caaf1eb2b2b4d/sentencepiece-0.2.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:60937c959e6f44159fdd9f56fbdd302501f96114a5ba436829496d5f32d8de3f", size = 1253317, upload-time = "2025-08-12T06:59:16.247Z" }, - { url = "https://files.pythonhosted.org/packages/46/a5/742c69b7bd144eb32b6e5fd50dbd8abbbc7a95fce2fe16e50156fa400e3b/sentencepiece-0.2.1-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:d8b1d91545578852f128650b8cce4ec20f93d39b378ff554ebe66290f2dabb92", size = 1316379, upload-time = "2025-08-12T06:59:17.825Z" }, - { url = "https://files.pythonhosted.org/packages/c8/89/8deeafbba2871e8fa10f20f17447786f4ac38085925335728d360eaf4cae/sentencepiece-0.2.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:27e38eee653abc3d387862e67bc5c8b6f428cd604e688b85d29170b7e725c26c", size = 1387926, upload-time = "2025-08-12T06:59:19.395Z" }, - { url = "https://files.pythonhosted.org/packages/c3/ca/67fe73005f0ab617c6a970b199754e28e524b6873aa7025224fad3cda252/sentencepiece-0.2.1-cp310-cp310-win32.whl", hash = "sha256:251874d720ac7f28024a168501f3c7bb15d1802245f6e66de565f18bbb9b5eaa", size = 999550, upload-time = "2025-08-12T06:59:20.844Z" }, - { url = "https://files.pythonhosted.org/packages/6d/33/dc5b54042050d2dda4229c3ce1f862541c99966390b6aa20f54d520d2dc2/sentencepiece-0.2.1-cp310-cp310-win_amd64.whl", hash = "sha256:e52144670738b4b477fade6c2a9b6af71a8d0094514c9853ac9f6fc1fcfabae7", size = 1054613, upload-time = "2025-08-12T06:59:22.255Z" }, - { url = "https://files.pythonhosted.org/packages/fa/19/1ea47f46ff97fe04422b78997da1a37cd632f414aae042d27a9009c5b733/sentencepiece-0.2.1-cp310-cp310-win_arm64.whl", hash = "sha256:9076430ac25dfa7147d9d05751dbc66a04bc1aaac371c07f84952979ea59f0d0", size = 1033884, upload-time = "2025-08-12T06:59:24.194Z" }, { url = "https://files.pythonhosted.org/packages/d8/15/46afbab00733d81788b64be430ca1b93011bb9388527958e26cc31832de5/sentencepiece-0.2.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:6356d0986b8b8dc351b943150fcd81a1c6e6e4d439772e8584c64230e58ca987", size = 1942560, upload-time = "2025-08-12T06:59:25.82Z" }, { url = "https://files.pythonhosted.org/packages/fa/79/7c01b8ef98a0567e9d84a4e7a910f8e7074fcbf398a5cd76f93f4b9316f9/sentencepiece-0.2.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:8f8ba89a3acb3dc1ae90f65ec1894b0b9596fdb98ab003ff38e058f898b39bc7", size = 1325385, upload-time = "2025-08-12T06:59:27.722Z" }, { url = "https://files.pythonhosted.org/packages/bb/88/2b41e07bd24f33dcf2f18ec3b74247aa4af3526bad8907b8727ea3caba03/sentencepiece-0.2.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:02593eca45440ef39247cee8c47322a34bdcc1d8ae83ad28ba5a899a2cf8d79a", size = 1253319, upload-time = "2025-08-12T06:59:29.306Z" }, @@ -9326,14 +4251,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/99/5e/ae66c361023a470afcbc1fbb8da722c72ea678a2fcd9a18f1a12598c7501/sentencepiece-0.2.1-cp313-cp313t-win32.whl", hash = "sha256:89a3ea015517c42c0341d0d962f3e6aaf2cf10d71b1932d475c44ba48d00aa2b", size = 1002501, upload-time = "2025-08-12T07:00:16.966Z" }, { url = "https://files.pythonhosted.org/packages/c1/03/d332828c4ff764e16c1b56c2c8f9a33488bbe796b53fb6b9c4205ddbf167/sentencepiece-0.2.1-cp313-cp313t-win_amd64.whl", hash = "sha256:33f068c9382dc2e7c228eedfd8163b52baa86bb92f50d0488bf2b7da7032e484", size = 1057555, upload-time = "2025-08-12T07:00:18.573Z" }, { url = "https://files.pythonhosted.org/packages/88/14/5aee0bf0864df9bd82bd59e7711362908e4935e3f9cdc1f57246b5d5c9b9/sentencepiece-0.2.1-cp313-cp313t-win_arm64.whl", hash = "sha256:b3616ad246f360e52c85781e47682d31abfb6554c779e42b65333d4b5f44ecc0", size = 1036042, upload-time = "2025-08-12T07:00:20.209Z" }, - { url = "https://files.pythonhosted.org/packages/98/df/76390cc0bb812687f5fa7574b555354197b8e8fdb9aaf5c9c28ae58e148b/sentencepiece-0.2.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:afefe50a0cdcb4f2fd9733cb52001a2c164181ee2d82c32d38f5b1b326a8528c", size = 1942582, upload-time = "2025-08-12T06:58:59.807Z" }, - { url = "https://files.pythonhosted.org/packages/24/51/ff7ff849a7f139535d0309fe2a351379459bac5332127eb9a3a955ef2847/sentencepiece-0.2.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:891ade6503dd93d418c03993f7d6a8aa20260c422cefff5096b9068185e67642", size = 1325367, upload-time = "2025-08-12T06:59:01.677Z" }, - { url = "https://files.pythonhosted.org/packages/1a/29/bca460c34ebc79a1f3706d0eebceecd1187b2b9b93bc211f177e3b520eb0/sentencepiece-0.2.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:814978ac05130dd5812b4b03215c766bc6abaef13e7bd72bc534e4d1e12e9a4c", size = 1253366, upload-time = "2025-08-12T06:59:03.252Z" }, - { url = "https://files.pythonhosted.org/packages/5e/98/f279374c1e86d2a735c7d063d5b800608fc7b8370319121a9fc501cf9091/sentencepiece-0.2.1-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:017f97b274d4b0baa84b2dc743bf4517be81156f413bb24f12aacacde378e5ab", size = 1316437, upload-time = "2025-08-12T06:59:04.832Z" }, - { url = "https://files.pythonhosted.org/packages/32/d7/efd7e172875f1329d8ae43e55f853776e332542ecb881a11a6b67d49c98c/sentencepiece-0.2.1-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:22c4ebcb3c6ab1496ab1c37c79ef7bb563b8726f29548c30773b7a4cb152df1a", size = 1387621, upload-time = "2025-08-12T06:59:06.445Z" }, - { url = "https://files.pythonhosted.org/packages/e0/a5/cc46d5308e1056d756b20211f039f609c86d3073aa66088cd5af57a652fa/sentencepiece-0.2.1-cp39-cp39-win32.whl", hash = "sha256:caa4e560c72c151da80036aecc2159e51a7fd8ae9efebefd96860460ce6bd025", size = 999563, upload-time = "2025-08-12T06:59:07.833Z" }, - { url = "https://files.pythonhosted.org/packages/87/06/94bc50dc6b113bbf5f4ba7bfe85cfa7d62c679f9fb68f658d48f3ea556cf/sentencepiece-0.2.1-cp39-cp39-win_amd64.whl", hash = "sha256:2af5a1fb05013332ad94343b8b5f3973e006a2dde2dfba55a819549e054e2f0f", size = 1054663, upload-time = "2025-08-12T06:59:09.234Z" }, - { url = "https://files.pythonhosted.org/packages/8d/21/55267fcdc1a99612248c299c12d8f7c51d6e5ae992f32694d17adcf13fda/sentencepiece-0.2.1-cp39-cp39-win_arm64.whl", hash = "sha256:3d165fbb9bf8fba35f1946ba2617c3f9995679f07438325f07c026d53f33e746", size = 1033914, upload-time = "2025-08-12T06:59:10.705Z" }, ] [[package]] @@ -9341,8 +4258,8 @@ name = "sentry-sdk" version = "2.53.0" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "certifi", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "urllib3", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "certifi" }, + { name = "urllib3" }, ] sdist = { url = "https://files.pythonhosted.org/packages/d3/06/66c8b705179bc54087845f28fd1b72f83751b6e9a195628e2e9af9926505/sentry_sdk-2.53.0.tar.gz", hash = "sha256:6520ef2c4acd823f28efc55e43eb6ce2e6d9f954a95a3aa96b6fd14871e92b77", size = 412369, upload-time = "2026-02-16T11:11:14.743Z" } wheels = [ @@ -9383,14 +4300,9 @@ source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "numpy" }, { name = "packaging" }, - { name = "prettytable", version = "3.16.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "prettytable", version = "3.17.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "scikit-learn", version = "1.6.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "scikit-learn", version = "1.7.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version == '3.10.*' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "scikit-learn", version = "1.8.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "scipy", version = "1.13.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "scipy", version = "1.15.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version == '3.10.*' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "scipy", version = "1.17.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "prettytable" }, + { name = "scikit-learn" }, + { name = "scipy" }, ] sdist = { url = "https://files.pythonhosted.org/packages/b5/0c/5ec987633e077dd0076178ea6ade2d6e57780b34afea0b497fb507d7a1ed/skops-0.13.0.tar.gz", hash = "sha256:66949fd3c95cbb5c80270fbe40293c0fe1e46cb4a921860e42584dd9c20ebeb1", size = 581312, upload-time = "2025-08-06T09:48:14.916Z" } wheels = [ @@ -9455,8 +4367,8 @@ name = "sox" version = "1.5.0" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "numpy", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "typing-extensions", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "numpy" }, + { name = "typing-extensions" }, ] sdist = { url = "https://files.pythonhosted.org/packages/3d/a2/d8e0d8fd7abf509ead4a2cb0fb24e5758b5330166bf9223d5cb9f98a7e8d/sox-1.5.0.tar.gz", hash = "sha256:12c7be5bb1f548d891fe11e82c08cf5f1a1d74e225298f60082e5aeb2469ada0", size = 63905, upload-time = "2024-03-20T16:59:37.385Z" } @@ -9469,11 +4381,6 @@ dependencies = [ ] sdist = { url = "https://files.pythonhosted.org/packages/42/7e/f4b461944662ad75036df65277d6130f9411002bfb79e9df7dff40a31db9/soxr-1.0.0.tar.gz", hash = "sha256:e07ee6c1d659bc6957034f4800c60cb8b98de798823e34d2a2bba1caa85a4509", size = 171415, upload-time = "2025-09-07T13:22:21.317Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/1e/a7/11c36d71595b52fe84a220040ace679035953acf06b83bf2c7117c565d2c/soxr-1.0.0-cp310-cp310-macosx_10_14_x86_64.whl", hash = "sha256:b876a3156f67c76aef0cff1084eaf4088d9ca584bb569cb993f89a52ec5f399f", size = 206459, upload-time = "2025-09-07T13:21:46.904Z" }, - { url = "https://files.pythonhosted.org/packages/43/5e/8962f2aeea7777d2a6e65a24a2b83c6aea1a28badeda027fd328f7f03bb7/soxr-1.0.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:4d3b957a7b0cc19ae6aa45d40b2181474e53a8dd00efd7bce6bcf4e60e020892", size = 164808, upload-time = "2025-09-07T13:21:48.83Z" }, - { url = "https://files.pythonhosted.org/packages/fc/91/00384166f110a3888ea8efd44523ba7168dd2dc39e3e43c931cc2d069fa9/soxr-1.0.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b89685faedebc45af71f08f9957b61cc6143bc94ba43fe38e97067f81e272969", size = 208586, upload-time = "2025-09-07T13:21:50.341Z" }, - { url = "https://files.pythonhosted.org/packages/75/34/e18f1003e242aabed44ed8902534814d3e64209e4d1d874f5b9b67d73cde/soxr-1.0.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:d255741b2f0084fd02d4a2ddd77cd495be9e7e7b6f9dba1c9494f86afefac65b", size = 242310, upload-time = "2025-09-07T13:21:51.56Z" }, - { url = "https://files.pythonhosted.org/packages/61/9c/a1c5ed106b40cc1e2e12cd58831b7f1b61c5fbdb8eceeca4b3a0b0dbef6c/soxr-1.0.0-cp310-cp310-win_amd64.whl", hash = "sha256:158a4a9055958c4b95ef91dbbe280cabb00946b5423b25a9b0ce31bd9e0a271e", size = 173561, upload-time = "2025-09-07T13:21:53.03Z" }, { url = "https://files.pythonhosted.org/packages/65/ce/a3262bc8733d3a4ce5f660ed88c3d97f4b12658b0909e71334cba1721dcb/soxr-1.0.0-cp311-cp311-macosx_10_14_x86_64.whl", hash = "sha256:28e19d74a5ef45c0d7000f3c70ec1719e89077379df2a1215058914d9603d2d8", size = 206739, upload-time = "2025-09-07T13:21:54.572Z" }, { url = "https://files.pythonhosted.org/packages/64/dc/e8cbd100b652697cc9865dbed08832e7e135ff533f453eb6db9e6168d153/soxr-1.0.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f8dc69fc18884e53b72f6141fdf9d80997edbb4fec9dc2942edcb63abbe0d023", size = 165233, upload-time = "2025-09-07T13:21:55.887Z" }, { url = "https://files.pythonhosted.org/packages/75/12/4b49611c9ba5e9fe6f807d0a83352516808e8e573f8b4e712fc0c17f3363/soxr-1.0.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:3f15450e6f65f22f02fcd4c5a9219c873b1e583a73e232805ff160c759a6b586", size = 208867, upload-time = "2025-09-07T13:21:57.076Z" }, @@ -9484,11 +4391,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/b5/80/10640970998a1d2199bef6c4d92205f36968cddaf3e4d0e9fe35ddd405bd/soxr-1.0.0-cp312-abi3-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:e8ce273cca101aff3d8c387db5a5a41001ba76ef1837883438d3c652507a9ccc", size = 204707, upload-time = "2025-09-07T13:22:05.125Z" }, { url = "https://files.pythonhosted.org/packages/b1/87/2726603c13c2126cb8ded9e57381b7377f4f0df6ba4408e1af5ddbfdc3dd/soxr-1.0.0-cp312-abi3-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:e8f2a69686f2856d37823bbb7b78c3d44904f311fe70ba49b893af11d6b6047b", size = 238032, upload-time = "2025-09-07T13:22:06.428Z" }, { url = "https://files.pythonhosted.org/packages/ce/04/530252227f4d0721a5524a936336485dfb429bb206a66baf8e470384f4a2/soxr-1.0.0-cp312-abi3-win_amd64.whl", hash = "sha256:2a3b77b115ae7c478eecdbd060ed4f61beda542dfb70639177ac263aceda42a2", size = 172070, upload-time = "2025-09-07T13:22:07.62Z" }, - { url = "https://files.pythonhosted.org/packages/5f/d8/2a979590cc53d9c8fa63010b80018c2aa522fcd4e132067be4b130b9f4ce/soxr-1.0.0-cp39-cp39-macosx_10_14_x86_64.whl", hash = "sha256:c120775b7d0ef9e974a5797a4695861e88653f7ecd0a2a532f089bc4452ba130", size = 206652, upload-time = "2025-09-07T13:22:15.229Z" }, - { url = "https://files.pythonhosted.org/packages/d6/65/cc7d4c172afae668a9861d0c0e221830ccb3a88640148b37d5d5343e2d35/soxr-1.0.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:4e59e5f648bd6144e79a6e0596aa486218876293f5ddce3ca84b9d8f8aa34d6d", size = 165050, upload-time = "2025-09-07T13:22:16.303Z" }, - { url = "https://files.pythonhosted.org/packages/64/e4/449c59781d9d942bfa88f691099935b41b207f39704515cc7d368c017f9f/soxr-1.0.0-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:bb86c342862697dbd4a44043f275e5196f2d2c49dca374c78f19b7893988675d", size = 208806, upload-time = "2025-09-07T13:22:17.487Z" }, - { url = "https://files.pythonhosted.org/packages/e8/89/9af231937ba3bc0c6d42955431290eeab0efcf37987bf0d69f5734bda78a/soxr-1.0.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:3d2a4fadd88207c2991fb08c29fc189e7b2e298b598a94ea1747e42c8acb7a01", size = 242642, upload-time = "2025-09-07T13:22:18.727Z" }, - { url = "https://files.pythonhosted.org/packages/d9/34/b707da1fce2ccd60477bc47f0149e94e49fb98f20f8670a1dbf67b93a4a1/soxr-1.0.0-cp39-cp39-win_amd64.whl", hash = "sha256:c7f5ace8f04f924b21caedeeb69f2a7b3d83d2d436639498c08b2cebe181af14", size = 174063, upload-time = "2025-09-07T13:22:20.173Z" }, ] [[package]] @@ -9496,29 +4398,20 @@ name = "speechbrain" version = "1.0.3" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "huggingface-hub", version = "0.36.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "huggingface-hub", version = "1.4.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "huggingface-hub", version = "0.36.2", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "huggingface-hub", version = "1.4.1", source = { registry = "https://pypi.org/simple" }, marker = "extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, { name = "hyperpyyaml" }, { name = "joblib" }, { name = "numpy" }, { name = "packaging" }, - { name = "scipy", version = "1.13.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "scipy", version = "1.15.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version == '3.10.*' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "scipy", version = "1.17.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "scipy" }, { name = "sentencepiece" }, - { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and sys_platform == 'darwin') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.8.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(python_full_version < '3.10' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.8.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.10.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version >= '3.10' and sys_platform == 'darwin') or (python_full_version >= '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.10.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(python_full_version >= '3.10' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.10.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(python_full_version >= '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torchaudio", version = "2.8.0", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torchaudio", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and sys_platform == 'darwin') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torchaudio", version = "2.8.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu') or (python_full_version >= '3.10' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu') or (python_full_version >= '3.10' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu') or (python_full_version >= '3.10' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torchaudio", version = "2.8.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torchaudio", version = "2.10.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version >= '3.10' and sys_platform == 'darwin') or (python_full_version >= '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torchaudio", version = "2.10.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(python_full_version >= '3.10' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torchaudio", version = "2.10.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(python_full_version >= '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.10.0", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or sys_platform == 'darwin' or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.10.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.10.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torchaudio", version = "2.10.0", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or sys_platform == 'darwin' or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torchaudio", version = "2.10.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torchaudio", version = "2.10.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, { name = "tqdm" }, ] sdist = { url = "https://files.pythonhosted.org/packages/ab/10/87e666544a4e0cec7cbdc09f26948994831ae0f8bbc58de3bf53b68285ff/speechbrain-1.0.3.tar.gz", hash = "sha256:fcab3c6e90012cecb1eed40ea235733b550137e73da6bfa2340ba191ec714052", size = 747735, upload-time = "2025-04-07T17:17:06.749Z" } @@ -9531,19 +4424,11 @@ name = "sqlalchemy" version = "2.0.46" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "greenlet", version = "3.2.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.10' and platform_machine == 'AMD64') or (python_full_version < '3.10' and platform_machine == 'WIN32') or (python_full_version < '3.10' and platform_machine == 'aarch64') or (python_full_version < '3.10' and platform_machine == 'amd64') or (python_full_version < '3.10' and platform_machine == 'ppc64le') or (python_full_version < '3.10' and platform_machine == 'win32') or (python_full_version < '3.10' and platform_machine == 'x86_64') or (platform_machine != 'AMD64' and platform_machine != 'WIN32' and platform_machine != 'aarch64' and platform_machine != 'amd64' and platform_machine != 'ppc64le' and platform_machine != 'win32' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'AMD64' and platform_machine != 'WIN32' and platform_machine != 'aarch64' and platform_machine != 'amd64' and platform_machine != 'ppc64le' and platform_machine != 'win32' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'AMD64' and platform_machine != 'WIN32' and platform_machine != 'aarch64' and platform_machine != 'amd64' and platform_machine != 'ppc64le' and platform_machine != 'win32' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'AMD64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine == 'AMD64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'WIN32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine == 'WIN32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'aarch64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine == 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'amd64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine == 'amd64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'ppc64le' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine == 'ppc64le' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "greenlet", version = "3.3.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.10' and platform_machine == 'AMD64') or (python_full_version >= '3.10' and platform_machine == 'WIN32') or (python_full_version >= '3.10' and platform_machine == 'aarch64') or (python_full_version >= '3.10' and platform_machine == 'amd64') or (python_full_version >= '3.10' and platform_machine == 'ppc64le') or (python_full_version >= '3.10' and platform_machine == 'win32') or (python_full_version >= '3.10' and platform_machine == 'x86_64') or (platform_machine != 'AMD64' and platform_machine != 'WIN32' and platform_machine != 'aarch64' and platform_machine != 'amd64' and platform_machine != 'ppc64le' and platform_machine != 'win32' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'AMD64' and platform_machine != 'WIN32' and platform_machine != 'aarch64' and platform_machine != 'amd64' and platform_machine != 'ppc64le' and platform_machine != 'win32' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'AMD64' and platform_machine != 'WIN32' and platform_machine != 'aarch64' and platform_machine != 'amd64' and platform_machine != 'ppc64le' and platform_machine != 'win32' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'AMD64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine == 'AMD64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'WIN32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine == 'WIN32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'aarch64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine == 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'amd64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine == 'amd64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'ppc64le' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine == 'ppc64le' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "greenlet", marker = "platform_machine == 'AMD64' or platform_machine == 'WIN32' or platform_machine == 'aarch64' or platform_machine == 'amd64' or platform_machine == 'ppc64le' or platform_machine == 'win32' or platform_machine == 'x86_64' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, { name = "typing-extensions" }, ] sdist = { url = "https://files.pythonhosted.org/packages/06/aa/9ce0f3e7a9829ead5c8ce549392f33a12c4555a6c0609bb27d882e9c7ddf/sqlalchemy-2.0.46.tar.gz", hash = "sha256:cf36851ee7219c170bb0793dbc3da3e80c582e04a5437bc601bfe8c85c9216d7", size = 9865393, upload-time = "2026-01-21T18:03:45.119Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/40/26/66ba59328dc25e523bfcb0f8db48bdebe2035e0159d600e1f01c0fc93967/sqlalchemy-2.0.46-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:895296687ad06dc9b11a024cf68e8d9d3943aa0b4964278d2553b86f1b267735", size = 2155051, upload-time = "2026-01-21T18:27:28.965Z" }, - { url = "https://files.pythonhosted.org/packages/21/cd/9336732941df972fbbfa394db9caa8bb0cf9fe03656ec728d12e9cbd6edc/sqlalchemy-2.0.46-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:ab65cb2885a9f80f979b85aa4e9c9165a31381ca322cbde7c638fe6eefd1ec39", size = 3234666, upload-time = "2026-01-21T18:32:28.72Z" }, - { url = "https://files.pythonhosted.org/packages/38/62/865ae8b739930ec433cd4123760bee7f8dafdc10abefd725a025604fb0de/sqlalchemy-2.0.46-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:52fe29b3817bd191cc20bad564237c808967972c97fa683c04b28ec8979ae36f", size = 3232917, upload-time = "2026-01-21T18:44:54.064Z" }, - { url = "https://files.pythonhosted.org/packages/24/38/805904b911857f2b5e00fdea44e9570df62110f834378706939825579296/sqlalchemy-2.0.46-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:09168817d6c19954d3b7655da6ba87fcb3a62bb575fb396a81a8b6a9fadfe8b5", size = 3185790, upload-time = "2026-01-21T18:32:30.581Z" }, - { url = "https://files.pythonhosted.org/packages/69/4f/3260bb53aabd2d274856337456ea52f6a7eccf6cce208e558f870cec766b/sqlalchemy-2.0.46-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:be6c0466b4c25b44c5d82b0426b5501de3c424d7a3220e86cd32f319ba56798e", size = 3207206, upload-time = "2026-01-21T18:44:55.93Z" }, - { url = "https://files.pythonhosted.org/packages/ce/b3/67c432d7f9d88bb1a61909b67e29f6354d59186c168fb5d381cf438d3b73/sqlalchemy-2.0.46-cp310-cp310-win32.whl", hash = "sha256:1bc3f601f0a818d27bfe139f6766487d9c88502062a2cd3a7ee6c342e81d5047", size = 2115296, upload-time = "2026-01-21T18:33:12.498Z" }, - { url = "https://files.pythonhosted.org/packages/4a/8c/25fb284f570f9d48e6c240f0269a50cec9cf009a7e08be4c0aaaf0654972/sqlalchemy-2.0.46-cp310-cp310-win_amd64.whl", hash = "sha256:e0c05aff5c6b1bb5fb46a87e0f9d2f733f83ef6cbbbcd5c642b6c01678268061", size = 2138540, upload-time = "2026-01-21T18:33:14.22Z" }, { url = "https://files.pythonhosted.org/packages/69/ac/b42ad16800d0885105b59380ad69aad0cce5a65276e269ce2729a2343b6a/sqlalchemy-2.0.46-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:261c4b1f101b4a411154f1da2b76497d73abbfc42740029205d4d01fa1052684", size = 2154851, upload-time = "2026-01-21T18:27:30.54Z" }, { url = "https://files.pythonhosted.org/packages/a0/60/d8710068cb79f64d002ebed62a7263c00c8fd95f4ebd4b5be8f7ca93f2bc/sqlalchemy-2.0.46-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:181903fe8c1b9082995325f1b2e84ac078b1189e2819380c2303a5f90e114a62", size = 3311241, upload-time = "2026-01-21T18:32:33.45Z" }, { url = "https://files.pythonhosted.org/packages/2b/0f/20c71487c7219ab3aa7421c7c62d93824c97c1460f2e8bb72404b0192d13/sqlalchemy-2.0.46-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:590be24e20e2424a4c3c1b0835e9405fa3d0af5823a1a9fc02e5dff56471515f", size = 3310741, upload-time = "2026-01-21T18:44:57.887Z" }, @@ -9569,13 +4454,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/20/a6/b1fc6634564dbb4415b7ed6419cdfeaadefd2c39cdab1e3aa07a5f2474c2/sqlalchemy-2.0.46-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:96c7cca1a4babaaf3bfff3e4e606e38578856917e52f0384635a95b226c87764", size = 3523208, upload-time = "2026-01-21T18:45:08.436Z" }, { url = "https://files.pythonhosted.org/packages/a1/d8/41e0bdfc0f930ff236f86fccd12962d8fa03713f17ed57332d38af6a3782/sqlalchemy-2.0.46-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:b2a9f9aee38039cf4755891a1e50e1effcc42ea6ba053743f452c372c3152b1b", size = 3464292, upload-time = "2026-01-21T18:33:08.208Z" }, { url = "https://files.pythonhosted.org/packages/f0/8b/9dcbec62d95bea85f5ecad9b8d65b78cc30fb0ffceeb3597961f3712549b/sqlalchemy-2.0.46-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:db23b1bf8cfe1f7fda19018e7207b20cdb5168f83c437ff7e95d19e39289c447", size = 3473497, upload-time = "2026-01-21T18:45:10.552Z" }, - { url = "https://files.pythonhosted.org/packages/9a/06/a29b51a577cc5746712ed8a2870794659a6bf405264b32dd5ccc380844d1/sqlalchemy-2.0.46-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:90bde6c6b1827565a95fde597da001212ab436f1b2e0c2dcc7246e14db26e2a3", size = 2158097, upload-time = "2026-01-21T18:24:45.892Z" }, - { url = "https://files.pythonhosted.org/packages/be/55/44689ed21b5a82708502243310878cfc76e0f326ed16103f4336f605055b/sqlalchemy-2.0.46-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:94b1e5f3a5f1ff4f42d5daab047428cd45a3380e51e191360a35cef71c9a7a2a", size = 3233722, upload-time = "2026-01-21T18:30:56.334Z" }, - { url = "https://files.pythonhosted.org/packages/be/11/1d6024d9cdd2108d500b399bdc77a1738119789aa70c83d68e1012d32596/sqlalchemy-2.0.46-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:93bb0aae40b52c57fd74ef9c6933c08c040ba98daf23ad33c3f9893494b8d3ce", size = 3233038, upload-time = "2026-01-21T18:32:26.945Z" }, - { url = "https://files.pythonhosted.org/packages/38/6d/f813e3204baea710f2d82a61821bdf7b39cebda6dbba7cdeb976b0552239/sqlalchemy-2.0.46-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:c4e2cc868b7b5208aec6c960950b7bb821f82c2fe66446c92ee0a571765e91a5", size = 3183163, upload-time = "2026-01-21T18:30:58.647Z" }, - { url = "https://files.pythonhosted.org/packages/8d/5d/32b70643ef73c1bb3723a98316b89182cad2b9a6744d5335f1d69fcdb3f2/sqlalchemy-2.0.46-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:965c62be8256d10c11f8907e7a8d3e18127a4c527a5919d85fa87fd9ecc2cfdc", size = 3205174, upload-time = "2026-01-21T18:32:28.684Z" }, - { url = "https://files.pythonhosted.org/packages/99/a9/b9f7bd299b7550925e1e7d71d634e1eee23c035abed7de125fda7c74b0c8/sqlalchemy-2.0.46-cp39-cp39-win32.whl", hash = "sha256:9397b381dcee8a2d6b99447ae85ea2530dcac82ca494d1db877087a13e38926d", size = 2117095, upload-time = "2026-01-21T18:34:02.596Z" }, - { url = "https://files.pythonhosted.org/packages/04/0b/2e376b34a7c2f3d9d40811c3412fdc65cd35c6da2d660c283ad24bd9bab1/sqlalchemy-2.0.46-cp39-cp39-win_amd64.whl", hash = "sha256:4396c948d8217e83e2c202fbdcc0389cf8c93d2c1c5e60fa5c5a955eae0e64be", size = 2140517, upload-time = "2026-01-21T18:34:03.958Z" }, { url = "https://files.pythonhosted.org/packages/fc/a1/9c4efa03300926601c19c18582531b45aededfb961ab3c3585f1e24f120b/sqlalchemy-2.0.46-py3-none-any.whl", hash = "sha256:f9c11766e7e7c0a2767dda5acb006a118640c9fc0a4104214b96269bfb78399e", size = 1937882, upload-time = "2026-01-21T18:22:10.456Z" }, ] @@ -9584,9 +4462,9 @@ name = "stack-data" version = "0.6.3" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "asttokens", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "executing", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "pure-eval", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "asttokens" }, + { name = "executing" }, + { name = "pure-eval" }, ] sdist = { url = "https://files.pythonhosted.org/packages/28/e3/55dcc2cfbc3ca9c29519eb6884dd1415ecb53b0e934862d3559ddcb7e20b/stack_data-0.6.3.tar.gz", hash = "sha256:836a778de4fec4dcd1dcd89ed8abff8a221f58308462e1c4aa2a3cf30148f0b9", size = 44707, upload-time = "2023-09-30T13:58:05.479Z" } wheels = [ @@ -9627,120 +4505,13 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/34/ae/e3707f6c1bc6f7aa0df600ba8075bfb8a19252140cd595335be60e25f9ee/standard_sunau-3.13.0-py3-none-any.whl", hash = "sha256:53af624a9529c41062f4c2fd33837f297f3baa196b0cfceffea6555654602622", size = 7364, upload-time = "2024-10-30T16:01:28.003Z" }, ] -[[package]] -name = "starlette" -version = "0.49.3" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", -] -dependencies = [ - { name = "anyio", marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "typing-extensions", marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/de/1a/608df0b10b53b0beb96a37854ee05864d182ddd4b1156a22f1ad3860425a/starlette-0.49.3.tar.gz", hash = "sha256:1c14546f299b5901a1ea0e34410575bc33bbd741377a10484a54445588d00284", size = 2655031, upload-time = "2025-11-01T15:12:26.13Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/a3/e0/021c772d6a662f43b63044ab481dc6ac7592447605b5b35a957785363122/starlette-0.49.3-py3-none-any.whl", hash = "sha256:b579b99715fdc2980cf88c8ec96d3bf1ce16f5a8051a7c2b84ef9b1cdecaea2f", size = 74340, upload-time = "2025-11-01T15:12:24.387Z" }, -] - [[package]] name = "starlette" version = "0.52.1" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.11.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.10.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.11.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.10.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", -] dependencies = [ - { name = "anyio", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "typing-extensions", marker = "(python_full_version >= '3.10' and python_full_version < '3.13') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "anyio" }, + { name = "typing-extensions", marker = "python_full_version < '3.13' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/c4/68/79977123bb7be889ad680d79a40f339082c1978b5cfcf62c2d8d196873ac/starlette-0.52.1.tar.gz", hash = "sha256:834edd1b0a23167694292e94f597773bc3f89f362be6effee198165a35d62933", size = 2653702, upload-time = "2026-01-18T13:34:11.062Z" } wheels = [ @@ -9782,16 +4553,16 @@ name = "tensorboard" version = "2.20.0" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "absl-py", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "grpcio", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "markdown", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "numpy", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "packaging", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "pillow", version = "12.1.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "protobuf", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "setuptools", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "tensorboard-data-server", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "werkzeug", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "absl-py" }, + { name = "grpcio" }, + { name = "markdown" }, + { name = "numpy" }, + { name = "packaging" }, + { name = "pillow" }, + { name = "protobuf" }, + { name = "setuptools" }, + { name = "tensorboard-data-server" }, + { name = "werkzeug" }, ] wheels = [ { url = "https://files.pythonhosted.org/packages/9c/d9/a5db55f88f258ac669a92858b70a714bbbd5acd993820b41ec4a96a4d77f/tensorboard-2.20.0-py3-none-any.whl", hash = "sha256:9dc9f978cb84c0723acf9a345d96c184f0293d18f166bb8d59ee098e6cfaaba6", size = 5525680, upload-time = "2025-07-17T19:20:49.638Z" }, @@ -9844,19 +4615,11 @@ name = "tiktoken" version = "0.12.0" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "regex", version = "2026.1.15", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "regex", version = "2026.2.19", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "regex" }, { name = "requests" }, ] sdist = { url = "https://files.pythonhosted.org/packages/7d/ab/4d017d0f76ec3171d469d80fc03dfbb4e48a4bcaddaa831b31d526f05edc/tiktoken-0.12.0.tar.gz", hash = "sha256:b18ba7ee2b093863978fcb14f74b3707cdc8d4d4d3836853ce7ec60772139931", size = 37806, upload-time = "2025-10-06T20:22:45.419Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/89/b3/2cb7c17b6c4cf8ca983204255d3f1d95eda7213e247e6947a0ee2c747a2c/tiktoken-0.12.0-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:3de02f5a491cfd179aec916eddb70331814bd6bf764075d39e21d5862e533970", size = 1051991, upload-time = "2025-10-06T20:21:34.098Z" }, - { url = "https://files.pythonhosted.org/packages/27/0f/df139f1df5f6167194ee5ab24634582ba9a1b62c6b996472b0277ec80f66/tiktoken-0.12.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:b6cfb6d9b7b54d20af21a912bfe63a2727d9cfa8fbda642fd8322c70340aad16", size = 995798, upload-time = "2025-10-06T20:21:35.579Z" }, - { url = "https://files.pythonhosted.org/packages/ef/5d/26a691f28ab220d5edc09b9b787399b130f24327ef824de15e5d85ef21aa/tiktoken-0.12.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:cde24cdb1b8a08368f709124f15b36ab5524aac5fa830cc3fdce9c03d4fb8030", size = 1129865, upload-time = "2025-10-06T20:21:36.675Z" }, - { url = "https://files.pythonhosted.org/packages/b2/94/443fab3d4e5ebecac895712abd3849b8da93b7b7dec61c7db5c9c7ebe40c/tiktoken-0.12.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:6de0da39f605992649b9cfa6f84071e3f9ef2cec458d08c5feb1b6f0ff62e134", size = 1152856, upload-time = "2025-10-06T20:21:37.873Z" }, - { url = "https://files.pythonhosted.org/packages/54/35/388f941251b2521c70dd4c5958e598ea6d2c88e28445d2fb8189eecc1dfc/tiktoken-0.12.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:6faa0534e0eefbcafaccb75927a4a380463a2eaa7e26000f0173b920e98b720a", size = 1195308, upload-time = "2025-10-06T20:21:39.577Z" }, - { url = "https://files.pythonhosted.org/packages/f8/00/c6681c7f833dd410576183715a530437a9873fa910265817081f65f9105f/tiktoken-0.12.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:82991e04fc860afb933efb63957affc7ad54f83e2216fe7d319007dab1ba5892", size = 1255697, upload-time = "2025-10-06T20:21:41.154Z" }, - { url = "https://files.pythonhosted.org/packages/5f/d2/82e795a6a9bafa034bf26a58e68fe9a89eeaaa610d51dbeb22106ba04f0a/tiktoken-0.12.0-cp310-cp310-win_amd64.whl", hash = "sha256:6fb2995b487c2e31acf0a9e17647e3b242235a20832642bb7a9d1a181c0c1bb1", size = 879375, upload-time = "2025-10-06T20:21:43.201Z" }, { url = "https://files.pythonhosted.org/packages/de/46/21ea696b21f1d6d1efec8639c204bdf20fde8bafb351e1355c72c5d7de52/tiktoken-0.12.0-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:6e227c7f96925003487c33b1b32265fad2fbcec2b7cf4817afb76d416f40f6bb", size = 1051565, upload-time = "2025-10-06T20:21:44.566Z" }, { url = "https://files.pythonhosted.org/packages/c9/d9/35c5d2d9e22bb2a5f74ba48266fb56c63d76ae6f66e02feb628671c0283e/tiktoken-0.12.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:c06cf0fcc24c2cb2adb5e185c7082a82cba29c17575e828518c2f11a01f445aa", size = 995284, upload-time = "2025-10-06T20:21:45.622Z" }, { url = "https://files.pythonhosted.org/packages/01/84/961106c37b8e49b9fdcf33fe007bb3a8fdcc380c528b20cc7fbba80578b8/tiktoken-0.12.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:f18f249b041851954217e9fd8e5c00b024ab2315ffda5ed77665a05fa91f42dc", size = 1129201, upload-time = "2025-10-06T20:21:47.074Z" }, @@ -9885,13 +4648,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/22/1f/ae535223a8c4ef4c0c1192e3f9b82da660be9eb66b9279e95c99288e9dab/tiktoken-0.12.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:04f0e6a985d95913cabc96a741c5ffec525a2c72e9df086ff17ebe35985c800e", size = 1194451, upload-time = "2025-10-06T20:22:15.545Z" }, { url = "https://files.pythonhosted.org/packages/78/a7/f8ead382fce0243cb625c4f266e66c27f65ae65ee9e77f59ea1653b6d730/tiktoken-0.12.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:0ee8f9ae00c41770b5f9b0bb1235474768884ae157de3beb5439ca0fd70f3e25", size = 1253794, upload-time = "2025-10-06T20:22:16.624Z" }, { url = "https://files.pythonhosted.org/packages/93/e0/6cc82a562bc6365785a3ff0af27a2a092d57c47d7a81d9e2295d8c36f011/tiktoken-0.12.0-cp313-cp313t-win_amd64.whl", hash = "sha256:dc2dd125a62cb2b3d858484d6c614d136b5b848976794edfb63688d539b8b93f", size = 878777, upload-time = "2025-10-06T20:22:18.036Z" }, - { url = "https://files.pythonhosted.org/packages/c7/d1/7507bfb9c2ceef52ae3ae813013215c185648e21127538aae66dedd3af9c/tiktoken-0.12.0-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:d51d75a5bffbf26f86554d28e78bfb921eae998edc2675650fd04c7e1f0cdc1e", size = 1053407, upload-time = "2025-10-06T20:22:35.492Z" }, - { url = "https://files.pythonhosted.org/packages/ee/4a/8ea1da602ac39dee4356b4cd6040a2325507482c36043044b6f581597b4f/tiktoken-0.12.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:09eb4eae62ae7e4c62364d9ec3a57c62eea707ac9a2b2c5d6bd05de6724ea179", size = 997150, upload-time = "2025-10-06T20:22:37.286Z" }, - { url = "https://files.pythonhosted.org/packages/2c/1a/62d1d36b167eccd441aff2f0091551ca834295541b949d161021aa658167/tiktoken-0.12.0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:df37684ace87d10895acb44b7f447d4700349b12197a526da0d4a4149fde074c", size = 1131575, upload-time = "2025-10-06T20:22:39.023Z" }, - { url = "https://files.pythonhosted.org/packages/f7/16/544207d63c8c50edd2321228f21d236e4e49d235128bb7e3e0f69eed0807/tiktoken-0.12.0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:4c9614597ac94bb294544345ad8cf30dac2129c05e2db8dc53e082f355857af7", size = 1154920, upload-time = "2025-10-06T20:22:40.175Z" }, - { url = "https://files.pythonhosted.org/packages/99/4c/0a3504157c81364fc0c64cada54efef0567961357e786706ea63bc8946e1/tiktoken-0.12.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:20cf97135c9a50de0b157879c3c4accbb29116bcf001283d26e073ff3b345946", size = 1196766, upload-time = "2025-10-06T20:22:41.365Z" }, - { url = "https://files.pythonhosted.org/packages/d4/46/8e6a258ae65447c75770fe5ea8968acab369e8c9f537f727c91f83772325/tiktoken-0.12.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:15d875454bbaa3728be39880ddd11a5a2a9e548c29418b41e8fd8a767172b5ec", size = 1258278, upload-time = "2025-10-06T20:22:42.846Z" }, - { url = "https://files.pythonhosted.org/packages/35/43/3b95de4f5e76f3cafc70dac9b1b9cfe759ff3bfd494ac91a280e93772e90/tiktoken-0.12.0-cp39-cp39-win_amd64.whl", hash = "sha256:2cff3688ba3c639ebe816f8d58ffbbb0aa7433e23e08ab1cade5d175fc973fb3", size = 881888, upload-time = "2025-10-06T20:22:44.059Z" }, ] [[package]] @@ -9899,59 +4655,33 @@ name = "tokenizers" version = "0.21.4" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version >= '3.13' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", ] dependencies = [ - { name = "huggingface-hub", version = "0.36.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "huggingface-hub", version = "0.36.2", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/c2/2f/402986d0823f8d7ca139d969af2917fefaa9b947d1fb32f6168c509f2492/tokenizers-0.21.4.tar.gz", hash = "sha256:fa23f85fbc9a02ec5c6978da172cdcbac23498c3ca9f3645c5c68740ac007880", size = 351253, upload-time = "2025-07-28T15:48:54.325Z" } wheels = [ @@ -9978,47 +4708,37 @@ source = { registry = "https://pypi.org/simple" } resolution-markers = [ "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.11.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.10.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.11.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.10.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", "python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", ] dependencies = [ - { name = "huggingface-hub", version = "1.4.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "huggingface-hub", version = "1.4.1", source = { registry = "https://pypi.org/simple" }, marker = "extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/73/6f/f80cfef4a312e1fb34baf7d85c72d4411afde10978d4657f8cdd811d3ccc/tokenizers-0.22.2.tar.gz", hash = "sha256:473b83b915e547aa366d1eee11806deaf419e17be16310ac0a14077f1e28f917", size = 372115, upload-time = "2026-01-05T10:45:15.988Z" } wheels = [ @@ -10037,14 +4757,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/fd/18/a545c4ea42af3df6effd7d13d250ba77a0a86fb20393143bbb9a92e434d4/tokenizers-0.22.2-cp39-abi3-win32.whl", hash = "sha256:a6bf3f88c554a2b653af81f3204491c818ae2ac6fbc09e76ef4773351292bc92", size = 2502363, upload-time = "2026-01-05T10:45:20.593Z" }, { url = "https://files.pythonhosted.org/packages/65/71/0670843133a43d43070abeb1949abfdef12a86d490bea9cd9e18e37c5ff7/tokenizers-0.22.2-cp39-abi3-win_amd64.whl", hash = "sha256:c9ea31edff2968b44a88f97d784c2f16dc0729b8b143ed004699ebca91f05c48", size = 2747786, upload-time = "2026-01-05T10:45:18.411Z" }, { url = "https://files.pythonhosted.org/packages/72/f4/0de46cfa12cdcbcd464cc59fde36912af405696f687e53a091fb432f694c/tokenizers-0.22.2-cp39-abi3-win_arm64.whl", hash = "sha256:9ce725d22864a1e965217204946f830c37876eee3b2ba6fc6255e8e903d5fcbc", size = 2612133, upload-time = "2026-01-05T10:45:17.232Z" }, - { url = "https://files.pythonhosted.org/packages/84/04/655b79dbcc9b3ac5f1479f18e931a344af67e5b7d3b251d2dcdcd7558592/tokenizers-0.22.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:753d47ebd4542742ef9261d9da92cd545b2cacbb48349a1225466745bb866ec4", size = 3282301, upload-time = "2026-01-05T10:40:34.858Z" }, - { url = "https://files.pythonhosted.org/packages/46/cd/e4851401f3d8f6f45d8480262ab6a5c8cb9c4302a790a35aa14eeed6d2fd/tokenizers-0.22.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:e10bf9113d209be7cd046d40fbabbaf3278ff6d18eb4da4c500443185dc1896c", size = 3161308, upload-time = "2026-01-05T10:40:40.737Z" }, - { url = "https://files.pythonhosted.org/packages/6f/6e/55553992a89982cd12d4a66dddb5e02126c58677ea3931efcbe601d419db/tokenizers-0.22.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:64d94e84f6660764e64e7e0b22baa72f6cd942279fdbb21d46abd70d179f0195", size = 3718964, upload-time = "2026-01-05T10:40:46.56Z" }, - { url = "https://files.pythonhosted.org/packages/59/8c/b1c87148aa15e099243ec9f0cf9d0e970cc2234c3257d558c25a2c5304e6/tokenizers-0.22.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f01a9c019878532f98927d2bacb79bbb404b43d3437455522a00a30718cdedb5", size = 3373542, upload-time = "2026-01-05T10:40:52.803Z" }, - { url = "https://files.pythonhosted.org/packages/27/46/8d7db1dff181be50b207ab0a7483a22d5c3a4f903a9afc7cf7e465ad8109/tokenizers-0.22.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:319f659ee992222f04e58f84cbf407cfa66a65fe3a8de44e8ad2bc53e7d99012", size = 3287784, upload-time = "2026-01-05T10:40:37.108Z" }, - { url = "https://files.pythonhosted.org/packages/5b/6e/3bc33cae8bf114afa5a98e35eb065c72b7c37d01d370906a893f33881767/tokenizers-0.22.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1e50f8554d504f617d9e9d6e4c2c2884a12b388a97c5c77f0bc6cf4cd032feee", size = 3164301, upload-time = "2026-01-05T10:40:42.367Z" }, - { url = "https://files.pythonhosted.org/packages/91/fc/6aa749d7d443aab4daa6f8bc00338389149fd2534e25b772285c3301993e/tokenizers-0.22.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1a62ba2c5faa2dd175aaeed7b15abf18d20266189fb3406c5d0550dd34dd5f37", size = 3717771, upload-time = "2026-01-05T10:40:49.076Z" }, - { url = "https://files.pythonhosted.org/packages/fc/60/5b440d251863bd33f9b0a416c695b0309487b83abf6f2dafe9163a3aeac2/tokenizers-0.22.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:143b999bdc46d10febb15cbffb4207ddd1f410e2c755857b5a0797961bbdc113", size = 3377740, upload-time = "2026-01-05T10:40:54.859Z" }, ] [[package]] @@ -10056,42 +4768,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/44/6f/7120676b6d73228c96e17f1f794d8ab046fc910d781c8d151120c3f1569e/toml-0.10.2-py2.py3-none-any.whl", hash = "sha256:806143ae5bfb6a3c6e736a764057db0e6a0e05e338b5630894a5f779cabb4f9b", size = 16588, upload-time = "2020-11-01T01:40:20.672Z" }, ] -[[package]] -name = "tomli" -version = "2.4.0" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/82/30/31573e9457673ab10aa432461bee537ce6cef177667deca369efb79df071/tomli-2.4.0.tar.gz", hash = "sha256:aa89c3f6c277dd275d8e243ad24f3b5e701491a860d5121f2cdd399fbb31fc9c", size = 17477, upload-time = "2026-01-11T11:22:38.165Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/3c/d9/3dc2289e1f3b32eb19b9785b6a006b28ee99acb37d1d47f78d4c10e28bf8/tomli-2.4.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b5ef256a3fd497d4973c11bf142e9ed78b150d36f5773f1ca6088c230ffc5867", size = 153663, upload-time = "2026-01-11T11:21:45.27Z" }, - { url = "https://files.pythonhosted.org/packages/51/32/ef9f6845e6b9ca392cd3f64f9ec185cc6f09f0a2df3db08cbe8809d1d435/tomli-2.4.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:5572e41282d5268eb09a697c89a7bee84fae66511f87533a6f88bd2f7b652da9", size = 148469, upload-time = "2026-01-11T11:21:46.873Z" }, - { url = "https://files.pythonhosted.org/packages/d6/c2/506e44cce89a8b1b1e047d64bd495c22c9f71f21e05f380f1a950dd9c217/tomli-2.4.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:551e321c6ba03b55676970b47cb1b73f14a0a4dce6a3e1a9458fd6d921d72e95", size = 236039, upload-time = "2026-01-11T11:21:48.503Z" }, - { url = "https://files.pythonhosted.org/packages/b3/40/e1b65986dbc861b7e986e8ec394598187fa8aee85b1650b01dd925ca0be8/tomli-2.4.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:5e3f639a7a8f10069d0e15408c0b96a2a828cfdec6fca05296ebcdcc28ca7c76", size = 243007, upload-time = "2026-01-11T11:21:49.456Z" }, - { url = "https://files.pythonhosted.org/packages/9c/6f/6e39ce66b58a5b7ae572a0f4352ff40c71e8573633deda43f6a379d56b3e/tomli-2.4.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:1b168f2731796b045128c45982d3a4874057626da0e2ef1fdd722848b741361d", size = 240875, upload-time = "2026-01-11T11:21:50.755Z" }, - { url = "https://files.pythonhosted.org/packages/aa/ad/cb089cb190487caa80204d503c7fd0f4d443f90b95cf4ef5cf5aa0f439b0/tomli-2.4.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:133e93646ec4300d651839d382d63edff11d8978be23da4cc106f5a18b7d0576", size = 246271, upload-time = "2026-01-11T11:21:51.81Z" }, - { url = "https://files.pythonhosted.org/packages/0b/63/69125220e47fd7a3a27fd0de0c6398c89432fec41bc739823bcc66506af6/tomli-2.4.0-cp311-cp311-win32.whl", hash = "sha256:b6c78bdf37764092d369722d9946cb65b8767bfa4110f902a1b2542d8d173c8a", size = 96770, upload-time = "2026-01-11T11:21:52.647Z" }, - { url = "https://files.pythonhosted.org/packages/1e/0d/a22bb6c83f83386b0008425a6cd1fa1c14b5f3dd4bad05e98cf3dbbf4a64/tomli-2.4.0-cp311-cp311-win_amd64.whl", hash = "sha256:d3d1654e11d724760cdb37a3d7691f0be9db5fbdaef59c9f532aabf87006dbaa", size = 107626, upload-time = "2026-01-11T11:21:53.459Z" }, - { url = "https://files.pythonhosted.org/packages/2f/6d/77be674a3485e75cacbf2ddba2b146911477bd887dda9d8c9dfb2f15e871/tomli-2.4.0-cp311-cp311-win_arm64.whl", hash = "sha256:cae9c19ed12d4e8f3ebf46d1a75090e4c0dc16271c5bce1c833ac168f08fb614", size = 94842, upload-time = "2026-01-11T11:21:54.831Z" }, - { url = "https://files.pythonhosted.org/packages/3c/43/7389a1869f2f26dba52404e1ef13b4784b6b37dac93bac53457e3ff24ca3/tomli-2.4.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:920b1de295e72887bafa3ad9f7a792f811847d57ea6b1215154030cf131f16b1", size = 154894, upload-time = "2026-01-11T11:21:56.07Z" }, - { url = "https://files.pythonhosted.org/packages/e9/05/2f9bf110b5294132b2edf13fe6ca6ae456204f3d749f623307cbb7a946f2/tomli-2.4.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:7d6d9a4aee98fac3eab4952ad1d73aee87359452d1c086b5ceb43ed02ddb16b8", size = 149053, upload-time = "2026-01-11T11:21:57.467Z" }, - { url = "https://files.pythonhosted.org/packages/e8/41/1eda3ca1abc6f6154a8db4d714a4d35c4ad90adc0bcf700657291593fbf3/tomli-2.4.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:36b9d05b51e65b254ea6c2585b59d2c4cb91c8a3d91d0ed0f17591a29aaea54a", size = 243481, upload-time = "2026-01-11T11:21:58.661Z" }, - { url = "https://files.pythonhosted.org/packages/d2/6d/02ff5ab6c8868b41e7d4b987ce2b5f6a51d3335a70aa144edd999e055a01/tomli-2.4.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:1c8a885b370751837c029ef9bc014f27d80840e48bac415f3412e6593bbc18c1", size = 251720, upload-time = "2026-01-11T11:22:00.178Z" }, - { url = "https://files.pythonhosted.org/packages/7b/57/0405c59a909c45d5b6f146107c6d997825aa87568b042042f7a9c0afed34/tomli-2.4.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:8768715ffc41f0008abe25d808c20c3d990f42b6e2e58305d5da280ae7d1fa3b", size = 247014, upload-time = "2026-01-11T11:22:01.238Z" }, - { url = "https://files.pythonhosted.org/packages/2c/0e/2e37568edd944b4165735687cbaf2fe3648129e440c26d02223672ee0630/tomli-2.4.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:7b438885858efd5be02a9a133caf5812b8776ee0c969fea02c45e8e3f296ba51", size = 251820, upload-time = "2026-01-11T11:22:02.727Z" }, - { url = "https://files.pythonhosted.org/packages/5a/1c/ee3b707fdac82aeeb92d1a113f803cf6d0f37bdca0849cb489553e1f417a/tomli-2.4.0-cp312-cp312-win32.whl", hash = "sha256:0408e3de5ec77cc7f81960c362543cbbd91ef883e3138e81b729fc3eea5b9729", size = 97712, upload-time = "2026-01-11T11:22:03.777Z" }, - { url = "https://files.pythonhosted.org/packages/69/13/c07a9177d0b3bab7913299b9278845fc6eaaca14a02667c6be0b0a2270c8/tomli-2.4.0-cp312-cp312-win_amd64.whl", hash = "sha256:685306e2cc7da35be4ee914fd34ab801a6acacb061b6a7abca922aaf9ad368da", size = 108296, upload-time = "2026-01-11T11:22:04.86Z" }, - { url = "https://files.pythonhosted.org/packages/18/27/e267a60bbeeee343bcc279bb9e8fbed0cbe224bc7b2a3dc2975f22809a09/tomli-2.4.0-cp312-cp312-win_arm64.whl", hash = "sha256:5aa48d7c2356055feef06a43611fc401a07337d5b006be13a30f6c58f869e3c3", size = 94553, upload-time = "2026-01-11T11:22:05.854Z" }, - { url = "https://files.pythonhosted.org/packages/34/91/7f65f9809f2936e1f4ce6268ae1903074563603b2a2bd969ebbda802744f/tomli-2.4.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:84d081fbc252d1b6a982e1870660e7330fb8f90f676f6e78b052ad4e64714bf0", size = 154915, upload-time = "2026-01-11T11:22:06.703Z" }, - { url = "https://files.pythonhosted.org/packages/20/aa/64dd73a5a849c2e8f216b755599c511badde80e91e9bc2271baa7b2cdbb1/tomli-2.4.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:9a08144fa4cba33db5255f9b74f0b89888622109bd2776148f2597447f92a94e", size = 149038, upload-time = "2026-01-11T11:22:07.56Z" }, - { url = "https://files.pythonhosted.org/packages/9e/8a/6d38870bd3d52c8d1505ce054469a73f73a0fe62c0eaf5dddf61447e32fa/tomli-2.4.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c73add4bb52a206fd0c0723432db123c0c75c280cbd67174dd9d2db228ebb1b4", size = 242245, upload-time = "2026-01-11T11:22:08.344Z" }, - { url = "https://files.pythonhosted.org/packages/59/bb/8002fadefb64ab2669e5b977df3f5e444febea60e717e755b38bb7c41029/tomli-2.4.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:1fb2945cbe303b1419e2706e711b7113da57b7db31ee378d08712d678a34e51e", size = 250335, upload-time = "2026-01-11T11:22:09.951Z" }, - { url = "https://files.pythonhosted.org/packages/a5/3d/4cdb6f791682b2ea916af2de96121b3cb1284d7c203d97d92d6003e91c8d/tomli-2.4.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:bbb1b10aa643d973366dc2cb1ad94f99c1726a02343d43cbc011edbfac579e7c", size = 245962, upload-time = "2026-01-11T11:22:11.27Z" }, - { url = "https://files.pythonhosted.org/packages/f2/4a/5f25789f9a460bd858ba9756ff52d0830d825b458e13f754952dd15fb7bb/tomli-2.4.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:4cbcb367d44a1f0c2be408758b43e1ffb5308abe0ea222897d6bfc8e8281ef2f", size = 250396, upload-time = "2026-01-11T11:22:12.325Z" }, - { url = "https://files.pythonhosted.org/packages/aa/2f/b73a36fea58dfa08e8b3a268750e6853a6aac2a349241a905ebd86f3047a/tomli-2.4.0-cp313-cp313-win32.whl", hash = "sha256:7d49c66a7d5e56ac959cb6fc583aff0651094ec071ba9ad43df785abc2320d86", size = 97530, upload-time = "2026-01-11T11:22:13.865Z" }, - { url = "https://files.pythonhosted.org/packages/3b/af/ca18c134b5d75de7e8dc551c5234eaba2e8e951f6b30139599b53de9c187/tomli-2.4.0-cp313-cp313-win_amd64.whl", hash = "sha256:3cf226acb51d8f1c394c1b310e0e0e61fecdd7adcb78d01e294ac297dd2e7f87", size = 108227, upload-time = "2026-01-11T11:22:15.224Z" }, - { url = "https://files.pythonhosted.org/packages/22/c3/b386b832f209fee8073c8138ec50f27b4460db2fdae9ffe022df89a57f9b/tomli-2.4.0-cp313-cp313-win_arm64.whl", hash = "sha256:d20b797a5c1ad80c516e41bc1fb0443ddb5006e9aaa7bda2d71978346aeb9132", size = 94748, upload-time = "2026-01-11T11:22:16.009Z" }, - { url = "https://files.pythonhosted.org/packages/23/d1/136eb2cb77520a31e1f64cbae9d33ec6df0d78bdf4160398e86eec8a8754/tomli-2.4.0-py3-none-any.whl", hash = "sha256:1f776e7d669ebceb01dee46484485f43a4048746235e683bcdffacdf1fb4785a", size = 14477, upload-time = "2026-01-11T11:22:37.446Z" }, -] - [[package]] name = "toolwrapper" version = "2.1.0" @@ -10107,167 +4783,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/fb/12/5911ae3eeec47800503a238d971e51722ccea5feb8569b735184d5fcdbc0/toolz-1.1.0-py3-none-any.whl", hash = "sha256:15ccc861ac51c53696de0a5d6d4607f99c210739caf987b5d2054f3efed429d8", size = 58093, upload-time = "2025-10-17T04:03:20.435Z" }, ] -[[package]] -name = "torch" -version = "2.8.0" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", -] -dependencies = [ - { name = "filelock", version = "3.19.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and sys_platform == 'darwin') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "fsspec", marker = "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and sys_platform == 'darwin') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "jinja2", marker = "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and sys_platform == 'darwin') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "networkx", version = "3.2.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and sys_platform == 'darwin') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-cublas-cu12", version = "12.8.4.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-cuda-cupti-cu12", version = "12.8.90", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-cuda-nvrtc-cu12", version = "12.8.93", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-cuda-runtime-cu12", version = "12.8.90", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-cudnn-cu12", marker = "(python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-cufft-cu12", version = "11.3.3.83", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-cufile-cu12", version = "1.13.1.3", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-curand-cu12", version = "10.3.9.90", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-cusolver-cu12", version = "11.7.3.90", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-cusparse-cu12", version = "12.5.8.93", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-cusparselt-cu12", marker = "(python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-nccl-cu12", version = "2.27.3", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-nvjitlink-cu12", version = "12.8.93", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-nvtx-cu12", version = "12.8.90", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "sympy", marker = "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and sys_platform == 'darwin') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "triton", version = "3.4.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "typing-extensions", marker = "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and sys_platform == 'darwin') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, -] -wheels = [ - { url = "https://files.pythonhosted.org/packages/63/28/110f7274254f1b8476c561dada127173f994afa2b1ffc044efb773c15650/torch-2.8.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:0be92c08b44009d4131d1ff7a8060d10bafdb7ddcb7359ef8d8c5169007ea905", size = 102052793, upload-time = "2025-08-06T14:53:15.852Z" }, - { url = "https://files.pythonhosted.org/packages/70/1c/58da560016f81c339ae14ab16c98153d51c941544ae568da3cb5b1ceb572/torch-2.8.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:89aa9ee820bb39d4d72b794345cccef106b574508dd17dbec457949678c76011", size = 888025420, upload-time = "2025-08-06T14:54:18.014Z" }, - { url = "https://files.pythonhosted.org/packages/70/87/f69752d0dd4ba8218c390f0438130c166fa264a33b7025adb5014b92192c/torch-2.8.0-cp310-cp310-win_amd64.whl", hash = "sha256:e8e5bf982e87e2b59d932769938b698858c64cc53753894be25629bdf5cf2f46", size = 241363614, upload-time = "2025-08-06T14:53:31.496Z" }, - { url = "https://files.pythonhosted.org/packages/ef/d6/e6d4c57e61c2b2175d3aafbfb779926a2cfd7c32eeda7c543925dceec923/torch-2.8.0-cp310-none-macosx_11_0_arm64.whl", hash = "sha256:a3f16a58a9a800f589b26d47ee15aca3acf065546137fc2af039876135f4c760", size = 73611154, upload-time = "2025-08-06T14:53:10.919Z" }, - { url = "https://files.pythonhosted.org/packages/8f/c4/3e7a3887eba14e815e614db70b3b529112d1513d9dae6f4d43e373360b7f/torch-2.8.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:220a06fd7af8b653c35d359dfe1aaf32f65aa85befa342629f716acb134b9710", size = 102073391, upload-time = "2025-08-06T14:53:20.937Z" }, - { url = "https://files.pythonhosted.org/packages/5a/63/4fdc45a0304536e75a5e1b1bbfb1b56dd0e2743c48ee83ca729f7ce44162/torch-2.8.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:c12fa219f51a933d5f80eeb3a7a5d0cbe9168c0a14bbb4055f1979431660879b", size = 888063640, upload-time = "2025-08-06T14:55:05.325Z" }, - { url = "https://files.pythonhosted.org/packages/84/57/2f64161769610cf6b1c5ed782bd8a780e18a3c9d48931319f2887fa9d0b1/torch-2.8.0-cp311-cp311-win_amd64.whl", hash = "sha256:8c7ef765e27551b2fbfc0f41bcf270e1292d9bf79f8e0724848b1682be6e80aa", size = 241366752, upload-time = "2025-08-06T14:53:38.692Z" }, - { url = "https://files.pythonhosted.org/packages/a4/5e/05a5c46085d9b97e928f3f037081d3d2b87fb4b4195030fc099aaec5effc/torch-2.8.0-cp311-none-macosx_11_0_arm64.whl", hash = "sha256:5ae0524688fb6707c57a530c2325e13bb0090b745ba7b4a2cd6a3ce262572916", size = 73621174, upload-time = "2025-08-06T14:53:25.44Z" }, - { url = "https://files.pythonhosted.org/packages/49/0c/2fd4df0d83a495bb5e54dca4474c4ec5f9c62db185421563deeb5dabf609/torch-2.8.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:e2fab4153768d433f8ed9279c8133a114a034a61e77a3a104dcdf54388838705", size = 101906089, upload-time = "2025-08-06T14:53:52.631Z" }, - { url = "https://files.pythonhosted.org/packages/99/a8/6acf48d48838fb8fe480597d98a0668c2beb02ee4755cc136de92a0a956f/torch-2.8.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:b2aca0939fb7e4d842561febbd4ffda67a8e958ff725c1c27e244e85e982173c", size = 887913624, upload-time = "2025-08-06T14:56:44.33Z" }, - { url = "https://files.pythonhosted.org/packages/af/8a/5c87f08e3abd825c7dfecef5a0f1d9aa5df5dd0e3fd1fa2f490a8e512402/torch-2.8.0-cp312-cp312-win_amd64.whl", hash = "sha256:2f4ac52f0130275d7517b03a33d2493bab3693c83dcfadf4f81688ea82147d2e", size = 241326087, upload-time = "2025-08-06T14:53:46.503Z" }, - { url = "https://files.pythonhosted.org/packages/be/66/5c9a321b325aaecb92d4d1855421e3a055abd77903b7dab6575ca07796db/torch-2.8.0-cp312-none-macosx_11_0_arm64.whl", hash = "sha256:619c2869db3ada2c0105487ba21b5008defcc472d23f8b80ed91ac4a380283b0", size = 73630478, upload-time = "2025-08-06T14:53:57.144Z" }, - { url = "https://files.pythonhosted.org/packages/10/4e/469ced5a0603245d6a19a556e9053300033f9c5baccf43a3d25ba73e189e/torch-2.8.0-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:2b2f96814e0345f5a5aed9bf9734efa913678ed19caf6dc2cddb7930672d6128", size = 101936856, upload-time = "2025-08-06T14:54:01.526Z" }, - { url = "https://files.pythonhosted.org/packages/16/82/3948e54c01b2109238357c6f86242e6ecbf0c63a1af46906772902f82057/torch-2.8.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:65616ca8ec6f43245e1f5f296603e33923f4c30f93d65e103d9e50c25b35150b", size = 887922844, upload-time = "2025-08-06T14:55:50.78Z" }, - { url = "https://files.pythonhosted.org/packages/e3/54/941ea0a860f2717d86a811adf0c2cd01b3983bdd460d0803053c4e0b8649/torch-2.8.0-cp313-cp313-win_amd64.whl", hash = "sha256:659df54119ae03e83a800addc125856effda88b016dfc54d9f65215c3975be16", size = 241330968, upload-time = "2025-08-06T14:54:45.293Z" }, - { url = "https://files.pythonhosted.org/packages/de/69/8b7b13bba430f5e21d77708b616f767683629fc4f8037564a177d20f90ed/torch-2.8.0-cp313-cp313t-macosx_14_0_arm64.whl", hash = "sha256:1a62a1ec4b0498930e2543535cf70b1bef8c777713de7ceb84cd79115f553767", size = 73915128, upload-time = "2025-08-06T14:54:34.769Z" }, - { url = "https://files.pythonhosted.org/packages/15/0e/8a800e093b7f7430dbaefa80075aee9158ec22e4c4fc3c1a66e4fb96cb4f/torch-2.8.0-cp313-cp313t-manylinux_2_28_aarch64.whl", hash = "sha256:83c13411a26fac3d101fe8035a6b0476ae606deb8688e904e796a3534c197def", size = 102020139, upload-time = "2025-08-06T14:54:39.047Z" }, - { url = "https://files.pythonhosted.org/packages/4a/15/5e488ca0bc6162c86a33b58642bc577c84ded17c7b72d97e49b5833e2d73/torch-2.8.0-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:8f0a9d617a66509ded240add3754e462430a6c1fc5589f86c17b433dd808f97a", size = 887990692, upload-time = "2025-08-06T14:56:18.286Z" }, - { url = "https://files.pythonhosted.org/packages/b4/a8/6a04e4b54472fc5dba7ca2341ab219e529f3c07b6941059fbf18dccac31f/torch-2.8.0-cp313-cp313t-win_amd64.whl", hash = "sha256:a7242b86f42be98ac674b88a4988643b9bc6145437ec8f048fea23f72feb5eca", size = 241603453, upload-time = "2025-08-06T14:55:22.945Z" }, - { url = "https://files.pythonhosted.org/packages/04/6e/650bb7f28f771af0cb791b02348db8b7f5f64f40f6829ee82aa6ce99aabe/torch-2.8.0-cp313-none-macosx_11_0_arm64.whl", hash = "sha256:7b677e17f5a3e69fdef7eb3b9da72622f8d322692930297e4ccb52fefc6c8211", size = 73632395, upload-time = "2025-08-06T14:55:28.645Z" }, - { url = "https://files.pythonhosted.org/packages/5b/b0/a321f27270049baa12f5c3fb0d6ceea005634787e3af9a8d75dce8306b0a/torch-2.8.0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:da6afa31c13b669d4ba49d8a2169f0db2c3ec6bec4af898aa714f401d4c38904", size = 102059214, upload-time = "2025-08-06T14:55:33.433Z" }, - { url = "https://files.pythonhosted.org/packages/fd/dd/1630cb51b10d3d2e97db95e5a84c32def81fc26b005bce6fc880b0e6db81/torch-2.8.0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:06fcee8000e5c62a9f3e52a688b9c5abb7c6228d0e56e3452983416025c41381", size = 888024302, upload-time = "2025-08-06T14:57:28.23Z" }, - { url = "https://files.pythonhosted.org/packages/b9/dc/1f1f621afe15e3c496e1e8f94f8903f75f87e7d642d5a985e92210cc208d/torch-2.8.0-cp39-cp39-win_amd64.whl", hash = "sha256:5128fe752a355d9308e56af1ad28b15266fe2da5948660fad44de9e3a9e36e8c", size = 241249338, upload-time = "2025-08-06T14:57:05.669Z" }, - { url = "https://files.pythonhosted.org/packages/ae/95/ae26263aceb3d57b821179f827d0e321373ed49423e603dd5906ab14a730/torch-2.8.0-cp39-none-macosx_11_0_arm64.whl", hash = "sha256:e9f071f5b52a9f6970dc8a919694b27a91ae9dc08898b2b988abbef5eddfd1ae", size = 73610795, upload-time = "2025-08-06T14:57:11.513Z" }, -] - -[[package]] -name = "torch" -version = "2.8.0+cpu" -source = { registry = "https://download.pytorch.org/whl/cpu" } -resolution-markers = [ - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux'", -] -dependencies = [ - { name = "filelock", version = "3.19.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.10' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "fsspec", marker = "(python_full_version < '3.10' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "jinja2", marker = "(python_full_version < '3.10' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "networkx", version = "3.2.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.10' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "sympy", marker = "(python_full_version < '3.10' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "typing-extensions", marker = "(python_full_version < '3.10' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, -] -wheels = [ - { url = "https://download.pytorch.org/whl/cpu/torch-2.8.0%2Bcpu-cp310-cp310-linux_s390x.whl", hash = "sha256:5d255d259fbc65439b671580e40fdb8faea4644761b64fed90d6904ffe71bbc1" }, - { url = "https://download.pytorch.org/whl/cpu/torch-2.8.0%2Bcpu-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:b2149858b8340aeeb1f3056e0bff5b82b96e43b596fe49a9dba3184522261213" }, - { url = "https://download.pytorch.org/whl/cpu/torch-2.8.0%2Bcpu-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:16d75fa4e96ea28a785dfd66083ca55eb1058b6d6c5413f01656ca965ee2077e" }, - { url = "https://download.pytorch.org/whl/cpu/torch-2.8.0%2Bcpu-cp310-cp310-win_amd64.whl", hash = "sha256:7cc4af6ba954f36c2163eab98cf113c137fc25aa8bbf1b06ef155968627beed2" }, - { url = "https://download.pytorch.org/whl/cpu/torch-2.8.0%2Bcpu-cp311-cp311-linux_s390x.whl", hash = "sha256:2bfc013dd6efdc8f8223a0241d3529af9f315dffefb53ffa3bf14d3f10127da6" }, - { url = "https://download.pytorch.org/whl/cpu/torch-2.8.0%2Bcpu-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:680129efdeeec3db5da3f88ee5d28c1b1e103b774aef40f9d638e2cce8f8d8d8" }, - { url = "https://download.pytorch.org/whl/cpu/torch-2.8.0%2Bcpu-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:cb06175284673a581dd91fb1965662ae4ecaba6e5c357aa0ea7bb8b84b6b7eeb" }, - { url = "https://download.pytorch.org/whl/cpu/torch-2.8.0%2Bcpu-cp311-cp311-win_amd64.whl", hash = "sha256:7631ef49fbd38d382909525b83696dc12a55d68492ade4ace3883c62b9fc140f" }, - { url = "https://download.pytorch.org/whl/cpu/torch-2.8.0%2Bcpu-cp311-cp311-win_arm64.whl", hash = "sha256:41e6fc5ec0914fcdce44ccf338b1d19a441b55cafdd741fd0bf1af3f9e4cfd14" }, - { url = "https://download.pytorch.org/whl/cpu/torch-2.8.0%2Bcpu-cp312-cp312-linux_s390x.whl", hash = "sha256:0e34e276722ab7dd0dffa9e12fe2135a9b34a0e300c456ed7ad6430229404eb5" }, - { url = "https://download.pytorch.org/whl/cpu/torch-2.8.0%2Bcpu-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:610f600c102386e581327d5efc18c0d6edecb9820b4140d26163354a99cd800d" }, - { url = "https://download.pytorch.org/whl/cpu/torch-2.8.0%2Bcpu-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:cb9a8ba8137ab24e36bf1742cb79a1294bd374db570f09fc15a5e1318160db4e" }, - { url = "https://download.pytorch.org/whl/cpu/torch-2.8.0%2Bcpu-cp312-cp312-win_amd64.whl", hash = "sha256:2be20b2c05a0cce10430cc25f32b689259640d273232b2de357c35729132256d" }, - { url = "https://download.pytorch.org/whl/cpu/torch-2.8.0%2Bcpu-cp312-cp312-win_arm64.whl", hash = "sha256:99fc421a5d234580e45957a7b02effbf3e1c884a5dd077afc85352c77bf41434" }, - { url = "https://download.pytorch.org/whl/cpu/torch-2.8.0%2Bcpu-cp313-cp313-linux_s390x.whl", hash = "sha256:8b5882276633cf91fe3d2d7246c743b94d44a7e660b27f1308007fdb1bb89f7d" }, - { url = "https://download.pytorch.org/whl/cpu/torch-2.8.0%2Bcpu-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:a5064b5e23772c8d164068cc7c12e01a75faf7b948ecd95a0d4007d7487e5f25" }, - { url = "https://download.pytorch.org/whl/cpu/torch-2.8.0%2Bcpu-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:8f81dedb4c6076ec325acc3b47525f9c550e5284a18eae1d9061c543f7b6e7de" }, - { url = "https://download.pytorch.org/whl/cpu/torch-2.8.0%2Bcpu-cp313-cp313-win_amd64.whl", hash = "sha256:e1ee1b2346ade3ea90306dfbec7e8ff17bc220d344109d189ae09078333b0856" }, - { url = "https://download.pytorch.org/whl/cpu/torch-2.8.0%2Bcpu-cp313-cp313-win_arm64.whl", hash = "sha256:64c187345509f2b1bb334feed4666e2c781ca381874bde589182f81247e61f88" }, - { url = "https://download.pytorch.org/whl/cpu/torch-2.8.0%2Bcpu-cp313-cp313t-manylinux_2_28_aarch64.whl", hash = "sha256:af81283ac671f434b1b25c95ba295f270e72db1fad48831eb5e4748ff9840041" }, - { url = "https://download.pytorch.org/whl/cpu/torch-2.8.0%2Bcpu-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:a9dbb6f64f63258bc811e2c0c99640a81e5af93c531ad96e95c5ec777ea46dab" }, - { url = "https://download.pytorch.org/whl/cpu/torch-2.8.0%2Bcpu-cp313-cp313t-win_amd64.whl", hash = "sha256:6d93a7165419bc4b2b907e859ccab0dea5deeab261448ae9a5ec5431f14c0e64" }, - { url = "https://download.pytorch.org/whl/cpu/torch-2.8.0%2Bcpu-cp39-cp39-linux_s390x.whl", hash = "sha256:5239ef35402000844b676a9b79ed76d5ae6b028a6762bbdfebdf8421a0f4d2aa" }, - { url = "https://download.pytorch.org/whl/cpu/torch-2.8.0%2Bcpu-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:eac8b7ef5c7ca106daec5e829dfa8ca56ca47601db13b402d2608861ad3ab926" }, - { url = "https://download.pytorch.org/whl/cpu/torch-2.8.0%2Bcpu-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:bda4f93d64dcd9ae5d51844bbccc6fcb7d603522bcc95d256b5fe3bdb9dccca3" }, - { url = "https://download.pytorch.org/whl/cpu/torch-2.8.0%2Bcpu-cp39-cp39-win_amd64.whl", hash = "sha256:e3c3fce24ebaac954b837d1498e36d484ad0d93e2a1ed5b6b0c55a02ea748fab" }, -] - -[[package]] -name = "torch" -version = "2.8.0+cu129" -source = { registry = "https://download.pytorch.org/whl/cu129" } -resolution-markers = [ - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux'", -] -dependencies = [ - { name = "filelock", version = "3.19.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "fsspec", marker = "(python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "jinja2", marker = "(python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "networkx", version = "3.2.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-cublas-cu12", version = "12.9.1.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-cuda-cupti-cu12", version = "12.9.79", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-cuda-nvrtc-cu12", version = "12.9.86", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-cuda-runtime-cu12", version = "12.9.79", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-cudnn-cu12", marker = "(python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-cufft-cu12", version = "11.4.1.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-cufile-cu12", version = "1.14.1.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-curand-cu12", version = "10.3.10.19", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-cusolver-cu12", version = "11.7.5.82", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-cusparse-cu12", version = "12.5.10.65", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-cusparselt-cu12", marker = "(python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-nccl-cu12", version = "2.27.3", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-nvjitlink-cu12", version = "12.9.86", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-nvtx-cu12", version = "12.9.79", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "sympy", marker = "(python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "triton", version = "3.4.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "typing-extensions", marker = "(python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, -] -wheels = [ - { url = "https://download.pytorch.org/whl/cu129/torch-2.8.0%2Bcu129-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:72156354c39c08f3451acb50a6ecd4178d745670ad8651b5c796eaace558ff0f" }, - { url = "https://download.pytorch.org/whl/cu129/torch-2.8.0%2Bcu129-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:54d240b5d3b1f9075d4ee6179675a22c1974f7bef1885d134c582678d5180cd3" }, - { url = "https://download.pytorch.org/whl/cu129/torch-2.8.0%2Bcu129-cp310-cp310-win_amd64.whl", hash = "sha256:e4adcc3d44089d4a696e6a2ca4233d1ddad7614adc1d48ec8a8cfb95ba235ea1" }, - { url = "https://download.pytorch.org/whl/cu129/torch-2.8.0%2Bcu129-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:d5a210e351ab0c3acbac18c7397bc66ffd897d5000351e8ce9a21badf7f56b85" }, - { url = "https://download.pytorch.org/whl/cu129/torch-2.8.0%2Bcu129-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:da19696fd75c4a2d5bc945242619143dfc4cbc3e3deead407f2946d1395c3608" }, - { url = "https://download.pytorch.org/whl/cu129/torch-2.8.0%2Bcu129-cp311-cp311-win_amd64.whl", hash = "sha256:8a92b6ac49be932a8e4f70282d0d396a95a0fc877a9fbe0bd36be5f765707c84" }, - { url = "https://download.pytorch.org/whl/cu129/torch-2.8.0%2Bcu129-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:692fe6e513b667f789a543fa9b1baba58e77a46d5c8629764ca0c00a56823e1f" }, - { url = "https://download.pytorch.org/whl/cu129/torch-2.8.0%2Bcu129-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:02c7258e917f3043c978b53acf6f02b818db0d0d85db0e58ae578af333b9b4e2" }, - { url = "https://download.pytorch.org/whl/cu129/torch-2.8.0%2Bcu129-cp312-cp312-win_amd64.whl", hash = "sha256:2bc729898e422b9f3da54349eed98f2f0b5dd415434508ee2ab2a13fb021815d" }, - { url = "https://download.pytorch.org/whl/cu129/torch-2.8.0%2Bcu129-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:ad2d64316635e7ab06f6c973a252526d59a92a2045825c102f876914a72304d0" }, - { url = "https://download.pytorch.org/whl/cu129/torch-2.8.0%2Bcu129-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:563740167be2189b71530b503f0c8a8d7a8267dd49d4de6f9c5f1d23fbe237df" }, - { url = "https://download.pytorch.org/whl/cu129/torch-2.8.0%2Bcu129-cp313-cp313-win_amd64.whl", hash = "sha256:2cef066f9759ff4d7868a8c3695aa60d9a878598acb3685bb1ef2fdac29dcd68" }, - { url = "https://download.pytorch.org/whl/cu129/torch-2.8.0%2Bcu129-cp313-cp313t-manylinux_2_28_aarch64.whl", hash = "sha256:2982bf34249cbb38f1090e71ad7097a214a21023ccdc0413961986ab7d0396e6" }, - { url = "https://download.pytorch.org/whl/cu129/torch-2.8.0%2Bcu129-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:6344260959ebcfa6dae458e1c4365195bcfdf00f4f1f1ad438cbaf50756829ed" }, - { url = "https://download.pytorch.org/whl/cu129/torch-2.8.0%2Bcu129-cp313-cp313t-win_amd64.whl", hash = "sha256:9c0cd89e54ce44ce3208c5cf4163773b9cda0067e4b48cfcac56a4e04af52040" }, - { url = "https://download.pytorch.org/whl/cu129/torch-2.8.0%2Bcu129-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:c0253539dc076fa23ab6042e5c4ecd8384c4675ace8d5e13095ce11c5dac1daf" }, - { url = "https://download.pytorch.org/whl/cu129/torch-2.8.0%2Bcu129-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:217dc008bc7b4e771edb8253f635fb8d076dfd5059c78175734a01db12ce0058" }, - { url = "https://download.pytorch.org/whl/cu129/torch-2.8.0%2Bcu129-cp39-cp39-win_amd64.whl", hash = "sha256:d852178da46723dab0e2d9f7be570a073bb21c355b3e6b2d3f89e14062198e05" }, -] - [[package]] name = "torch" version = "2.10.0" @@ -10275,85 +4790,68 @@ source = { registry = "https://pypi.org/simple" } resolution-markers = [ "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.11.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.10.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", "python_full_version >= '3.13' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.11.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.10.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", ] dependencies = [ - { name = "cuda-bindings", marker = "(python_full_version >= '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "filelock", version = "3.24.3", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version >= '3.10' and sys_platform == 'darwin') or (python_full_version >= '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "fsspec", marker = "(python_full_version >= '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version >= '3.10' and sys_platform == 'darwin') or (python_full_version >= '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "jinja2", marker = "(python_full_version >= '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version >= '3.10' and sys_platform == 'darwin') or (python_full_version >= '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "networkx", version = "3.4.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version == '3.10.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version == '3.10.*' and sys_platform == 'darwin') or (python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version != '3.10.*' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "networkx", version = "3.6.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version >= '3.11' and sys_platform == 'darwin') or (python_full_version >= '3.11' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.11' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.11' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-cublas-cu12", version = "12.8.4.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-cuda-cupti-cu12", version = "12.8.90", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-cuda-nvrtc-cu12", version = "12.8.93", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-cuda-runtime-cu12", version = "12.8.90", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-cudnn-cu12", marker = "(python_full_version >= '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-cufft-cu12", version = "11.3.3.83", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-cufile-cu12", version = "1.13.1.3", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-curand-cu12", version = "10.3.9.90", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-cusolver-cu12", version = "11.7.3.90", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-cusparse-cu12", version = "12.5.8.93", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-cusparselt-cu12", marker = "(python_full_version >= '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-nccl-cu12", version = "2.27.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-nvjitlink-cu12", version = "12.8.93", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-nvshmem-cu12", marker = "(python_full_version >= '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-nvtx-cu12", version = "12.8.90", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "cuda-bindings", marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "filelock", marker = "(platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or sys_platform == 'darwin' or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "fsspec", marker = "(platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or sys_platform == 'darwin' or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "jinja2", marker = "(platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or sys_platform == 'darwin' or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "networkx", marker = "(platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or sys_platform == 'darwin' or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-cublas-cu12", version = "12.8.4.1", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-cuda-cupti-cu12", version = "12.8.90", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-cuda-nvrtc-cu12", version = "12.8.93", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-cuda-runtime-cu12", version = "12.8.90", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-cudnn-cu12", marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-cufft-cu12", version = "11.3.3.83", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-cufile-cu12", version = "1.13.1.3", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-curand-cu12", version = "10.3.9.90", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-cusolver-cu12", version = "11.7.3.90", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-cusparse-cu12", version = "12.5.8.93", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-cusparselt-cu12", marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-nccl-cu12", marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-nvjitlink-cu12", version = "12.8.93", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-nvshmem-cu12", marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-nvtx-cu12", version = "12.8.90", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, { name = "setuptools", marker = "(python_full_version >= '3.12' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version >= '3.12' and sys_platform == 'darwin') or (python_full_version >= '3.12' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "sympy", marker = "(python_full_version >= '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version >= '3.10' and sys_platform == 'darwin') or (python_full_version >= '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "triton", version = "3.6.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "typing-extensions", marker = "(python_full_version >= '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version >= '3.10' and sys_platform == 'darwin') or (python_full_version >= '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "sympy", marker = "(platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or sys_platform == 'darwin' or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "triton", marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "typing-extensions", marker = "(platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or sys_platform == 'darwin' or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] wheels = [ - { url = "https://files.pythonhosted.org/packages/5b/30/bfebdd8ec77db9a79775121789992d6b3b75ee5494971294d7b4b7c999bc/torch-2.10.0-2-cp310-none-macosx_11_0_arm64.whl", hash = "sha256:2b980edd8d7c0a68c4e951ee1856334a43193f98730d97408fbd148c1a933313", size = 79411457, upload-time = "2026-02-10T21:44:59.189Z" }, { url = "https://files.pythonhosted.org/packages/0f/8b/4b61d6e13f7108f36910df9ab4b58fd389cc2520d54d81b88660804aad99/torch-2.10.0-2-cp311-none-macosx_11_0_arm64.whl", hash = "sha256:418997cb02d0a0f1497cf6a09f63166f9f5df9f3e16c8a716ab76a72127c714f", size = 79423467, upload-time = "2026-02-10T21:44:48.711Z" }, { url = "https://files.pythonhosted.org/packages/d3/54/a2ba279afcca44bbd320d4e73675b282fcee3d81400ea1b53934efca6462/torch-2.10.0-2-cp312-none-macosx_11_0_arm64.whl", hash = "sha256:13ec4add8c3faaed8d13e0574f5cd4a323c11655546f91fbe6afa77b57423574", size = 79498202, upload-time = "2026-02-10T21:44:52.603Z" }, { url = "https://files.pythonhosted.org/packages/ec/23/2c9fe0c9c27f7f6cb865abcea8a4568f29f00acaeadfc6a37f6801f84cb4/torch-2.10.0-2-cp313-none-macosx_11_0_arm64.whl", hash = "sha256:e521c9f030a3774ed770a9c011751fb47c4d12029a3d6522116e48431f2ff89e", size = 79498254, upload-time = "2026-02-10T21:44:44.095Z" }, - { url = "https://files.pythonhosted.org/packages/0c/1a/c61f36cfd446170ec27b3a4984f072fd06dab6b5d7ce27e11adb35d6c838/torch-2.10.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:5276fa790a666ee8becaffff8acb711922252521b28fbce5db7db5cf9cb2026d", size = 145992962, upload-time = "2026-01-21T16:24:14.04Z" }, - { url = "https://files.pythonhosted.org/packages/b5/60/6662535354191e2d1555296045b63e4279e5a9dbad49acf55a5d38655a39/torch-2.10.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:aaf663927bcd490ae971469a624c322202a2a1e68936eb952535ca4cd3b90444", size = 915599237, upload-time = "2026-01-21T16:23:25.497Z" }, - { url = "https://files.pythonhosted.org/packages/40/b8/66bbe96f0d79be2b5c697b2e0b187ed792a15c6c4b8904613454651db848/torch-2.10.0-cp310-cp310-win_amd64.whl", hash = "sha256:a4be6a2a190b32ff5c8002a0977a25ea60e64f7ba46b1be37093c141d9c49aeb", size = 113720931, upload-time = "2026-01-21T16:24:23.743Z" }, - { url = "https://files.pythonhosted.org/packages/76/bb/d820f90e69cda6c8169b32a0c6a3ab7b17bf7990b8f2c680077c24a3c14c/torch-2.10.0-cp310-none-macosx_11_0_arm64.whl", hash = "sha256:35e407430795c8d3edb07a1d711c41cc1f9eaddc8b2f1cc0a165a6767a8fb73d", size = 79411450, upload-time = "2026-01-21T16:25:30.692Z" }, { url = "https://files.pythonhosted.org/packages/78/89/f5554b13ebd71e05c0b002f95148033e730d3f7067f67423026cc9c69410/torch-2.10.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:3282d9febd1e4e476630a099692b44fdc214ee9bf8ee5377732d9d9dfe5712e4", size = 145992610, upload-time = "2026-01-21T16:25:26.327Z" }, { url = "https://files.pythonhosted.org/packages/ae/30/a3a2120621bf9c17779b169fc17e3dc29b230c29d0f8222f499f5e159aa8/torch-2.10.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:a2f9edd8dbc99f62bc4dfb78af7bf89499bca3d753423ac1b4e06592e467b763", size = 915607863, upload-time = "2026-01-21T16:25:06.696Z" }, { url = "https://files.pythonhosted.org/packages/6f/3d/c87b33c5f260a2a8ad68da7147e105f05868c281c63d65ed85aa4da98c66/torch-2.10.0-cp311-cp311-win_amd64.whl", hash = "sha256:29b7009dba4b7a1c960260fc8ac85022c784250af43af9fb0ebafc9883782ebd", size = 113723116, upload-time = "2026-01-21T16:25:21.916Z" }, @@ -10379,37 +4877,27 @@ source = { registry = "https://download.pytorch.org/whl/cpu" } resolution-markers = [ "python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", ] dependencies = [ - { name = "filelock", version = "3.24.3", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.10' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "fsspec", marker = "(python_full_version >= '3.10' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "jinja2", marker = "(python_full_version >= '3.10' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "networkx", version = "3.4.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version == '3.10.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (python_full_version != '3.10.*' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version != '3.10.*' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "networkx", version = "3.6.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.11' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.11' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "filelock", marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "fsspec", marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "jinja2", marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "networkx", marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, { name = "setuptools", marker = "(python_full_version >= '3.12' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "sympy", marker = "(python_full_version >= '3.10' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "typing-extensions", marker = "(python_full_version >= '3.10' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "sympy", marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "typing-extensions", marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] wheels = [ - { url = "https://download.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp310-cp310-linux_aarch64.whl", hash = "sha256:31ae44836c8b9bbd1a3943d29c7c7457709ddf7c6173aa34aefe9d2203e4c405" }, - { url = "https://download.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp310-cp310-linux_s390x.whl", hash = "sha256:beadc2a6a1785b09a46daad378de91ef274b8d3eea7af0bc2d017d97f115afdf" }, - { url = "https://download.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:d63ee6a80982fd73fe44bb70d97d2976e010312ff6db81d7bfb9167b06dd45b9" }, - { url = "https://download.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:a280ffaea7b9c828e0c1b9b3bd502d9b6a649dc9416997b69b84544bd469f215" }, - { url = "https://download.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp310-cp310-win_amd64.whl", hash = "sha256:6c6f0df770144907092a0d067048d96ed4f278a6c840376d2ff0e27e7579b925" }, { url = "https://download.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp311-cp311-linux_aarch64.whl", hash = "sha256:ce5c113d1f55f8c1f5af05047a24e50d11d293e0cbbb5bf7a75c6c761edd6eaa" }, { url = "https://download.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp311-cp311-linux_s390x.whl", hash = "sha256:0e286fcf6ce0cc7b204396c9b4ea0d375f1f0c3e752f68ce3d3aeb265511db8c" }, { url = "https://download.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:1cfcb9b1558c6e52dffd0d4effce83b13c5ae5d97338164c372048c21f9cfccb" }, @@ -10442,39 +4930,35 @@ source = { registry = "https://download.pytorch.org/whl/cu129" } resolution-markers = [ "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux'", "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux'", + "python_full_version < '3.12' and platform_machine == 'x86_64' and sys_platform == 'linux'", ] dependencies = [ - { name = "cuda-bindings", marker = "(python_full_version >= '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "filelock", version = "3.24.3", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "fsspec", marker = "(python_full_version >= '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "jinja2", marker = "(python_full_version >= '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "networkx", version = "3.4.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version != '3.10.*' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version != '3.10.*' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "networkx", version = "3.6.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.11' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.11' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-cublas-cu12", version = "12.9.1.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-cuda-cupti-cu12", version = "12.9.79", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-cuda-nvrtc-cu12", version = "12.9.86", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-cuda-runtime-cu12", version = "12.9.79", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-cudnn-cu12", marker = "(python_full_version >= '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-cufft-cu12", version = "11.4.1.4", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-cufile-cu12", version = "1.14.1.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-curand-cu12", version = "10.3.10.19", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-cusolver-cu12", version = "11.7.5.82", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-cusparse-cu12", version = "12.5.10.65", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-cusparselt-cu12", marker = "(python_full_version >= '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-nccl-cu12", version = "2.27.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-nvjitlink-cu12", version = "12.9.86", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-nvshmem-cu12", marker = "(python_full_version >= '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-nvtx-cu12", version = "12.9.79", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "cuda-bindings", marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "filelock", marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "fsspec", marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "jinja2", marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "networkx", marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-cublas-cu12", version = "12.9.1.4", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-cuda-cupti-cu12", version = "12.9.79", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-cuda-nvrtc-cu12", version = "12.9.86", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-cuda-runtime-cu12", version = "12.9.79", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-cudnn-cu12", marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-cufft-cu12", version = "11.4.1.4", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-cufile-cu12", version = "1.14.1.1", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-curand-cu12", version = "10.3.10.19", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-cusolver-cu12", version = "11.7.5.82", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-cusparse-cu12", version = "12.5.10.65", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-cusparselt-cu12", marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-nccl-cu12", marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-nvjitlink-cu12", version = "12.9.86", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-nvshmem-cu12", marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-nvtx-cu12", version = "12.9.79", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, { name = "setuptools", marker = "(python_full_version >= '3.12' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "sympy", marker = "(python_full_version >= '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "triton", version = "3.6.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "typing-extensions", marker = "(python_full_version >= '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "sympy", marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "triton", marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "typing-extensions", marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] wheels = [ - { url = "https://download.pytorch.org/whl/cu129/torch-2.10.0%2Bcu129-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:6c7e5664a9cb809920d89c5200a832555d68faa5a00a7056f4365971723b685e" }, - { url = "https://download.pytorch.org/whl/cu129/torch-2.10.0%2Bcu129-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:afd73cb16ee6fe7cd86b089822401ca81f587c4425a5e592536e331cfdcece64" }, { url = "https://download.pytorch.org/whl/cu129/torch-2.10.0%2Bcu129-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:9e28f146e14173ebe2302088c5745b8c540171ffe4b4225bfbbd8639f7962514" }, { url = "https://download.pytorch.org/whl/cu129/torch-2.10.0%2Bcu129-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:ef82198b7b2f271cda50fa1d7ccd69643ac60dc48c7f38a91510c872b9722028" }, { url = "https://download.pytorch.org/whl/cu129/torch-2.10.0%2Bcu129-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:895501ca59670503c00aeca56aa864fe59ebb11bdc919e779683d5ae263a171a" }, @@ -10491,20 +4975,13 @@ version = "0.12.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "julius" }, - { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and sys_platform == 'darwin') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.8.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(python_full_version < '3.10' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.8.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.10.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version >= '3.10' and sys_platform == 'darwin') or (python_full_version >= '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.10.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(python_full_version >= '3.10' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.10.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(python_full_version >= '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.10.0", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or sys_platform == 'darwin' or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.10.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.10.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, { name = "torch-pitch-shift" }, - { name = "torchaudio", version = "2.8.0", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torchaudio", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and sys_platform == 'darwin') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torchaudio", version = "2.8.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu') or (python_full_version >= '3.10' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu') or (python_full_version >= '3.10' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu') or (python_full_version >= '3.10' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torchaudio", version = "2.8.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torchaudio", version = "2.10.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version >= '3.10' and sys_platform == 'darwin') or (python_full_version >= '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torchaudio", version = "2.10.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(python_full_version >= '3.10' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torchaudio", version = "2.10.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(python_full_version >= '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torchaudio", version = "2.10.0", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or sys_platform == 'darwin' or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torchaudio", version = "2.10.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torchaudio", version = "2.10.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/31/8d/2f8fd7e34c75f5ee8de4310c3bd3f22270acd44d1f809e2fe7c12fbf35f8/torch_audiomentations-0.12.0.tar.gz", hash = "sha256:b02d4c5eb86376986a53eb405cca5e34f370ea9284411237508e720c529f7888", size = 52094, upload-time = "2025-01-15T09:07:01.071Z" } wheels = [ @@ -10518,145 +4995,18 @@ source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "packaging" }, { name = "primepy" }, - { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and sys_platform == 'darwin') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.8.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(python_full_version < '3.10' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.8.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.10.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version >= '3.10' and sys_platform == 'darwin') or (python_full_version >= '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.10.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(python_full_version >= '3.10' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.10.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(python_full_version >= '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torchaudio", version = "2.8.0", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torchaudio", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and sys_platform == 'darwin') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torchaudio", version = "2.8.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu') or (python_full_version >= '3.10' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu') or (python_full_version >= '3.10' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu') or (python_full_version >= '3.10' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torchaudio", version = "2.8.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torchaudio", version = "2.10.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version >= '3.10' and sys_platform == 'darwin') or (python_full_version >= '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torchaudio", version = "2.10.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(python_full_version >= '3.10' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torchaudio", version = "2.10.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(python_full_version >= '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.10.0", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or sys_platform == 'darwin' or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.10.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.10.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torchaudio", version = "2.10.0", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or sys_platform == 'darwin' or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torchaudio", version = "2.10.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torchaudio", version = "2.10.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/79/a6/722a832bca75d5079f6731e005b3d0c2eec7c6c6863d030620952d143d57/torch_pitch_shift-1.2.5.tar.gz", hash = "sha256:6e1c7531f08d0f407a4c55e5ff8385a41355c5c5d27ab7fa08632e51defbd0ed", size = 4725, upload-time = "2024-09-25T19:10:12.922Z" } wheels = [ { url = "https://files.pythonhosted.org/packages/27/4c/96ac2a09efb56cc3c41fb3ce9b6f4d8c0604499f7481d4a13a7b03e21382/torch_pitch_shift-1.2.5-py3-none-any.whl", hash = "sha256:6f8500cbc13f1c98b11cde1805ce5084f82cdd195c285f34287541f168a7c6a7", size = 5005, upload-time = "2024-09-25T19:10:11.521Z" }, ] -[[package]] -name = "torchaudio" -version = "2.8.0" -source = { registry = "https://download.pytorch.org/whl/cpu" } -resolution-markers = [ - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux'", -] -dependencies = [ - { name = "torch", version = "2.8.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, -] -wheels = [ - { url = "https://download.pytorch.org/whl/cpu/torchaudio-2.8.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:c2f44cf279f673cfcdd8f576c349eee8bedf8caab351a5dd78b32970cc34a212" }, - { url = "https://download.pytorch.org/whl/cpu/torchaudio-2.8.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:d3c1b85b26a09832d139f6d6da6b66caeb51d2e16e08f8587665c44a9e1aa8f9" }, - { url = "https://download.pytorch.org/whl/cpu/torchaudio-2.8.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:c9276857d241c6de257af765c0f51fc011af38cb725401495121b280913007cf" }, - { url = "https://download.pytorch.org/whl/cpu/torchaudio-2.8.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:4573c6042950c20278e3608a9a38050ba0bc72e0049e1bbfd249caf859a8029b" }, - { url = "https://download.pytorch.org/whl/cpu/torchaudio-2.8.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:ddef94bf181e6447cbb05f38beaca8f6c5bb8d2b9ddced1aa3452025b9fc70d3" }, - { url = "https://download.pytorch.org/whl/cpu/torchaudio-2.8.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:862e2e40bf09d865e5df080a84c1a39bbcef40e43140f4b1737eb3a389d3b38f" }, - { url = "https://download.pytorch.org/whl/cpu/torchaudio-2.8.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f851d32e94ca05e470f0c60e25726ec1e0eb71cb2ca5a0206b7fd03272ccc3c8" }, - { url = "https://download.pytorch.org/whl/cpu/torchaudio-2.8.0-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:09535a9b727c0793cd07c1ace99f3f353626281bcc3e30c2f2314e3ebc9d3f96" }, - { url = "https://download.pytorch.org/whl/cpu/torchaudio-2.8.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:68df9c9068984edff8065c2b6656725e6114fe89281b0cf122c7505305fc98a4" }, - { url = "https://download.pytorch.org/whl/cpu/torchaudio-2.8.0-cp313-cp313t-manylinux_2_28_aarch64.whl", hash = "sha256:1951f10ed092f2dda57634f6a3950ef21c9d9352551aa84a9fccd51bbda18095" }, - { url = "https://download.pytorch.org/whl/cpu/torchaudio-2.8.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:522289e2cd57e79401fd5ccae9b1bc0ff2e47f3529092adf5acf57427ea0c6a9" }, - { url = "https://download.pytorch.org/whl/cpu/torchaudio-2.8.0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:ef7f7ffa828b8d8ba5d3a569b825fc0469688e1e8962bf6577d538bd8af1387d" }, -] - -[[package]] -name = "torchaudio" -version = "2.8.0" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", -] -dependencies = [ - { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and sys_platform == 'darwin') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, -] -wheels = [ - { url = "https://files.pythonhosted.org/packages/30/81/92d34ff136b17ddda872f6d8149f2ca927ad53a37ae26d02cb5f66435772/torchaudio-2.8.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:c2f44cf279f673cfcdd8f576c349eee8bedf8caab351a5dd78b32970cc34a212", size = 1852315, upload-time = "2025-08-06T14:58:32.64Z" }, - { url = "https://files.pythonhosted.org/packages/95/c8/e46c22a3c059844bb0f1b670317c9e538b51728558326dcd9e5fffbf2ec2/torchaudio-2.8.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:d3c1b85b26a09832d139f6d6da6b66caeb51d2e16e08f8587665c44a9e1aa8f9", size = 1685620, upload-time = "2025-08-06T14:58:34.045Z" }, - { url = "https://files.pythonhosted.org/packages/d8/f5/69db76b564263f22c1788cc298ab1c4e2391a79fa8ba7b4a3e76d945292a/torchaudio-2.8.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:58f912bf2d289c709b42a55475b2b483becec79d9affb7684b606bb1f896b434", size = 4001714, upload-time = "2025-08-06T14:58:38.951Z" }, - { url = "https://files.pythonhosted.org/packages/f1/18/63adf60a9f0592c6dcea2b37735990881edbbe671e3af3ae79f2da816a50/torchaudio-2.8.0-cp310-cp310-win_amd64.whl", hash = "sha256:4e2b4712ad6d7547ce82d84567c8c29d5e2966ff1d31d94e1644024fb4b2649f", size = 2500313, upload-time = "2025-08-06T14:58:42.441Z" }, - { url = "https://files.pythonhosted.org/packages/dd/bf/6b01ef3defb8d0a772c863588711e9b2b011c27d6b37c1b9d15a359c8442/torchaudio-2.8.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:c9276857d241c6de257af765c0f51fc011af38cb725401495121b280913007cf", size = 1859094, upload-time = "2025-08-06T14:58:35.078Z" }, - { url = "https://files.pythonhosted.org/packages/75/ca/da5d0a3bb7d114a8b590ecce14859ea0a05102bb4de68cdd1ed7a90634d6/torchaudio-2.8.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:4573c6042950c20278e3608a9a38050ba0bc72e0049e1bbfd249caf859a8029b", size = 1692033, upload-time = "2025-08-06T14:58:37.393Z" }, - { url = "https://files.pythonhosted.org/packages/b6/ef/62ac736d8f906cc414181050e08a495a637dab985186c34bd76ea37efbc0/torchaudio-2.8.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:776c0b4ba84b9e3ddf6304b9c47cd63549d7896a6f3d5184ece074cc3d76ed6b", size = 4011716, upload-time = "2025-08-06T14:58:40.138Z" }, - { url = "https://files.pythonhosted.org/packages/14/86/015337c8434abc604b8680371df783f66c421a7f211cbe40a374b0540b6d/torchaudio-2.8.0-cp311-cp311-win_amd64.whl", hash = "sha256:078105bf80f725c0215a0bebac8cb2fb1b3993ab32bdc3fcd50145a5b4127001", size = 2505194, upload-time = "2025-08-06T14:58:57.301Z" }, - { url = "https://files.pythonhosted.org/packages/ac/cc/c2e2a3eb6ee956f73c68541e439916f8146170ea9cc61e72adea5c995312/torchaudio-2.8.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:ddef94bf181e6447cbb05f38beaca8f6c5bb8d2b9ddced1aa3452025b9fc70d3", size = 1856736, upload-time = "2025-08-06T14:58:36.3Z" }, - { url = "https://files.pythonhosted.org/packages/c7/0d/24dad878784f1edd62862f27173781669f0c71eb46368636787d1e364188/torchaudio-2.8.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:862e2e40bf09d865e5df080a84c1a39bbcef40e43140f4b1737eb3a389d3b38f", size = 1692930, upload-time = "2025-08-06T14:58:41.312Z" }, - { url = "https://files.pythonhosted.org/packages/c2/a6/84d80f34472503e9eb82245d7df501c59602d75d7360e717fb9b84f91c5e/torchaudio-2.8.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:93a8583f280fe83ba021aa713319381ea71362cc87b67ee38e97a43cb2254aee", size = 4014607, upload-time = "2025-08-06T14:58:47.234Z" }, - { url = "https://files.pythonhosted.org/packages/43/ab/96ad33afa320738a7cfb4b51ba97e2f3cfb1e04ae3115d5057655103ba4f/torchaudio-2.8.0-cp312-cp312-win_amd64.whl", hash = "sha256:4b82cacd1b8ccd543b1149d8cab257a40dfda8119023d2e3a96c66349c84bffb", size = 2499890, upload-time = "2025-08-06T14:58:55.066Z" }, - { url = "https://files.pythonhosted.org/packages/3b/ea/2a68259c4dbb5fe44ebfdcfa40b115010d8c677221a7ef0f5577f3c4f5f1/torchaudio-2.8.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f851d32e94ca05e470f0c60e25726ec1e0eb71cb2ca5a0206b7fd03272ccc3c8", size = 1857045, upload-time = "2025-08-06T14:58:51.984Z" }, - { url = "https://files.pythonhosted.org/packages/0d/a3/1c79a8ef29fe403b83bdfc033db852bc2a888b80c406325e5c6fb37a7f2d/torchaudio-2.8.0-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:09535a9b727c0793cd07c1ace99f3f353626281bcc3e30c2f2314e3ebc9d3f96", size = 1692755, upload-time = "2025-08-06T14:58:50.868Z" }, - { url = "https://files.pythonhosted.org/packages/49/df/61941198e9ac6bcebfdd57e1836e4f3c23409308e3d8d7458f0198a6a366/torchaudio-2.8.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:d2a85b124494736241884372fe1c6dd8c15e9bc1931bd325838c5c00238c7378", size = 4013897, upload-time = "2025-08-06T14:59:01.66Z" }, - { url = "https://files.pythonhosted.org/packages/c3/ab/7175d35a4bbc4a465a9f1388571842f16eb6dec5069d7ea9c8c2d7b5b401/torchaudio-2.8.0-cp313-cp313-win_amd64.whl", hash = "sha256:c1b5139c840367a7855a062a06688a416619f6fd2ca46d9b9299b49a7d133dfd", size = 2500085, upload-time = "2025-08-06T14:58:44.95Z" }, - { url = "https://files.pythonhosted.org/packages/34/1a/69b9f8349d9d57953d5e7e445075cbf74000173fb5f5d5d9e9d59415fc63/torchaudio-2.8.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:68df9c9068984edff8065c2b6656725e6114fe89281b0cf122c7505305fc98a4", size = 1935600, upload-time = "2025-08-06T14:58:46.051Z" }, - { url = "https://files.pythonhosted.org/packages/71/76/40fec21b65bccfdc5c8cdb9d511033ab07a7ad4b05f0a5b07f85c68279fc/torchaudio-2.8.0-cp313-cp313t-manylinux_2_28_aarch64.whl", hash = "sha256:1951f10ed092f2dda57634f6a3950ef21c9d9352551aa84a9fccd51bbda18095", size = 1704199, upload-time = "2025-08-06T14:58:43.594Z" }, - { url = "https://files.pythonhosted.org/packages/8e/53/95c3363413c2f2009f805144160b093a385f641224465fbcd717449c71fb/torchaudio-2.8.0-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:4f7d97494698d98854129349b12061e8c3398d33bd84c929fa9aed5fd1389f73", size = 4020596, upload-time = "2025-08-06T14:59:03.031Z" }, - { url = "https://files.pythonhosted.org/packages/52/27/7fc2d7435af044ffbe0b9b8e98d99eac096d43f128a5cde23c04825d5dcf/torchaudio-2.8.0-cp313-cp313t-win_amd64.whl", hash = "sha256:d4a715d09ac28c920d031ee1e60ecbc91e8a5079ad8c61c0277e658436c821a6", size = 2549553, upload-time = "2025-08-06T14:59:00.019Z" }, - { url = "https://files.pythonhosted.org/packages/98/53/22f70997e909e712ede5625ed7612ec093eaf11e1af77cf7d44124edd3d7/torchaudio-2.8.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:522289e2cd57e79401fd5ccae9b1bc0ff2e47f3529092adf5acf57427ea0c6a9", size = 1853118, upload-time = "2025-08-06T14:58:49.748Z" }, - { url = "https://files.pythonhosted.org/packages/76/34/89203e1c7c553e463b8f0fe6746842182652bff2208607853d59ba836001/torchaudio-2.8.0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:ef7f7ffa828b8d8ba5d3a569b825fc0469688e1e8962bf6577d538bd8af1387d", size = 1685905, upload-time = "2025-08-06T14:58:48.547Z" }, - { url = "https://files.pythonhosted.org/packages/6b/a4/fab5dbbb2720fc775656b6a81f4daace069ff28a008a73d1b99e0fa995a2/torchaudio-2.8.0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:a1f4bde9ce9316b6b24304c73ea9f82a2aabc4dbf8c6c2598117ea7c6ecc4db2", size = 4002156, upload-time = "2025-08-06T14:58:53.289Z" }, - { url = "https://files.pythonhosted.org/packages/ca/c0/cad7786e7c99551c2a6b920161c64770db9be9de55e1ba15fa5148dd27bb/torchaudio-2.8.0-cp39-cp39-win_amd64.whl", hash = "sha256:e30b4741ec333dea78d012047c58305a1865a20ce74a3b8bc2d7b40de344dd02", size = 2493900, upload-time = "2025-08-06T14:58:58.463Z" }, -] - -[[package]] -name = "torchaudio" -version = "2.8.0+cpu" -source = { registry = "https://download.pytorch.org/whl/cpu" } -resolution-markers = [ - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux')", -] -dependencies = [ - { name = "torch", version = "2.8.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu') or (python_full_version >= '3.10' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu') or (python_full_version >= '3.10' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu') or (python_full_version >= '3.10' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, -] -wheels = [ - { url = "https://download.pytorch.org/whl/cpu/torchaudio-2.8.0%2Bcpu-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:c955835e470ebbde03d7d54ca5d8ba5722138bbfd66cfb86845234b3a5b9f9fa" }, - { url = "https://download.pytorch.org/whl/cpu/torchaudio-2.8.0%2Bcpu-cp310-cp310-win_amd64.whl", hash = "sha256:e9e68f16f1afe108f0cb1c7d636d0242fdc43cbbcaab222a72a373b9d2799134" }, - { url = "https://download.pytorch.org/whl/cpu/torchaudio-2.8.0%2Bcpu-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:e54bd7fc9472019308097d99102df9acee22aa2451ae808d27840bc874320292" }, - { url = "https://download.pytorch.org/whl/cpu/torchaudio-2.8.0%2Bcpu-cp311-cp311-win_amd64.whl", hash = "sha256:db37df7eee906f8fe0a639fdc673f3541cb2e173169b16d4133447eb922d1938" }, - { url = "https://download.pytorch.org/whl/cpu/torchaudio-2.8.0%2Bcpu-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:9377faee65a290578280ac7f4884c3586253dac2ca28c60f458ff6efe86a6b05" }, - { url = "https://download.pytorch.org/whl/cpu/torchaudio-2.8.0%2Bcpu-cp312-cp312-win_amd64.whl", hash = "sha256:9b302192b570657c1cc787a4d487ae4bbb7f2aab1c01b1fcc46757e7f86f391e" }, - { url = "https://download.pytorch.org/whl/cpu/torchaudio-2.8.0%2Bcpu-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:e1b1f530e8b71b1d079e23db45a0e621709061710ef8540aae8280aa039554ee" }, - { url = "https://download.pytorch.org/whl/cpu/torchaudio-2.8.0%2Bcpu-cp313-cp313-win_amd64.whl", hash = "sha256:0c2d081e24204768e636cbf05e1377c8a6964b8ed6fa3aa5092ba9af9bbc19c5" }, - { url = "https://download.pytorch.org/whl/cpu/torchaudio-2.8.0%2Bcpu-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:89c2d04fe1cb7c31eb042f7b36e1ce8e2afacf769ecd5f216527e184e4857099" }, - { url = "https://download.pytorch.org/whl/cpu/torchaudio-2.8.0%2Bcpu-cp313-cp313t-win_amd64.whl", hash = "sha256:ab4653da31dc37f0a643f41f4da8bee647a8686bacf12d3929cac8aead186811" }, - { url = "https://download.pytorch.org/whl/cpu/torchaudio-2.8.0%2Bcpu-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:e856b1abb280e1d961bdc12476bd38fc7eab8af720f9c903c95998dda069ae4c" }, - { url = "https://download.pytorch.org/whl/cpu/torchaudio-2.8.0%2Bcpu-cp39-cp39-win_amd64.whl", hash = "sha256:7e9a06f6dc73f98aff1a5540f8d6103b66e4c945c1d94612087954905f221171" }, -] - -[[package]] -name = "torchaudio" -version = "2.8.0+cu129" -source = { registry = "https://download.pytorch.org/whl/cu129" } -resolution-markers = [ - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux'", -] -dependencies = [ - { name = "torch", version = "2.8.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, -] -wheels = [ - { url = "https://download.pytorch.org/whl/cu129/torchaudio-2.8.0%2Bcu129-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:bf779145a53e2ea8eddb1ba9802fc4723ea1b927c98951a3430794061cf779d5" }, - { url = "https://download.pytorch.org/whl/cu129/torchaudio-2.8.0%2Bcu129-cp310-cp310-win_amd64.whl", hash = "sha256:a477f1320197311608fbc8ced0484c897cb285b38d583f2080cddf373194fe82" }, - { url = "https://download.pytorch.org/whl/cu129/torchaudio-2.8.0%2Bcu129-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:6115c725e6c21548aed6a2c78a2233e7fce1d249ec9997f1ba062c86d99f4003" }, - { url = "https://download.pytorch.org/whl/cu129/torchaudio-2.8.0%2Bcu129-cp311-cp311-win_amd64.whl", hash = "sha256:964e442feb548bb373e3fe9fae64a8cc3e413e4855bbd82aa9e8897966f700ae" }, - { url = "https://download.pytorch.org/whl/cu129/torchaudio-2.8.0%2Bcu129-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:40df9011972519120f284f56e5e7d131d4250ea69653499028d1d30b353f932e" }, - { url = "https://download.pytorch.org/whl/cu129/torchaudio-2.8.0%2Bcu129-cp312-cp312-win_amd64.whl", hash = "sha256:bfe0d4c6e770ef3b1f7a287a4c8d33ac276a1d983306573ee28e42de02a32fe3" }, - { url = "https://download.pytorch.org/whl/cu129/torchaudio-2.8.0%2Bcu129-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:475546c447c9dfab88caa10334502576e0ba5f46742e5e67ddd09094affa8d48" }, - { url = "https://download.pytorch.org/whl/cu129/torchaudio-2.8.0%2Bcu129-cp313-cp313-win_amd64.whl", hash = "sha256:42b462e8de400421c693ddbd3c88fde5fbe2c2474c3e4a709db99d635c512e79" }, - { url = "https://download.pytorch.org/whl/cu129/torchaudio-2.8.0%2Bcu129-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:d7a234d0ad889c7d2986de6f759bb6d6550873bfcbbfe29529a85240d263a78b" }, - { url = "https://download.pytorch.org/whl/cu129/torchaudio-2.8.0%2Bcu129-cp313-cp313t-win_amd64.whl", hash = "sha256:88a216cb4538eddb488fee7bcbb1b4028cc6a3fe47b96dd67af073cf67562037" }, - { url = "https://download.pytorch.org/whl/cu129/torchaudio-2.8.0%2Bcu129-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:f801f48029e31398618fcdec4a844df116aaafeb37b08e7b3761261468240aac" }, - { url = "https://download.pytorch.org/whl/cu129/torchaudio-2.8.0%2Bcu129-cp39-cp39-win_amd64.whl", hash = "sha256:6b8b1920aff3dc4a7d1e23c121a3611120fad991ec9e36a38d882e43b81dde63" }, -] - [[package]] name = "torchaudio" version = "2.10.0" @@ -10664,57 +5014,42 @@ source = { registry = "https://pypi.org/simple" } resolution-markers = [ "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.11.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.10.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", "python_full_version >= '3.13' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.11.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.10.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", ] dependencies = [ - { name = "torch", version = "2.10.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version >= '3.10' and sys_platform == 'darwin') or (python_full_version >= '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.10.0", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or sys_platform == 'darwin' or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] wheels = [ - { url = "https://files.pythonhosted.org/packages/04/59/88ab8ebff9d91f1f1365088b30f1b9ccce07c5eeac666038a5dee5e2f9b1/torchaudio-2.10.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:4cde383582a6240c1315443df5c5638863e96b03acf1cb44a298aff07a72d373", size = 734944, upload-time = "2026-01-21T16:28:49.535Z" }, - { url = "https://files.pythonhosted.org/packages/9b/d6/41f25f9ae9b37c191bed4cd474e403626685d2be8f7d20d011e6601fede1/torchaudio-2.10.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:cfb2ad4b7847d81931989127d803487263c8284f21156e9000daec1ac16c0831", size = 390449, upload-time = "2026-01-21T16:28:48.585Z" }, - { url = "https://files.pythonhosted.org/packages/43/ac/a14425fddd1cf56bb052a3bfd38880258008f8c3cd17f37bba55b3a88ce7/torchaudio-2.10.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:316cdb15fb37290fca89894b095d97b4dc14a90c4c61148ae5c96bb334d962cd", size = 1891070, upload-time = "2026-01-21T16:28:47.323Z" }, - { url = "https://files.pythonhosted.org/packages/6e/03/d1898db1bf7ecd47ca9b4e1b70927597d236cf721e3736d953d555901832/torchaudio-2.10.0-cp310-cp310-win_amd64.whl", hash = "sha256:013079d1ba2a652184703e671b8339cbc7991f17e4ed927071fe7635f908a4a1", size = 474045, upload-time = "2026-01-21T16:28:46.191Z" }, { url = "https://files.pythonhosted.org/packages/5c/e7/401fe1d024bf9352371d854be6f339ad9928669e6bc8a5ba08e9dbce81cf/torchaudio-2.10.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:bcab0e39eb18da84cba1a0c87f600abb6ce97c882200cb46e841caea106f037f", size = 736373, upload-time = "2026-01-21T16:28:41.589Z" }, { url = "https://files.pythonhosted.org/packages/6f/b7/c66dc34a27441d78997e20d0ffe2f5ad73db9f7b1267511be255bb94ac9b/torchaudio-2.10.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:87c841a21e82703ebd4a29170c4e60c25a2b47312dc212930087ad58965ac0c8", size = 391843, upload-time = "2026-01-21T16:28:43.093Z" }, { url = "https://files.pythonhosted.org/packages/13/ae/a2a34a64947c4fa4a61b4c86d8f36fbcb4ebfec30fdde140267db260f96c/torchaudio-2.10.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:b2c77fb9114dd463dc805560bf55a1ac2a52e219794cc32b7b32cf2aeffd2826", size = 1894140, upload-time = "2026-01-21T16:28:35.892Z" }, @@ -10740,28 +5075,21 @@ source = { registry = "https://download.pytorch.org/whl/cpu" } resolution-markers = [ "python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", ] dependencies = [ - { name = "torch", version = "2.10.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(python_full_version >= '3.10' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.10.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] wheels = [ - { url = "https://download.pytorch.org/whl/cpu/torchaudio-2.10.0%2Bcpu-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:2e923e36c6e6240a70a2ea7a002c8ff6094a386e3014894d20402c42bd6aab1c" }, - { url = "https://download.pytorch.org/whl/cpu/torchaudio-2.10.0%2Bcpu-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:18079d35314af1fc6a80eaa4f9d7b8e6c53317fc51dbe2ec48703e59b490eb90" }, - { url = "https://download.pytorch.org/whl/cpu/torchaudio-2.10.0%2Bcpu-cp310-cp310-win_amd64.whl", hash = "sha256:15a7da0c9e7928e3f3c0fe442d22aee7dd8ecca67718c2ac662d1fb0d1fb6385" }, { url = "https://download.pytorch.org/whl/cpu/torchaudio-2.10.0%2Bcpu-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:08981b656c71bcb990165f45b2421136df286de46ced976dba372fba5a627d2e" }, { url = "https://download.pytorch.org/whl/cpu/torchaudio-2.10.0%2Bcpu-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:d578c9bc636623c83103054d797c3a889d7f733c1375fedf48d0be4dd9ff0031" }, { url = "https://download.pytorch.org/whl/cpu/torchaudio-2.10.0%2Bcpu-cp311-cp311-win_amd64.whl", hash = "sha256:2a78b81a7a21d39a309e5df6e7473c814f5e2de68ef054788a633e618fe5baa8" }, @@ -10783,15 +5111,12 @@ source = { registry = "https://download.pytorch.org/whl/cu129" } resolution-markers = [ "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux'", "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux'", + "python_full_version < '3.12' and platform_machine == 'x86_64' and sys_platform == 'linux'", ] dependencies = [ - { name = "torch", version = "2.10.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(python_full_version >= '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.10.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] wheels = [ - { url = "https://download.pytorch.org/whl/cu129/torchaudio-2.10.0%2Bcu129-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:ff6a7a02ff3da0fde931f087a2a408e097ea29a32d905ba373a186e525a6f263" }, - { url = "https://download.pytorch.org/whl/cu129/torchaudio-2.10.0%2Bcu129-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:01cc17d6ed0da215a449123feed2ef6916b2a810bd717e8e3b838591067a876b" }, { url = "https://download.pytorch.org/whl/cu129/torchaudio-2.10.0%2Bcu129-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:7bdc3e5dedeac5c64792f2038cd337267f3aae7db5932c94960ba3c9ad87d417" }, { url = "https://download.pytorch.org/whl/cu129/torchaudio-2.10.0%2Bcu129-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:c24e7a2389276208d85077f6663735d406532214d5365bf2e5c15ae91a894415" }, { url = "https://download.pytorch.org/whl/cu129/torchaudio-2.10.0%2Bcu129-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:a9541e141f29a1a9b21b8f323ad30f1d03ef08f72efea2139eafe7de7c0fd0f1" }, @@ -10807,170 +5132,30 @@ name = "torchmetrics" version = "1.8.2" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "lightning-utilities", version = "0.15.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "lightning-utilities", version = "0.15.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "lightning-utilities" }, { name = "numpy" }, { name = "packaging" }, - { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and sys_platform == 'darwin') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.8.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(python_full_version < '3.10' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.8.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.10.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version >= '3.10' and sys_platform == 'darwin') or (python_full_version >= '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.10.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(python_full_version >= '3.10' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.10.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(python_full_version >= '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.10.0", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or sys_platform == 'darwin' or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.10.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.10.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/85/2e/48a887a59ecc4a10ce9e8b35b3e3c5cef29d902c4eac143378526e7485cb/torchmetrics-1.8.2.tar.gz", hash = "sha256:cf64a901036bf107f17a524009eea7781c9c5315d130713aeca5747a686fe7a5", size = 580679, upload-time = "2025-09-03T14:00:54.077Z" } wheels = [ { url = "https://files.pythonhosted.org/packages/02/21/aa0f434434c48490f91b65962b1ce863fdcce63febc166ca9fe9d706c2b6/torchmetrics-1.8.2-py3-none-any.whl", hash = "sha256:08382fd96b923e39e904c4d570f3d49e2cc71ccabd2a94e0f895d1f0dac86242", size = 983161, upload-time = "2025-09-03T14:00:51.921Z" }, ] -[[package]] -name = "torchvision" -version = "0.23.0" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", -] -dependencies = [ - { name = "numpy", marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "pillow", version = "11.3.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and sys_platform == 'darwin') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.8.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(python_full_version < '3.10' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.8.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, -] -wheels = [ - { url = "https://files.pythonhosted.org/packages/4d/49/5ad5c3ff4920be0adee9eb4339b4fb3b023a0fc55b9ed8dbc73df92946b8/torchvision-0.23.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:7266871daca00ad46d1c073e55d972179d12a58fa5c9adec9a3db9bbed71284a", size = 1856885, upload-time = "2025-08-06T14:57:55.024Z" }, - { url = "https://files.pythonhosted.org/packages/25/44/ddd56d1637bac42a8c5da2c8c440d8a28c431f996dd9790f32dd9a96ca6e/torchvision-0.23.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:31c583ba27426a3a04eca8c05450524105c1564db41be6632f7536ef405a6de2", size = 2394251, upload-time = "2025-08-06T14:58:01.725Z" }, - { url = "https://files.pythonhosted.org/packages/93/f3/3cdf55bbf0f737304d997561c34ab0176222e0496b6743b0feab5995182c/torchvision-0.23.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:3932bf67256f2d095ce90a9f826f6033694c818856f4bb26794cf2ce64253e53", size = 8627497, upload-time = "2025-08-06T14:58:09.317Z" }, - { url = "https://files.pythonhosted.org/packages/97/90/02afe57c3ef4284c5cf89d3b7ae203829b3a981f72b93a7dd2a3fd2c83c1/torchvision-0.23.0-cp310-cp310-win_amd64.whl", hash = "sha256:83ee5bf827d61a8af14620c0a61d8608558638ac9c3bac8adb7b27138e2147d1", size = 1600760, upload-time = "2025-08-06T14:57:56.783Z" }, - { url = "https://files.pythonhosted.org/packages/f0/d7/15d3d7bd8d0239211b21673d1bac7bc345a4ad904a8e25bb3fd8a9cf1fbc/torchvision-0.23.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:49aa20e21f0c2bd458c71d7b449776cbd5f16693dd5807195a820612b8a229b7", size = 1856884, upload-time = "2025-08-06T14:58:00.237Z" }, - { url = "https://files.pythonhosted.org/packages/dd/14/7b44fe766b7d11e064c539d92a172fa9689a53b69029e24f2f1f51e7dc56/torchvision-0.23.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:01dc33ee24c79148aee7cdbcf34ae8a3c9da1674a591e781577b716d233b1fa6", size = 2395543, upload-time = "2025-08-06T14:58:04.373Z" }, - { url = "https://files.pythonhosted.org/packages/79/9c/fcb09aff941c8147d9e6aa6c8f67412a05622b0c750bcf796be4c85a58d4/torchvision-0.23.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:35c27941831b653f5101edfe62c03d196c13f32139310519e8228f35eae0e96a", size = 8628388, upload-time = "2025-08-06T14:58:07.802Z" }, - { url = "https://files.pythonhosted.org/packages/93/40/3415d890eb357b25a8e0a215d32365a88ecc75a283f75c4e919024b22d97/torchvision-0.23.0-cp311-cp311-win_amd64.whl", hash = "sha256:09bfde260e7963a15b80c9e442faa9f021c7e7f877ac0a36ca6561b367185013", size = 1600741, upload-time = "2025-08-06T14:57:59.158Z" }, - { url = "https://files.pythonhosted.org/packages/df/1d/0ea0b34bde92a86d42620f29baa6dcbb5c2fc85990316df5cb8f7abb8ea2/torchvision-0.23.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:e0e2c04a91403e8dd3af9756c6a024a1d9c0ed9c0d592a8314ded8f4fe30d440", size = 1856885, upload-time = "2025-08-06T14:58:06.503Z" }, - { url = "https://files.pythonhosted.org/packages/e2/00/2f6454decc0cd67158c7890364e446aad4b91797087a57a78e72e1a8f8bc/torchvision-0.23.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:6dd7c4d329a0e03157803031bc856220c6155ef08c26d4f5bbac938acecf0948", size = 2396614, upload-time = "2025-08-06T14:58:03.116Z" }, - { url = "https://files.pythonhosted.org/packages/e4/b5/3e580dcbc16f39a324f3dd71b90edbf02a42548ad44d2b4893cc92b1194b/torchvision-0.23.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:4e7d31c43bc7cbecbb1a5652ac0106b436aa66e26437585fc2c4b2cf04d6014c", size = 8627108, upload-time = "2025-08-06T14:58:12.956Z" }, - { url = "https://files.pythonhosted.org/packages/82/c1/c2fe6d61e110a8d0de2f94276899a2324a8f1e6aee559eb6b4629ab27466/torchvision-0.23.0-cp312-cp312-win_amd64.whl", hash = "sha256:a2e45272abe7b8bf0d06c405e78521b5757be1bd0ed7e5cd78120f7fdd4cbf35", size = 1600723, upload-time = "2025-08-06T14:57:57.986Z" }, - { url = "https://files.pythonhosted.org/packages/91/37/45a5b9407a7900f71d61b2b2f62db4b7c632debca397f205fdcacb502780/torchvision-0.23.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:1c37e325e09a184b730c3ef51424f383ec5745378dc0eca244520aca29722600", size = 1856886, upload-time = "2025-08-06T14:58:05.491Z" }, - { url = "https://files.pythonhosted.org/packages/ac/da/a06c60fc84fc849377cf035d3b3e9a1c896d52dbad493b963c0f1cdd74d0/torchvision-0.23.0-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:2f7fd6c15f3697e80627b77934f77705f3bc0e98278b989b2655de01f6903e1d", size = 2353112, upload-time = "2025-08-06T14:58:26.265Z" }, - { url = "https://files.pythonhosted.org/packages/a0/27/5ce65ba5c9d3b7d2ccdd79892ab86a2f87ac2ca6638f04bb0280321f1a9c/torchvision-0.23.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:a76fafe113b2977be3a21bf78f115438c1f88631d7a87203acb3dd6ae55889e6", size = 8627658, upload-time = "2025-08-06T14:58:15.999Z" }, - { url = "https://files.pythonhosted.org/packages/1f/e4/028a27b60aa578a2fa99d9d7334ff1871bb17008693ea055a2fdee96da0d/torchvision-0.23.0-cp313-cp313-win_amd64.whl", hash = "sha256:07d069cb29691ff566e3b7f11f20d91044f079e1dbdc9d72e0655899a9b06938", size = 1600749, upload-time = "2025-08-06T14:58:10.719Z" }, - { url = "https://files.pythonhosted.org/packages/05/35/72f91ad9ac7c19a849dedf083d347dc1123f0adeb401f53974f84f1d04c8/torchvision-0.23.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:2df618e1143805a7673aaf82cb5720dd9112d4e771983156aaf2ffff692eebf9", size = 2047192, upload-time = "2025-08-06T14:58:11.813Z" }, - { url = "https://files.pythonhosted.org/packages/1d/9d/406cea60a9eb9882145bcd62a184ee61e823e8e1d550cdc3c3ea866a9445/torchvision-0.23.0-cp313-cp313t-manylinux_2_28_aarch64.whl", hash = "sha256:2a3299d2b1d5a7aed2d3b6ffb69c672ca8830671967eb1cee1497bacd82fe47b", size = 2359295, upload-time = "2025-08-06T14:58:17.469Z" }, - { url = "https://files.pythonhosted.org/packages/2b/f4/34662f71a70fa1e59de99772142f22257ca750de05ccb400b8d2e3809c1d/torchvision-0.23.0-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:76bc4c0b63d5114aa81281390f8472a12a6a35ce9906e67ea6044e5af4cab60c", size = 8800474, upload-time = "2025-08-06T14:58:22.53Z" }, - { url = "https://files.pythonhosted.org/packages/6e/f5/b5a2d841a8d228b5dbda6d524704408e19e7ca6b7bb0f24490e081da1fa1/torchvision-0.23.0-cp313-cp313t-win_amd64.whl", hash = "sha256:b9e2dabf0da9c8aa9ea241afb63a8f3e98489e706b22ac3f30416a1be377153b", size = 1527667, upload-time = "2025-08-06T14:58:14.446Z" }, - { url = "https://files.pythonhosted.org/packages/d5/3e/f1f3bb3dd452b98ec2eba4820d777440abceb3d3a428a6c8243006fe47e5/torchvision-0.23.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:b190db205f90206c230fc2f91cbdfd5733334babc0e0d19bddb90a40b8cf26c2", size = 1856927, upload-time = "2025-08-06T14:58:18.919Z" }, - { url = "https://files.pythonhosted.org/packages/f4/e2/aafc6af854e792d212ff58e459f8d5d807568dc3f2b49ec41b677275e5a9/torchvision-0.23.0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:6c74cbc1cbee26dd4f35f989cd80dccc40411f258dee476b29871dee4b483af0", size = 2392870, upload-time = "2025-08-06T14:58:21.303Z" }, - { url = "https://files.pythonhosted.org/packages/5d/06/09b6a917b3759ef000428af0aa2597f983e20d9fbbcfeb826750f778fe6d/torchvision-0.23.0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:a9e9d7552d34547b80843eaf64ab0737b19b2e8bec2514286b8cfd30861ca8b5", size = 8630400, upload-time = "2025-08-06T14:58:24.139Z" }, - { url = "https://files.pythonhosted.org/packages/08/07/ae46106efbf4bbc0090078aa4c406c38282cbe4e637bdb4b7f2e984140af/torchvision-0.23.0-cp39-cp39-win_amd64.whl", hash = "sha256:dc7ce5accbbb8c9df9a79f8cef6a6df042f28e2250a6ae0d2ca70b06473fa03b", size = 1600751, upload-time = "2025-08-06T14:58:20.027Z" }, -] - [[package]] name = "torchvision" version = "0.25.0" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.11.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.10.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.11.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.10.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", -] dependencies = [ - { name = "numpy", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "pillow", version = "12.1.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.10.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version >= '3.10' and sys_platform == 'darwin') or (python_full_version >= '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.10.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(python_full_version >= '3.10' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.10.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(python_full_version >= '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy" }, + { name = "pillow" }, + { name = "torch", version = "2.10.0", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or sys_platform == 'darwin' or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.10.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.10.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] wheels = [ - { url = "https://files.pythonhosted.org/packages/50/ae/cbf727421eb73f1cf907fbe5788326a08f111b3f6b6ddca15426b53fec9a/torchvision-0.25.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a95c47abb817d4e90ea1a8e57bd0d728e3e6b533b3495ae77d84d883c4d11f56", size = 1874919, upload-time = "2026-01-21T16:27:47.617Z" }, - { url = "https://files.pythonhosted.org/packages/64/68/dc7a224f606d53ea09f9a85196a3921ec3a801b0b1d17e84c73392f0c029/torchvision-0.25.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:acc339aba4a858192998c2b91f635827e40d9c469d9cf1455bafdda6e4c28ea4", size = 2343220, upload-time = "2026-01-21T16:27:44.26Z" }, - { url = "https://files.pythonhosted.org/packages/f9/fa/8cce5ca7ffd4da95193232493703d20aa06303f37b119fd23a65df4f239a/torchvision-0.25.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:0d9a3f925a081dd2ebb0b791249b687c2ef2c2717d027946654607494b9b64b6", size = 8068106, upload-time = "2026-01-21T16:27:37.805Z" }, - { url = "https://files.pythonhosted.org/packages/8b/b9/a53bcf8f78f2cd89215e9ded70041765d50ef13bf301f9884ec6041a9421/torchvision-0.25.0-cp310-cp310-win_amd64.whl", hash = "sha256:b57430fbe9e9b697418a395041bb615124d9c007710a2712fda6e35fb310f264", size = 3697295, upload-time = "2026-01-21T16:27:36.574Z" }, { url = "https://files.pythonhosted.org/packages/3e/be/c704bceaf11c4f6b19d64337a34a877fcdfe3bd68160a8c9ae9bea4a35a3/torchvision-0.25.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:db74a551946b75d19f9996c419a799ffdf6a223ecf17c656f90da011f1d75b20", size = 1874923, upload-time = "2026-01-21T16:27:46.574Z" }, { url = "https://files.pythonhosted.org/packages/ae/e9/f143cd71232430de1f547ceab840f68c55e127d72558b1061a71d0b193cd/torchvision-0.25.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:f49964f96644dbac2506dffe1a0a7ec0f2bf8cf7a588c3319fed26e6329ffdf3", size = 2344808, upload-time = "2026-01-21T16:27:43.191Z" }, { url = "https://files.pythonhosted.org/packages/43/ae/ad5d6165797de234c9658752acb4fce65b78a6a18d82efdf8367c940d8da/torchvision-0.25.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:153c0d2cbc34b7cf2da19d73450f24ba36d2b75ec9211b9962b5022fb9e4ecee", size = 8070752, upload-time = "2026-01-21T16:27:33.748Z" }, @@ -11015,70 +5200,42 @@ name = "transformers" version = "4.53.3" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version >= '3.13' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", ] dependencies = [ - { name = "filelock", version = "3.19.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "filelock", version = "3.24.3", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "huggingface-hub", version = "0.36.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "numpy", marker = "python_full_version < '3.10' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "packaging", marker = "python_full_version < '3.10' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "pyyaml", marker = "python_full_version < '3.10' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "regex", version = "2026.1.15", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "regex", version = "2026.2.19", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "requests", marker = "python_full_version < '3.10' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "safetensors", marker = "python_full_version < '3.10' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "tokenizers", version = "0.21.4", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "tqdm", marker = "python_full_version < '3.10' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "filelock", marker = "extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "huggingface-hub", version = "0.36.2", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "numpy", marker = "extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "packaging", marker = "extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "pyyaml", marker = "extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "regex", marker = "extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "requests", marker = "extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "safetensors", marker = "extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "tokenizers", version = "0.21.4", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "tqdm", marker = "extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/f1/5c/49182918b58eaa0b4c954fd0e37c79fc299e5643e69d70089d0b0eb0cd9b/transformers-4.53.3.tar.gz", hash = "sha256:b2eda1a261de79b78b97f7888fe2005fc0c3fabf5dad33d52cc02983f9f675d8", size = 9197478, upload-time = "2025-07-22T07:30:51.51Z" } wheels = [ @@ -11092,134 +5249,56 @@ source = { registry = "https://pypi.org/simple" } resolution-markers = [ "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.11.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.10.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.11.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.10.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", "python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", ] dependencies = [ - { name = "huggingface-hub", version = "1.4.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "numpy", marker = "(python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "packaging", marker = "(python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "pyyaml", marker = "(python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "regex", version = "2026.2.19", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "safetensors", marker = "(python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "tokenizers", version = "0.22.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "tqdm", marker = "(python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "typer-slim", marker = "(python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "huggingface-hub", version = "1.4.1", source = { registry = "https://pypi.org/simple" }, marker = "extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", marker = "extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "packaging", marker = "extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "pyyaml", marker = "extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "regex", marker = "extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "safetensors", marker = "extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "tokenizers", version = "0.22.2", source = { registry = "https://pypi.org/simple" }, marker = "extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "tqdm", marker = "extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "typer-slim", marker = "extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/bd/7e/8a0c57d562015e5b16c97c1f0b8e0e92ead2c7c20513225dc12c2043ba9f/transformers-5.2.0.tar.gz", hash = "sha256:0088b8b46ccc9eff1a1dca72b5d618a5ee3b1befc3e418c9512b35dea9f9a650", size = 8618176, upload-time = "2026-02-16T18:54:02.867Z" } wheels = [ { url = "https://files.pythonhosted.org/packages/4e/93/79754b0ca486e556c2b95d4f5afc66aaf4b260694f3d6e1b51da2d036691/transformers-5.2.0-py3-none-any.whl", hash = "sha256:9ecaf243dc45bee11a7d93f8caf03746accc0cb069181bbf4ad8566c53e854b4", size = 10403304, upload-time = "2026-02-16T18:53:59.699Z" }, ] -[[package]] -name = "triton" -version = "3.4.0" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", -] -dependencies = [ - { name = "importlib-metadata", marker = "(python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "setuptools", marker = "(python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, -] -wheels = [ - { url = "https://files.pythonhosted.org/packages/62/ee/0ee5f64a87eeda19bbad9bc54ae5ca5b98186ed00055281fd40fb4beb10e/triton-3.4.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:7ff2785de9bc02f500e085420273bb5cc9c9bb767584a4aa28d6e360cec70128", size = 155430069, upload-time = "2025-07-30T19:58:21.715Z" }, - { url = "https://files.pythonhosted.org/packages/7d/39/43325b3b651d50187e591eefa22e236b2981afcebaefd4f2fc0ea99df191/triton-3.4.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:7b70f5e6a41e52e48cfc087436c8a28c17ff98db369447bcaff3b887a3ab4467", size = 155531138, upload-time = "2025-07-30T19:58:29.908Z" }, - { url = "https://files.pythonhosted.org/packages/d0/66/b1eb52839f563623d185f0927eb3530ee4d5ffe9d377cdaf5346b306689e/triton-3.4.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:31c1d84a5c0ec2c0f8e8a072d7fd150cab84a9c239eaddc6706c081bfae4eb04", size = 155560068, upload-time = "2025-07-30T19:58:37.081Z" }, - { url = "https://files.pythonhosted.org/packages/30/7b/0a685684ed5322d2af0bddefed7906674f67974aa88b0fae6e82e3b766f6/triton-3.4.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:00be2964616f4c619193cb0d1b29a99bd4b001d7dc333816073f92cf2a8ccdeb", size = 155569223, upload-time = "2025-07-30T19:58:44.017Z" }, - { url = "https://files.pythonhosted.org/packages/20/63/8cb444ad5cdb25d999b7d647abac25af0ee37d292afc009940c05b82dda0/triton-3.4.0-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:7936b18a3499ed62059414d7df563e6c163c5e16c3773678a3ee3d417865035d", size = 155659780, upload-time = "2025-07-30T19:58:51.171Z" }, - { url = "https://files.pythonhosted.org/packages/12/34/1251beb5a3cb93f3950ebe68732752014646003ef6eb11eb5f1a37ca78cd/triton-3.4.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:98e5c1442eaeabae2e2452ae765801bd53cd4ce873cab0d1bdd59a32ab2d9397", size = 155430799, upload-time = "2025-07-30T19:58:57.664Z" }, -] - [[package]] name = "triton" version = "3.6.0" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.11.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.10.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.11.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.10.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", -] wheels = [ - { url = "https://files.pythonhosted.org/packages/44/ba/b1b04f4b291a3205d95ebd24465de0e5bf010a2df27a4e58a9b5f039d8f2/triton-3.6.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6c723cfb12f6842a0ae94ac307dba7e7a44741d720a40cf0e270ed4a4e3be781", size = 175972180, upload-time = "2026-01-20T16:15:53.664Z" }, - { url = "https://files.pythonhosted.org/packages/8c/f7/f1c9d3424ab199ac53c2da567b859bcddbb9c9e7154805119f8bd95ec36f/triton-3.6.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a6550fae429e0667e397e5de64b332d1e5695b73650ee75a6146e2e902770bea", size = 188105201, upload-time = "2026-01-20T16:00:29.272Z" }, { url = "https://files.pythonhosted.org/packages/0f/2c/96f92f3c60387e14cc45aed49487f3486f89ea27106c1b1376913c62abe4/triton-3.6.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:49df5ef37379c0c2b5c0012286f80174fcf0e073e5ade1ca9a86c36814553651", size = 176081190, upload-time = "2026-01-20T16:16:00.523Z" }, { url = "https://files.pythonhosted.org/packages/e0/12/b05ba554d2c623bffa59922b94b0775673de251f468a9609bc9e45de95e9/triton-3.6.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:e8e323d608e3a9bfcc2d9efcc90ceefb764a82b99dea12a86d643c72539ad5d3", size = 188214640, upload-time = "2026-01-20T16:00:35.869Z" }, { url = "https://files.pythonhosted.org/packages/17/5d/08201db32823bdf77a0e2b9039540080b2e5c23a20706ddba942924ebcd6/triton-3.6.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:374f52c11a711fd062b4bfbb201fd9ac0a5febd28a96fb41b4a0f51dde3157f4", size = 176128243, upload-time = "2026-01-20T16:16:07.857Z" }, @@ -11235,131 +5314,22 @@ name = "typeguard" version = "4.5.1" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "typing-extensions", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "typing-extensions" }, ] sdist = { url = "https://files.pythonhosted.org/packages/2b/e8/66e25efcc18542d58706ce4e50415710593721aae26e794ab1dec34fb66f/typeguard-4.5.1.tar.gz", hash = "sha256:f6f8ecbbc819c9bc749983cc67c02391e16a9b43b8b27f15dc70ed7c4a007274", size = 80121, upload-time = "2026-02-19T16:09:03.392Z" } wheels = [ { url = "https://files.pythonhosted.org/packages/91/88/b55b3117287a8540b76dbdd87733808d4d01c8067a3b339408c250bb3600/typeguard-4.5.1-py3-none-any.whl", hash = "sha256:44d2bf329d49a244110a090b55f5f91aa82d9a9834ebfd30bcc73651e4a8cc40", size = 36745, upload-time = "2026-02-19T16:09:01.6Z" }, ] -[[package]] -name = "typer" -version = "0.23.2" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", -] -dependencies = [ - { name = "annotated-doc", marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "click", version = "8.1.8", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "rich", marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "shellingham", marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/d3/ae/93d16574e66dfe4c2284ffdaca4b0320ade32858cb2cc586c8dd79f127c5/typer-0.23.2.tar.gz", hash = "sha256:a99706a08e54f1aef8bb6a8611503808188a4092808e86addff1828a208af0de", size = 120162, upload-time = "2026-02-16T18:52:40.354Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/14/2c/dee705c427875402200fe779eb8a3c00ccb349471172c41178336e9599cc/typer-0.23.2-py3-none-any.whl", hash = "sha256:e9c8dc380f82450b3c851a9b9d5a0edf95d1d6456ae70c517d8b06a50c7a9978", size = 56834, upload-time = "2026-02-16T18:52:39.308Z" }, -] - [[package]] name = "typer" version = "0.24.1" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.11.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.10.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.11.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.10.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", -] dependencies = [ - { name = "annotated-doc", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "click", version = "8.3.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "rich", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "shellingham", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "annotated-doc" }, + { name = "click" }, + { name = "rich" }, + { name = "shellingham" }, ] sdist = { url = "https://files.pythonhosted.org/packages/f5/24/cb09efec5cc954f7f9b930bf8279447d24618bb6758d4f6adf2574c41780/typer-0.24.1.tar.gz", hash = "sha256:e39b4732d65fbdcde189ae76cf7cd48aeae72919dea1fdfc16593be016256b45", size = 118613, upload-time = "2026-02-21T16:54:40.609Z" } wheels = [ @@ -11371,7 +5341,7 @@ name = "typer-slim" version = "0.24.0" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "typer", version = "0.24.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "typer", marker = "extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/a7/a7/e6aecc4b4eb59598829a3b5076a93aff291b4fdaa2ded25efc4e1f4d219c/typer_slim-0.24.0.tar.gz", hash = "sha256:f0ed36127183f52ae6ced2ecb2521789995992c521a46083bfcdbb652d22ad34", size = 4776, upload-time = "2026-02-16T22:08:51.2Z" } wheels = [ @@ -11423,122 +5393,13 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/39/08/aaaad47bc4e9dc8c725e68f9d04865dbcb2052843ff09c97b08904852d84/urllib3-2.6.3-py3-none-any.whl", hash = "sha256:bf272323e553dfb2e87d9bfd225ca7b0f467b919d7bbd355436d3fd37cb0acd4", size = 131584, upload-time = "2026-01-07T16:24:42.685Z" }, ] -[[package]] -name = "uvicorn" -version = "0.39.0" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", -] -dependencies = [ - { name = "click", version = "8.1.8", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "h11", marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "typing-extensions", marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/ae/4f/f9fdac7cf6dd79790eb165639b5c452ceeabc7bbabbba4569155470a287d/uvicorn-0.39.0.tar.gz", hash = "sha256:610512b19baa93423d2892d7823741f6d27717b642c8964000d7194dded19302", size = 82001, upload-time = "2025-12-21T13:05:17.973Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/6b/25/db2b1c6c35bf22e17fe5412d2ee5d3fd7a20d07ebc9dac8b58f7db2e23a0/uvicorn-0.39.0-py3-none-any.whl", hash = "sha256:7beec21bd2693562b386285b188a7963b06853c0d006302b3e4cfed950c9929a", size = 68491, upload-time = "2025-12-21T13:05:16.291Z" }, -] - [[package]] name = "uvicorn" version = "0.41.0" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.11.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.10.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.11.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.10.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", -] dependencies = [ - { name = "click", version = "8.3.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "h11", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "typing-extensions", marker = "python_full_version == '3.10.*' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "click" }, + { name = "h11" }, ] sdist = { url = "https://files.pythonhosted.org/packages/32/ce/eeb58ae4ac36fe09e3842eb02e0eb676bf2c53ae062b98f1b2531673efdd/uvicorn-0.41.0.tar.gz", hash = "sha256:09d11cf7008da33113824ee5a1c6422d89fbc2ff476540d69a34c87fab8b571a", size = 82633, upload-time = "2026-02-16T23:07:24.1Z" } wheels = [ @@ -11550,16 +5411,16 @@ name = "wandb" version = "0.25.0" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "click", version = "8.3.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "gitpython", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "packaging", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "platformdirs", version = "4.9.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "protobuf", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "pydantic", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "pyyaml", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "requests", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "sentry-sdk", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "typing-extensions", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "click" }, + { name = "gitpython" }, + { name = "packaging" }, + { name = "platformdirs" }, + { name = "protobuf" }, + { name = "pydantic" }, + { name = "pyyaml" }, + { name = "requests" }, + { name = "sentry-sdk" }, + { name = "typing-extensions" }, ] sdist = { url = "https://files.pythonhosted.org/packages/fd/60/d94952549920469524b689479c864c692ca47eca4b8c2fe3389b64a58778/wandb-0.25.0.tar.gz", hash = "sha256:45840495a288e34245d69d07b5a0b449220fbc5b032e6b51c4f92ec9026d2ad1", size = 43951335, upload-time = "2026-02-13T00:17:45.515Z" } wheels = [ @@ -11588,9 +5449,9 @@ name = "webdataset" version = "1.0.2" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "braceexpand", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "numpy", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "pyyaml", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "braceexpand" }, + { name = "numpy" }, + { name = "pyyaml" }, ] sdist = { url = "https://files.pythonhosted.org/packages/5a/3a/68800d92e065cf4750ebecf973b13979c0c929b439e1293012938862038d/webdataset-1.0.2.tar.gz", hash = "sha256:7f0498be827cfa46cc5430a58768a24e2c6a410676a61be1838f53d61afdaab4", size = 80090, upload-time = "2025-06-19T23:26:21.945Z" } wheels = [ @@ -11615,191 +5476,12 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/8e/9e/510086a9ed0dee3830da838f9207f5c787487813d5eb74eb19fe306e6a3e/websocket_server-0.6.4-py3-none-any.whl", hash = "sha256:aca2d8f7569c82fe3e949cbae1f9d3f3035ae15f1d4048085431c94b7dfd35be", size = 7534, upload-time = "2021-12-19T16:34:34.597Z" }, ] -[[package]] -name = "websockets" -version = "15.0.1" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", -] -sdist = { url = "https://files.pythonhosted.org/packages/21/e6/26d09fab466b7ca9c7737474c52be4f76a40301b08362eb2dbc19dcc16c1/websockets-15.0.1.tar.gz", hash = "sha256:82544de02076bafba038ce055ee6412d68da13ab47f0c60cab827346de828dee", size = 177016, upload-time = "2025-03-05T20:03:41.606Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/1e/da/6462a9f510c0c49837bbc9345aca92d767a56c1fb2939e1579df1e1cdcf7/websockets-15.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:d63efaa0cd96cf0c5fe4d581521d9fa87744540d4bc999ae6e08595a1014b45b", size = 175423, upload-time = "2025-03-05T20:01:35.363Z" }, - { url = "https://files.pythonhosted.org/packages/1c/9f/9d11c1a4eb046a9e106483b9ff69bce7ac880443f00e5ce64261b47b07e7/websockets-15.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ac60e3b188ec7574cb761b08d50fcedf9d77f1530352db4eef1707fe9dee7205", size = 173080, upload-time = "2025-03-05T20:01:37.304Z" }, - { url = "https://files.pythonhosted.org/packages/d5/4f/b462242432d93ea45f297b6179c7333dd0402b855a912a04e7fc61c0d71f/websockets-15.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:5756779642579d902eed757b21b0164cd6fe338506a8083eb58af5c372e39d9a", size = 173329, upload-time = "2025-03-05T20:01:39.668Z" }, - { url = "https://files.pythonhosted.org/packages/6e/0c/6afa1f4644d7ed50284ac59cc70ef8abd44ccf7d45850d989ea7310538d0/websockets-15.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0fdfe3e2a29e4db3659dbd5bbf04560cea53dd9610273917799f1cde46aa725e", size = 182312, upload-time = "2025-03-05T20:01:41.815Z" }, - { url = "https://files.pythonhosted.org/packages/dd/d4/ffc8bd1350b229ca7a4db2a3e1c482cf87cea1baccd0ef3e72bc720caeec/websockets-15.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4c2529b320eb9e35af0fa3016c187dffb84a3ecc572bcee7c3ce302bfeba52bf", size = 181319, upload-time = "2025-03-05T20:01:43.967Z" }, - { url = "https://files.pythonhosted.org/packages/97/3a/5323a6bb94917af13bbb34009fac01e55c51dfde354f63692bf2533ffbc2/websockets-15.0.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ac1e5c9054fe23226fb11e05a6e630837f074174c4c2f0fe442996112a6de4fb", size = 181631, upload-time = "2025-03-05T20:01:46.104Z" }, - { url = "https://files.pythonhosted.org/packages/a6/cc/1aeb0f7cee59ef065724041bb7ed667b6ab1eeffe5141696cccec2687b66/websockets-15.0.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:5df592cd503496351d6dc14f7cdad49f268d8e618f80dce0cd5a36b93c3fc08d", size = 182016, upload-time = "2025-03-05T20:01:47.603Z" }, - { url = "https://files.pythonhosted.org/packages/79/f9/c86f8f7af208e4161a7f7e02774e9d0a81c632ae76db2ff22549e1718a51/websockets-15.0.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:0a34631031a8f05657e8e90903e656959234f3a04552259458aac0b0f9ae6fd9", size = 181426, upload-time = "2025-03-05T20:01:48.949Z" }, - { url = "https://files.pythonhosted.org/packages/c7/b9/828b0bc6753db905b91df6ae477c0b14a141090df64fb17f8a9d7e3516cf/websockets-15.0.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:3d00075aa65772e7ce9e990cab3ff1de702aa09be3940d1dc88d5abf1ab8a09c", size = 181360, upload-time = "2025-03-05T20:01:50.938Z" }, - { url = "https://files.pythonhosted.org/packages/89/fb/250f5533ec468ba6327055b7d98b9df056fb1ce623b8b6aaafb30b55d02e/websockets-15.0.1-cp310-cp310-win32.whl", hash = "sha256:1234d4ef35db82f5446dca8e35a7da7964d02c127b095e172e54397fb6a6c256", size = 176388, upload-time = "2025-03-05T20:01:52.213Z" }, - { url = "https://files.pythonhosted.org/packages/1c/46/aca7082012768bb98e5608f01658ff3ac8437e563eca41cf068bd5849a5e/websockets-15.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:39c1fec2c11dc8d89bba6b2bf1556af381611a173ac2b511cf7231622058af41", size = 176830, upload-time = "2025-03-05T20:01:53.922Z" }, - { url = "https://files.pythonhosted.org/packages/9f/32/18fcd5919c293a398db67443acd33fde142f283853076049824fc58e6f75/websockets-15.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:823c248b690b2fd9303ba00c4f66cd5e2d8c3ba4aa968b2779be9532a4dad431", size = 175423, upload-time = "2025-03-05T20:01:56.276Z" }, - { url = "https://files.pythonhosted.org/packages/76/70/ba1ad96b07869275ef42e2ce21f07a5b0148936688c2baf7e4a1f60d5058/websockets-15.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:678999709e68425ae2593acf2e3ebcbcf2e69885a5ee78f9eb80e6e371f1bf57", size = 173082, upload-time = "2025-03-05T20:01:57.563Z" }, - { url = "https://files.pythonhosted.org/packages/86/f2/10b55821dd40eb696ce4704a87d57774696f9451108cff0d2824c97e0f97/websockets-15.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:d50fd1ee42388dcfb2b3676132c78116490976f1300da28eb629272d5d93e905", size = 173330, upload-time = "2025-03-05T20:01:59.063Z" }, - { url = "https://files.pythonhosted.org/packages/a5/90/1c37ae8b8a113d3daf1065222b6af61cc44102da95388ac0018fcb7d93d9/websockets-15.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d99e5546bf73dbad5bf3547174cd6cb8ba7273062a23808ffea025ecb1cf8562", size = 182878, upload-time = "2025-03-05T20:02:00.305Z" }, - { url = "https://files.pythonhosted.org/packages/8e/8d/96e8e288b2a41dffafb78e8904ea7367ee4f891dafc2ab8d87e2124cb3d3/websockets-15.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:66dd88c918e3287efc22409d426c8f729688d89a0c587c88971a0faa2c2f3792", size = 181883, upload-time = "2025-03-05T20:02:03.148Z" }, - { url = "https://files.pythonhosted.org/packages/93/1f/5d6dbf551766308f6f50f8baf8e9860be6182911e8106da7a7f73785f4c4/websockets-15.0.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8dd8327c795b3e3f219760fa603dcae1dcc148172290a8ab15158cf85a953413", size = 182252, upload-time = "2025-03-05T20:02:05.29Z" }, - { url = "https://files.pythonhosted.org/packages/d4/78/2d4fed9123e6620cbf1706c0de8a1632e1a28e7774d94346d7de1bba2ca3/websockets-15.0.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8fdc51055e6ff4adeb88d58a11042ec9a5eae317a0a53d12c062c8a8865909e8", size = 182521, upload-time = "2025-03-05T20:02:07.458Z" }, - { url = "https://files.pythonhosted.org/packages/e7/3b/66d4c1b444dd1a9823c4a81f50231b921bab54eee2f69e70319b4e21f1ca/websockets-15.0.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:693f0192126df6c2327cce3baa7c06f2a117575e32ab2308f7f8216c29d9e2e3", size = 181958, upload-time = "2025-03-05T20:02:09.842Z" }, - { url = "https://files.pythonhosted.org/packages/08/ff/e9eed2ee5fed6f76fdd6032ca5cd38c57ca9661430bb3d5fb2872dc8703c/websockets-15.0.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:54479983bd5fb469c38f2f5c7e3a24f9a4e70594cd68cd1fa6b9340dadaff7cf", size = 181918, upload-time = "2025-03-05T20:02:11.968Z" }, - { url = "https://files.pythonhosted.org/packages/d8/75/994634a49b7e12532be6a42103597b71098fd25900f7437d6055ed39930a/websockets-15.0.1-cp311-cp311-win32.whl", hash = "sha256:16b6c1b3e57799b9d38427dda63edcbe4926352c47cf88588c0be4ace18dac85", size = 176388, upload-time = "2025-03-05T20:02:13.32Z" }, - { url = "https://files.pythonhosted.org/packages/98/93/e36c73f78400a65f5e236cd376713c34182e6663f6889cd45a4a04d8f203/websockets-15.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:27ccee0071a0e75d22cb35849b1db43f2ecd3e161041ac1ee9d2352ddf72f065", size = 176828, upload-time = "2025-03-05T20:02:14.585Z" }, - { url = "https://files.pythonhosted.org/packages/51/6b/4545a0d843594f5d0771e86463606a3988b5a09ca5123136f8a76580dd63/websockets-15.0.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:3e90baa811a5d73f3ca0bcbf32064d663ed81318ab225ee4f427ad4e26e5aff3", size = 175437, upload-time = "2025-03-05T20:02:16.706Z" }, - { url = "https://files.pythonhosted.org/packages/f4/71/809a0f5f6a06522af902e0f2ea2757f71ead94610010cf570ab5c98e99ed/websockets-15.0.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:592f1a9fe869c778694f0aa806ba0374e97648ab57936f092fd9d87f8bc03665", size = 173096, upload-time = "2025-03-05T20:02:18.832Z" }, - { url = "https://files.pythonhosted.org/packages/3d/69/1a681dd6f02180916f116894181eab8b2e25b31e484c5d0eae637ec01f7c/websockets-15.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0701bc3cfcb9164d04a14b149fd74be7347a530ad3bbf15ab2c678a2cd3dd9a2", size = 173332, upload-time = "2025-03-05T20:02:20.187Z" }, - { url = "https://files.pythonhosted.org/packages/a6/02/0073b3952f5bce97eafbb35757f8d0d54812b6174ed8dd952aa08429bcc3/websockets-15.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e8b56bdcdb4505c8078cb6c7157d9811a85790f2f2b3632c7d1462ab5783d215", size = 183152, upload-time = "2025-03-05T20:02:22.286Z" }, - { url = "https://files.pythonhosted.org/packages/74/45/c205c8480eafd114b428284840da0b1be9ffd0e4f87338dc95dc6ff961a1/websockets-15.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0af68c55afbd5f07986df82831c7bff04846928ea8d1fd7f30052638788bc9b5", size = 182096, upload-time = "2025-03-05T20:02:24.368Z" }, - { url = "https://files.pythonhosted.org/packages/14/8f/aa61f528fba38578ec553c145857a181384c72b98156f858ca5c8e82d9d3/websockets-15.0.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:64dee438fed052b52e4f98f76c5790513235efaa1ef7f3f2192c392cd7c91b65", size = 182523, upload-time = "2025-03-05T20:02:25.669Z" }, - { url = "https://files.pythonhosted.org/packages/ec/6d/0267396610add5bc0d0d3e77f546d4cd287200804fe02323797de77dbce9/websockets-15.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:d5f6b181bb38171a8ad1d6aa58a67a6aa9d4b38d0f8c5f496b9e42561dfc62fe", size = 182790, upload-time = "2025-03-05T20:02:26.99Z" }, - { url = "https://files.pythonhosted.org/packages/02/05/c68c5adbf679cf610ae2f74a9b871ae84564462955d991178f95a1ddb7dd/websockets-15.0.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:5d54b09eba2bada6011aea5375542a157637b91029687eb4fdb2dab11059c1b4", size = 182165, upload-time = "2025-03-05T20:02:30.291Z" }, - { url = "https://files.pythonhosted.org/packages/29/93/bb672df7b2f5faac89761cb5fa34f5cec45a4026c383a4b5761c6cea5c16/websockets-15.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:3be571a8b5afed347da347bfcf27ba12b069d9d7f42cb8c7028b5e98bbb12597", size = 182160, upload-time = "2025-03-05T20:02:31.634Z" }, - { url = "https://files.pythonhosted.org/packages/ff/83/de1f7709376dc3ca9b7eeb4b9a07b4526b14876b6d372a4dc62312bebee0/websockets-15.0.1-cp312-cp312-win32.whl", hash = "sha256:c338ffa0520bdb12fbc527265235639fb76e7bc7faafbb93f6ba80d9c06578a9", size = 176395, upload-time = "2025-03-05T20:02:33.017Z" }, - { url = "https://files.pythonhosted.org/packages/7d/71/abf2ebc3bbfa40f391ce1428c7168fb20582d0ff57019b69ea20fa698043/websockets-15.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:fcd5cf9e305d7b8338754470cf69cf81f420459dbae8a3b40cee57417f4614a7", size = 176841, upload-time = "2025-03-05T20:02:34.498Z" }, - { url = "https://files.pythonhosted.org/packages/cb/9f/51f0cf64471a9d2b4d0fc6c534f323b664e7095640c34562f5182e5a7195/websockets-15.0.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ee443ef070bb3b6ed74514f5efaa37a252af57c90eb33b956d35c8e9c10a1931", size = 175440, upload-time = "2025-03-05T20:02:36.695Z" }, - { url = "https://files.pythonhosted.org/packages/8a/05/aa116ec9943c718905997412c5989f7ed671bc0188ee2ba89520e8765d7b/websockets-15.0.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:5a939de6b7b4e18ca683218320fc67ea886038265fd1ed30173f5ce3f8e85675", size = 173098, upload-time = "2025-03-05T20:02:37.985Z" }, - { url = "https://files.pythonhosted.org/packages/ff/0b/33cef55ff24f2d92924923c99926dcce78e7bd922d649467f0eda8368923/websockets-15.0.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:746ee8dba912cd6fc889a8147168991d50ed70447bf18bcda7039f7d2e3d9151", size = 173329, upload-time = "2025-03-05T20:02:39.298Z" }, - { url = "https://files.pythonhosted.org/packages/31/1d/063b25dcc01faa8fada1469bdf769de3768b7044eac9d41f734fd7b6ad6d/websockets-15.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:595b6c3969023ecf9041b2936ac3827e4623bfa3ccf007575f04c5a6aa318c22", size = 183111, upload-time = "2025-03-05T20:02:40.595Z" }, - { url = "https://files.pythonhosted.org/packages/93/53/9a87ee494a51bf63e4ec9241c1ccc4f7c2f45fff85d5bde2ff74fcb68b9e/websockets-15.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3c714d2fc58b5ca3e285461a4cc0c9a66bd0e24c5da9911e30158286c9b5be7f", size = 182054, upload-time = "2025-03-05T20:02:41.926Z" }, - { url = "https://files.pythonhosted.org/packages/ff/b2/83a6ddf56cdcbad4e3d841fcc55d6ba7d19aeb89c50f24dd7e859ec0805f/websockets-15.0.1-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0f3c1e2ab208db911594ae5b4f79addeb3501604a165019dd221c0bdcabe4db8", size = 182496, upload-time = "2025-03-05T20:02:43.304Z" }, - { url = "https://files.pythonhosted.org/packages/98/41/e7038944ed0abf34c45aa4635ba28136f06052e08fc2168520bb8b25149f/websockets-15.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:229cf1d3ca6c1804400b0a9790dc66528e08a6a1feec0d5040e8b9eb14422375", size = 182829, upload-time = "2025-03-05T20:02:48.812Z" }, - { url = "https://files.pythonhosted.org/packages/e0/17/de15b6158680c7623c6ef0db361da965ab25d813ae54fcfeae2e5b9ef910/websockets-15.0.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:756c56e867a90fb00177d530dca4b097dd753cde348448a1012ed6c5131f8b7d", size = 182217, upload-time = "2025-03-05T20:02:50.14Z" }, - { url = "https://files.pythonhosted.org/packages/33/2b/1f168cb6041853eef0362fb9554c3824367c5560cbdaad89ac40f8c2edfc/websockets-15.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:558d023b3df0bffe50a04e710bc87742de35060580a293c2a984299ed83bc4e4", size = 182195, upload-time = "2025-03-05T20:02:51.561Z" }, - { url = "https://files.pythonhosted.org/packages/86/eb/20b6cdf273913d0ad05a6a14aed4b9a85591c18a987a3d47f20fa13dcc47/websockets-15.0.1-cp313-cp313-win32.whl", hash = "sha256:ba9e56e8ceeeedb2e080147ba85ffcd5cd0711b89576b83784d8605a7df455fa", size = 176393, upload-time = "2025-03-05T20:02:53.814Z" }, - { url = "https://files.pythonhosted.org/packages/1b/6c/c65773d6cab416a64d191d6ee8a8b1c68a09970ea6909d16965d26bfed1e/websockets-15.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:e09473f095a819042ecb2ab9465aee615bd9c2028e4ef7d933600a8401c79561", size = 176837, upload-time = "2025-03-05T20:02:55.237Z" }, - { url = "https://files.pythonhosted.org/packages/36/db/3fff0bcbe339a6fa6a3b9e3fbc2bfb321ec2f4cd233692272c5a8d6cf801/websockets-15.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:5f4c04ead5aed67c8a1a20491d54cdfba5884507a48dd798ecaf13c74c4489f5", size = 175424, upload-time = "2025-03-05T20:02:56.505Z" }, - { url = "https://files.pythonhosted.org/packages/46/e6/519054c2f477def4165b0ec060ad664ed174e140b0d1cbb9fafa4a54f6db/websockets-15.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:abdc0c6c8c648b4805c5eacd131910d2a7f6455dfd3becab248ef108e89ab16a", size = 173077, upload-time = "2025-03-05T20:02:58.37Z" }, - { url = "https://files.pythonhosted.org/packages/1a/21/c0712e382df64c93a0d16449ecbf87b647163485ca1cc3f6cbadb36d2b03/websockets-15.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a625e06551975f4b7ea7102bc43895b90742746797e2e14b70ed61c43a90f09b", size = 173324, upload-time = "2025-03-05T20:02:59.773Z" }, - { url = "https://files.pythonhosted.org/packages/1c/cb/51ba82e59b3a664df54beed8ad95517c1b4dc1a913730e7a7db778f21291/websockets-15.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d591f8de75824cbb7acad4e05d2d710484f15f29d4a915092675ad3456f11770", size = 182094, upload-time = "2025-03-05T20:03:01.827Z" }, - { url = "https://files.pythonhosted.org/packages/fb/0f/bf3788c03fec679bcdaef787518dbe60d12fe5615a544a6d4cf82f045193/websockets-15.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:47819cea040f31d670cc8d324bb6435c6f133b8c7a19ec3d61634e62f8d8f9eb", size = 181094, upload-time = "2025-03-05T20:03:03.123Z" }, - { url = "https://files.pythonhosted.org/packages/5e/da/9fb8c21edbc719b66763a571afbaf206cb6d3736d28255a46fc2fe20f902/websockets-15.0.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ac017dd64572e5c3bd01939121e4d16cf30e5d7e110a119399cf3133b63ad054", size = 181397, upload-time = "2025-03-05T20:03:04.443Z" }, - { url = "https://files.pythonhosted.org/packages/2e/65/65f379525a2719e91d9d90c38fe8b8bc62bd3c702ac651b7278609b696c4/websockets-15.0.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:4a9fac8e469d04ce6c25bb2610dc535235bd4aa14996b4e6dbebf5e007eba5ee", size = 181794, upload-time = "2025-03-05T20:03:06.708Z" }, - { url = "https://files.pythonhosted.org/packages/d9/26/31ac2d08f8e9304d81a1a7ed2851c0300f636019a57cbaa91342015c72cc/websockets-15.0.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:363c6f671b761efcb30608d24925a382497c12c506b51661883c3e22337265ed", size = 181194, upload-time = "2025-03-05T20:03:08.844Z" }, - { url = "https://files.pythonhosted.org/packages/98/72/1090de20d6c91994cd4b357c3f75a4f25ee231b63e03adea89671cc12a3f/websockets-15.0.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:2034693ad3097d5355bfdacfffcbd3ef5694f9718ab7f29c29689a9eae841880", size = 181164, upload-time = "2025-03-05T20:03:10.242Z" }, - { url = "https://files.pythonhosted.org/packages/2d/37/098f2e1c103ae8ed79b0e77f08d83b0ec0b241cf4b7f2f10edd0126472e1/websockets-15.0.1-cp39-cp39-win32.whl", hash = "sha256:3b1ac0d3e594bf121308112697cf4b32be538fb1444468fb0a6ae4feebc83411", size = 176381, upload-time = "2025-03-05T20:03:12.77Z" }, - { url = "https://files.pythonhosted.org/packages/75/8b/a32978a3ab42cebb2ebdd5b05df0696a09f4d436ce69def11893afa301f0/websockets-15.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:b7643a03db5c95c799b89b31c036d5f27eeb4d259c798e878d6937d71832b1e4", size = 176841, upload-time = "2025-03-05T20:03:14.367Z" }, - { url = "https://files.pythonhosted.org/packages/02/9e/d40f779fa16f74d3468357197af8d6ad07e7c5a27ea1ca74ceb38986f77a/websockets-15.0.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:0c9e74d766f2818bb95f84c25be4dea09841ac0f734d1966f415e4edfc4ef1c3", size = 173109, upload-time = "2025-03-05T20:03:17.769Z" }, - { url = "https://files.pythonhosted.org/packages/bc/cd/5b887b8585a593073fd92f7c23ecd3985cd2c3175025a91b0d69b0551372/websockets-15.0.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:1009ee0c7739c08a0cd59de430d6de452a55e42d6b522de7aa15e6f67db0b8e1", size = 173343, upload-time = "2025-03-05T20:03:19.094Z" }, - { url = "https://files.pythonhosted.org/packages/fe/ae/d34f7556890341e900a95acf4886833646306269f899d58ad62f588bf410/websockets-15.0.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:76d1f20b1c7a2fa82367e04982e708723ba0e7b8d43aa643d3dcd404d74f1475", size = 174599, upload-time = "2025-03-05T20:03:21.1Z" }, - { url = "https://files.pythonhosted.org/packages/71/e6/5fd43993a87db364ec60fc1d608273a1a465c0caba69176dd160e197ce42/websockets-15.0.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f29d80eb9a9263b8d109135351caf568cc3f80b9928bccde535c235de55c22d9", size = 174207, upload-time = "2025-03-05T20:03:23.221Z" }, - { url = "https://files.pythonhosted.org/packages/2b/fb/c492d6daa5ec067c2988ac80c61359ace5c4c674c532985ac5a123436cec/websockets-15.0.1-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b359ed09954d7c18bbc1680f380c7301f92c60bf924171629c5db97febb12f04", size = 174155, upload-time = "2025-03-05T20:03:25.321Z" }, - { url = "https://files.pythonhosted.org/packages/68/a1/dcb68430b1d00b698ae7a7e0194433bce4f07ded185f0ee5fb21e2a2e91e/websockets-15.0.1-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:cad21560da69f4ce7658ca2cb83138fb4cf695a2ba3e475e0559e05991aa8122", size = 176884, upload-time = "2025-03-05T20:03:27.934Z" }, - { url = "https://files.pythonhosted.org/packages/b7/48/4b67623bac4d79beb3a6bb27b803ba75c1bdedc06bd827e465803690a4b2/websockets-15.0.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl", hash = "sha256:7f493881579c90fc262d9cdbaa05a6b54b3811c2f300766748db79f098db9940", size = 173106, upload-time = "2025-03-05T20:03:29.404Z" }, - { url = "https://files.pythonhosted.org/packages/ed/f0/adb07514a49fe5728192764e04295be78859e4a537ab8fcc518a3dbb3281/websockets-15.0.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:47b099e1f4fbc95b701b6e85768e1fcdaf1630f3cbe4765fa216596f12310e2e", size = 173339, upload-time = "2025-03-05T20:03:30.755Z" }, - { url = "https://files.pythonhosted.org/packages/87/28/bd23c6344b18fb43df40d0700f6d3fffcd7cef14a6995b4f976978b52e62/websockets-15.0.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:67f2b6de947f8c757db2db9c71527933ad0019737ec374a8a6be9a956786aaf9", size = 174597, upload-time = "2025-03-05T20:03:32.247Z" }, - { url = "https://files.pythonhosted.org/packages/6d/79/ca288495863d0f23a60f546f0905ae8f3ed467ad87f8b6aceb65f4c013e4/websockets-15.0.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d08eb4c2b7d6c41da6ca0600c077e93f5adcfd979cd777d747e9ee624556da4b", size = 174205, upload-time = "2025-03-05T20:03:33.731Z" }, - { url = "https://files.pythonhosted.org/packages/04/e4/120ff3180b0872b1fe6637f6f995bcb009fb5c87d597c1fc21456f50c848/websockets-15.0.1-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4b826973a4a2ae47ba357e4e82fa44a463b8f168e1ca775ac64521442b19e87f", size = 174150, upload-time = "2025-03-05T20:03:35.757Z" }, - { url = "https://files.pythonhosted.org/packages/cb/c3/30e2f9c539b8da8b1d76f64012f3b19253271a63413b2d3adb94b143407f/websockets-15.0.1-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:21c1fa28a6a7e3cbdc171c694398b6df4744613ce9b36b1a498e816787e28123", size = 176877, upload-time = "2025-03-05T20:03:37.199Z" }, - { url = "https://files.pythonhosted.org/packages/fa/a8/5b41e0da817d64113292ab1f8247140aac61cbf6cfd085d6a0fa77f4984f/websockets-15.0.1-py3-none-any.whl", hash = "sha256:f7a866fbc1e97b5c617ee4116daaa09b722101d4a3c170c787450ba409f9736f", size = 169743, upload-time = "2025-03-05T20:03:39.41Z" }, -] - [[package]] name = "websockets" version = "16.0" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.11.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.10.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.11.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.10.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.11.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.10.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", -] sdist = { url = "https://files.pythonhosted.org/packages/04/24/4b2031d72e840ce4c1ccb255f693b15c334757fc50023e4db9537080b8c4/websockets-16.0.tar.gz", hash = "sha256:5f6261a5e56e8d5c42a4497b364ea24d94d9563e8fbd44e78ac40879c60179b5", size = 179346, upload-time = "2026-01-10T09:23:47.181Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/20/74/221f58decd852f4b59cc3354cccaf87e8ef695fede361d03dc9a7396573b/websockets-16.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:04cdd5d2d1dacbad0a7bf36ccbcd3ccd5a30ee188f2560b7a62a30d14107b31a", size = 177343, upload-time = "2026-01-10T09:22:21.28Z" }, - { url = "https://files.pythonhosted.org/packages/19/0f/22ef6107ee52ab7f0b710d55d36f5a5d3ef19e8a205541a6d7ffa7994e5a/websockets-16.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:8ff32bb86522a9e5e31439a58addbb0166f0204d64066fb955265c4e214160f0", size = 175021, upload-time = "2026-01-10T09:22:22.696Z" }, - { url = "https://files.pythonhosted.org/packages/10/40/904a4cb30d9b61c0e278899bf36342e9b0208eb3c470324a9ecbaac2a30f/websockets-16.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:583b7c42688636f930688d712885cf1531326ee05effd982028212ccc13e5957", size = 175320, upload-time = "2026-01-10T09:22:23.94Z" }, - { url = "https://files.pythonhosted.org/packages/9d/2f/4b3ca7e106bc608744b1cdae041e005e446124bebb037b18799c2d356864/websockets-16.0-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:7d837379b647c0c4c2355c2499723f82f1635fd2c26510e1f587d89bc2199e72", size = 183815, upload-time = "2026-01-10T09:22:25.469Z" }, - { url = "https://files.pythonhosted.org/packages/86/26/d40eaa2a46d4302becec8d15b0fc5e45bdde05191e7628405a19cf491ccd/websockets-16.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:df57afc692e517a85e65b72e165356ed1df12386ecb879ad5693be08fac65dde", size = 185054, upload-time = "2026-01-10T09:22:27.101Z" }, - { url = "https://files.pythonhosted.org/packages/b0/ba/6500a0efc94f7373ee8fefa8c271acdfd4dca8bd49a90d4be7ccabfc397e/websockets-16.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:2b9f1e0d69bc60a4a87349d50c09a037a2607918746f07de04df9e43252c77a3", size = 184565, upload-time = "2026-01-10T09:22:28.293Z" }, - { url = "https://files.pythonhosted.org/packages/04/b4/96bf2cee7c8d8102389374a2616200574f5f01128d1082f44102140344cc/websockets-16.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:335c23addf3d5e6a8633f9f8eda77efad001671e80b95c491dd0924587ece0b3", size = 183848, upload-time = "2026-01-10T09:22:30.394Z" }, - { url = "https://files.pythonhosted.org/packages/02/8e/81f40fb00fd125357814e8c3025738fc4ffc3da4b6b4a4472a82ba304b41/websockets-16.0-cp310-cp310-win32.whl", hash = "sha256:37b31c1623c6605e4c00d466c9d633f9b812ea430c11c8a278774a1fde1acfa9", size = 178249, upload-time = "2026-01-10T09:22:32.083Z" }, - { url = "https://files.pythonhosted.org/packages/b4/5f/7e40efe8df57db9b91c88a43690ac66f7b7aa73a11aa6a66b927e44f26fa/websockets-16.0-cp310-cp310-win_amd64.whl", hash = "sha256:8e1dab317b6e77424356e11e99a432b7cb2f3ec8c5ab4dabbcee6add48f72b35", size = 178685, upload-time = "2026-01-10T09:22:33.345Z" }, { url = "https://files.pythonhosted.org/packages/f2/db/de907251b4ff46ae804ad0409809504153b3f30984daf82a1d84a9875830/websockets-16.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:31a52addea25187bde0797a97d6fc3d2f92b6f72a9370792d65a6e84615ac8a8", size = 177340, upload-time = "2026-01-10T09:22:34.539Z" }, { url = "https://files.pythonhosted.org/packages/f3/fa/abe89019d8d8815c8781e90d697dec52523fb8ebe308bf11664e8de1877e/websockets-16.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:417b28978cdccab24f46400586d128366313e8a96312e4b9362a4af504f3bbad", size = 175022, upload-time = "2026-01-10T09:22:36.332Z" }, { url = "https://files.pythonhosted.org/packages/58/5d/88ea17ed1ded2079358b40d31d48abe90a73c9e5819dbcde1606e991e2ad/websockets-16.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:af80d74d4edfa3cb9ed973a0a5ba2b2a549371f8a741e0800cb07becdd20f23d", size = 175319, upload-time = "2026-01-10T09:22:37.602Z" }, @@ -11840,7 +5522,7 @@ name = "werkzeug" version = "3.1.6" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "markupsafe", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "markupsafe" }, ] sdist = { url = "https://files.pythonhosted.org/packages/61/f1/ee81806690a87dab5f5653c1f146c92bc066d7f4cebc603ef88eb9e13957/werkzeug-3.1.6.tar.gz", hash = "sha256:210c6bede5a420a913956b4791a7f4d6843a43b6fcee4dfa08a65e93007d0d25", size = 864736, upload-time = "2026-02-19T15:17:18.884Z" } wheels = [ @@ -11858,9 +5540,9 @@ name = "whisper-normalizer" version = "0.1.12" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "indic-numtowords", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "more-itertools", marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "regex", version = "2026.2.19", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "indic-numtowords" }, + { name = "more-itertools" }, + { name = "regex" }, ] sdist = { url = "https://files.pythonhosted.org/packages/77/81/d4a23d67e9356f1c2d6fe9aa7e99f42078b5e3845b181412a5582f168af4/whisper_normalizer-0.1.12.tar.gz", hash = "sha256:484dcedbfeba2ee94cf9412d57ab1e66b847e91f80c15ffc4c6ab82ad5484b8c", size = 39630, upload-time = "2025-06-06T19:03:50.75Z" } wheels = [ @@ -11872,68 +5554,52 @@ name = "whisperlivekit" version = "0.2.19" source = { editable = "." } dependencies = [ - { name = "fastapi", version = "0.128.8", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "fastapi", version = "0.131.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "fastapi" }, { name = "faster-whisper" }, - { name = "huggingface-hub", version = "0.36.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "huggingface-hub", version = "1.4.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "huggingface-hub", version = "0.36.2", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "huggingface-hub", version = "1.4.1", source = { registry = "https://pypi.org/simple" }, marker = "extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, { name = "librosa" }, { name = "soundfile" }, { name = "tiktoken" }, { name = "tqdm" }, - { name = "uvicorn", version = "0.39.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "uvicorn", version = "0.41.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "websockets", version = "15.0.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "websockets", version = "16.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "uvicorn" }, + { name = "websockets" }, ] [package.optional-dependencies] cpu = [ - { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.8.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(python_full_version < '3.10' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.10.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.10.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(python_full_version >= '3.10' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torchaudio", version = "2.8.0", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(python_full_version < '3.10' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torchaudio", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torchaudio", version = "2.8.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(python_full_version < '3.10' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu') or (python_full_version >= '3.10' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu') or (python_full_version >= '3.10' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu') or (python_full_version >= '3.10' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torchaudio", version = "2.10.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.10' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torchaudio", version = "2.10.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(python_full_version >= '3.10' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.10.0", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.10.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torchaudio", version = "2.10.0", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torchaudio", version = "2.10.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] diarization-diart = [ { name = "diart" }, ] diarization-sortformer = [ - { name = "nemo-toolkit", extra = ["asr"], marker = "(python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "nemo-toolkit", extra = ["asr"], marker = "extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, ] gpu-cu129 = [ - { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.8.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.10.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.10' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.10' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.10.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(python_full_version >= '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torchaudio", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.10' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torchaudio", version = "2.8.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torchaudio", version = "2.10.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.10' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.10' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torchaudio", version = "2.10.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(python_full_version >= '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "triton", version = "3.4.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux2' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and sys_platform == 'linux2' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.10' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform == 'linux2' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.10' and sys_platform == 'linux2' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and sys_platform == 'linux2' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and sys_platform == 'linux2' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and sys_platform == 'linux2' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and sys_platform != 'linux2' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and sys_platform != 'linux2' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and sys_platform != 'linux2' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux2' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "triton", version = "3.6.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version >= '3.10' and platform_machine == 'x86_64' and sys_platform == 'linux2' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and sys_platform == 'linux2' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.10' and sys_platform == 'linux2' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and sys_platform == 'linux2' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and sys_platform == 'linux2' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and sys_platform != 'linux2' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and sys_platform != 'linux2' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and sys_platform != 'linux2' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux2' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.10.0", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.10.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torchaudio", version = "2.10.0", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torchaudio", version = "2.10.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "triton", marker = "(platform_machine == 'x86_64' and sys_platform == 'linux') or (platform_machine == 'x86_64' and sys_platform == 'linux2') or (sys_platform != 'linux' and sys_platform != 'linux2' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux2' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] sentence-tokenizer = [ { name = "mosestokenizer" }, { name = "wtpsplit" }, ] test = [ - { name = "pytest", version = "8.4.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "pytest", version = "9.0.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "pytest-asyncio", version = "1.2.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "pytest-asyncio", version = "1.3.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "pytest" }, + { name = "pytest-asyncio" }, ] translation = [ { name = "nllw" }, ] voxtral-hf = [ - { name = "mistral-common", version = "1.8.5", source = { registry = "https://pypi.org/simple" }, extra = ["audio"], marker = "(python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "mistral-common", version = "1.9.1", source = { registry = "https://pypi.org/simple" }, extra = ["audio"], marker = "(python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "transformers", version = "5.2.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "mistral-common", extra = ["audio"], marker = "(extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "transformers", version = "5.2.0", source = { registry = "https://pypi.org/simple" } }, ] [package.metadata] @@ -11974,15 +5640,6 @@ version = "2.1.1" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/f7/37/ae31f40bec90de2f88d9597d0b5281e23ffe85b893a47ca5d9c05c63a4f6/wrapt-2.1.1.tar.gz", hash = "sha256:5fdcb09bf6db023d88f312bd0767594b414655d58090fc1c46b3414415f67fac", size = 81329, upload-time = "2026-02-03T02:12:13.786Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/ca/21/293b657a27accfbbbb6007ebd78af0efa2083dac83e8f523272ea09b4638/wrapt-2.1.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7e927375e43fd5a985b27a8992327c22541b6dede1362fc79df337d26e23604f", size = 60554, upload-time = "2026-02-03T02:11:17.362Z" }, - { url = "https://files.pythonhosted.org/packages/25/e9/96dd77728b54a899d4ce2798d7b1296989ce687ed3c0cb917d6b3154bf5d/wrapt-2.1.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e1c99544b6a7d40ca22195563b6d8bc3986ee8bb82f272f31f0670fe9440c869", size = 61496, upload-time = "2026-02-03T02:12:54.732Z" }, - { url = "https://files.pythonhosted.org/packages/44/79/4c755b45df6ef30c0dd628ecfaa0c808854be147ca438429da70a162833c/wrapt-2.1.1-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:b2be3fa5f4efaf16ee7c77d0556abca35f5a18ad4ac06f0ef3904c3399010ce9", size = 113528, upload-time = "2026-02-03T02:12:26.405Z" }, - { url = "https://files.pythonhosted.org/packages/9f/63/23ce28f7b841217d9a6337a340fbb8d4a7fbd67a89d47f377c8550fa34aa/wrapt-2.1.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:67c90c1ae6489a6cb1a82058902caa8006706f7b4e8ff766f943e9d2c8e608d0", size = 115536, upload-time = "2026-02-03T02:11:54.397Z" }, - { url = "https://files.pythonhosted.org/packages/23/7b/5ca8d3b12768670d16c8329e29960eedd56212770365a02a8de8bf73dc01/wrapt-2.1.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:05c0db35ccffd7480143e62df1e829d101c7b86944ae3be7e4869a7efa621f53", size = 114716, upload-time = "2026-02-03T02:12:20.771Z" }, - { url = "https://files.pythonhosted.org/packages/c7/3a/9789ccb14a096d30bb847bf3ee137bf682cc9750c2ce155f4c5ae1962abf/wrapt-2.1.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:0c2ec9f616755b2e1e0bf4d0961f59bb5c2e7a77407e7e2c38ef4f7d2fdde12c", size = 113200, upload-time = "2026-02-03T02:12:07.688Z" }, - { url = "https://files.pythonhosted.org/packages/cf/e5/4ec3526ce6ce920b267c8d35d2c2f0874d3fad2744c8b7259353f1132baa/wrapt-2.1.1-cp310-cp310-win32.whl", hash = "sha256:203ba6b3f89e410e27dbd30ff7dccaf54dcf30fda0b22aa1b82d560c7f9fe9a1", size = 57876, upload-time = "2026-02-03T02:11:42.61Z" }, - { url = "https://files.pythonhosted.org/packages/d1/4e/661c7c76ecd85375b2bc03488941a3a1078642af481db24949e2b9de01f4/wrapt-2.1.1-cp310-cp310-win_amd64.whl", hash = "sha256:6f9426d9cfc2f8732922fc96198052e55c09bb9db3ddaa4323a18e055807410e", size = 60224, upload-time = "2026-02-03T02:11:19.096Z" }, - { url = "https://files.pythonhosted.org/packages/5f/b7/53c7252d371efada4cb119e72e774fa2c6b3011fc33e3e552cdf48fb9488/wrapt-2.1.1-cp310-cp310-win_arm64.whl", hash = "sha256:69c26f51b67076b40714cff81bdd5826c0b10c077fb6b0678393a6a2f952a5fc", size = 58645, upload-time = "2026-02-03T02:12:10.396Z" }, { url = "https://files.pythonhosted.org/packages/b8/a8/9254e4da74b30a105935197015b18b31b7a298bf046e67d8952ef74967bd/wrapt-2.1.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6c366434a7fb914c7a5de508ed735ef9c133367114e1a7cb91dfb5cd806a1549", size = 60554, upload-time = "2026-02-03T02:11:13.038Z" }, { url = "https://files.pythonhosted.org/packages/9e/a1/378579880cc7af226354054a2c255f69615b379d8adad482bfe2f22a0dc2/wrapt-2.1.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:5d6a2068bd2e1e19e5a317c8c0b288267eec4e7347c36bc68a6e378a39f19ee7", size = 61491, upload-time = "2026-02-03T02:12:56.077Z" }, { url = "https://files.pythonhosted.org/packages/dc/72/957b51c56acca35701665878ad31626182199fc4afecfe67dea072210f95/wrapt-2.1.1-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:891ab4713419217b2aed7dd106c9200f64e6a82226775a0d2ebd6bef2ebd1747", size = 113949, upload-time = "2026-02-03T02:11:04.516Z" }, @@ -12019,15 +5676,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/38/ec/67c90a7082f452964b4621e4890e9a490f1add23cdeb7483cc1706743291/wrapt-2.1.1-cp313-cp313t-win32.whl", hash = "sha256:b8af75fe20d381dd5bcc9db2e86a86d7fcfbf615383a7147b85da97c1182225b", size = 59783, upload-time = "2026-02-03T02:11:39.863Z" }, { url = "https://files.pythonhosted.org/packages/ec/08/466afe4855847d8febdfa2c57c87e991fc5820afbdef01a273683dfd15a0/wrapt-2.1.1-cp313-cp313t-win_amd64.whl", hash = "sha256:45c5631c9b6c792b78be2d7352129f776dd72c605be2c3a4e9be346be8376d83", size = 63082, upload-time = "2026-02-03T02:12:09.075Z" }, { url = "https://files.pythonhosted.org/packages/9a/62/60b629463c28b15b1eeadb3a0691e17568622b12aa5bfa7ebe9b514bfbeb/wrapt-2.1.1-cp313-cp313t-win_arm64.whl", hash = "sha256:da815b9263947ac98d088b6414ac83507809a1d385e4632d9489867228d6d81c", size = 60251, upload-time = "2026-02-03T02:11:21.794Z" }, - { url = "https://files.pythonhosted.org/packages/08/3e/144e085a4a237b60a1b41f56e8a173e5e4f21f42a201e43f8d38272b4772/wrapt-2.1.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9e03b3d486eb39f5d3f562839f59094dcee30c4039359ea15768dc2214d9e07c", size = 60552, upload-time = "2026-02-03T02:11:41.2Z" }, - { url = "https://files.pythonhosted.org/packages/69/25/576fa5d1e8c0b2657ed411b947bb50c7cc56a0a882fbd1b04574803e668a/wrapt-2.1.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:0fdf3073f488ce4d929929b7799e3b8c52b220c9eb3f4a5a51e2dc0e8ff07881", size = 61498, upload-time = "2026-02-03T02:11:26.425Z" }, - { url = "https://files.pythonhosted.org/packages/48/01/37def21f806dee9db8c12f99b872b3cdf15215bafe3919c982968134b804/wrapt-2.1.1-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:0cb4f59238c6625fae2eeb72278da31c9cfba0ff4d9cbe37446b73caa0e9bcf7", size = 113232, upload-time = "2026-02-03T02:11:52.542Z" }, - { url = "https://files.pythonhosted.org/packages/bf/ee/31dfda37ae75db11cc46634aa950c3497f7a8f987d811388bf1b11fe2f80/wrapt-2.1.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:7f794a1c148871b714cb566f5466ec8288e0148a1c417550983864b3981737cd", size = 115198, upload-time = "2026-02-03T02:12:47.185Z" }, - { url = "https://files.pythonhosted.org/packages/93/d5/43cb27a2d7142bdbe9700099e7261fdc264f63c6b60a8025dd5f8af157da/wrapt-2.1.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:95ef3866631c6da9ce1fc0f1e17b90c4c0aa6d041fc70a11bc90733aee122e1a", size = 114400, upload-time = "2026-02-03T02:12:11.736Z" }, - { url = "https://files.pythonhosted.org/packages/61/91/8429803605df5540b918fe6fc9ffc4f167270f4b7ca1f82eaf7d7b1204b6/wrapt-2.1.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:66bc1b2446f01cbbd3c56b79a3a8435bcd4178ac4e06b091913f7751a7f528b8", size = 112998, upload-time = "2026-02-03T02:11:36.233Z" }, - { url = "https://files.pythonhosted.org/packages/7e/6a/25cb316f3e8262a1626da71b2c299ae2be02fb0547028eac9aa21daeedda/wrapt-2.1.1-cp39-cp39-win32.whl", hash = "sha256:1b9e08e57cabc32972f7c956d10e85093c5da9019faa24faf411e7dd258e528c", size = 57871, upload-time = "2026-02-03T02:12:16.8Z" }, - { url = "https://files.pythonhosted.org/packages/09/69/ffd41e6149ac4bd9700552659842383f44eb96f00e03c2db433bc856bf2f/wrapt-2.1.1-cp39-cp39-win_amd64.whl", hash = "sha256:e75ad48c3cca739f580b5e14c052993eb644c7fa5b4c90aa51193280b30875ae", size = 60222, upload-time = "2026-02-03T02:12:37.727Z" }, - { url = "https://files.pythonhosted.org/packages/59/f0/1889e68a0d389d2552b9e014ed6471addcfab98f09611bac61a8d8fab223/wrapt-2.1.1-cp39-cp39-win_arm64.whl", hash = "sha256:9ccd657873b7f964711447d004563a2bc08d1476d7a1afcad310f3713e6f50f4", size = 58647, upload-time = "2026-02-03T02:11:11.236Z" }, { url = "https://files.pythonhosted.org/packages/c4/da/5a086bf4c22a41995312db104ec2ffeee2cf6accca9faaee5315c790377d/wrapt-2.1.1-py3-none-any.whl", hash = "sha256:3b0f4629eb954394a3d7c7a1c8cca25f0b07cefe6aa8545e862e9778152de5b7", size = 43886, upload-time = "2026-02-03T02:11:45.048Z" }, ] @@ -12038,16 +5686,13 @@ source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "cached-property" }, { name = "numpy" }, - { name = "onnxruntime", version = "1.20.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "onnxruntime", version = "1.24.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "onnxruntime" }, { name = "pandas" }, - { name = "scikit-learn", version = "1.6.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "scikit-learn", version = "1.7.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version == '3.10.*' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "scikit-learn", version = "1.8.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "scikit-learn" }, { name = "skops" }, { name = "tqdm" }, - { name = "transformers", version = "4.53.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "transformers", version = "5.2.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.10' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "transformers", version = "4.53.3", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "transformers", version = "5.2.0", source = { registry = "https://pypi.org/simple" }, marker = "extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/f6/f5/ffb260bc57931361f35dcf51221b23130cbd6eabb7a73bcfb6f6208526c2/wtpsplit-1.3.0.tar.gz", hash = "sha256:fee280321eed70d74f5f8f7680880cf641a05bb6f7b7fa30ff189dc12f3b2346", size = 29471, upload-time = "2024-01-22T15:28:18.974Z" } wheels = [ @@ -12060,21 +5705,6 @@ version = "3.6.0" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/02/84/30869e01909fb37a6cc7e18688ee8bf1e42d57e7e0777636bd47524c43c7/xxhash-3.6.0.tar.gz", hash = "sha256:f0162a78b13a0d7617b2845b90c763339d1f1d82bb04a4b07f4ab535cc5e05d6", size = 85160, upload-time = "2025-10-02T14:37:08.097Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/34/ee/f9f1d656ad168681bb0f6b092372c1e533c4416b8069b1896a175c46e484/xxhash-3.6.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:87ff03d7e35c61435976554477a7f4cd1704c3596a89a8300d5ce7fc83874a71", size = 32845, upload-time = "2025-10-02T14:33:51.573Z" }, - { url = "https://files.pythonhosted.org/packages/a3/b1/93508d9460b292c74a09b83d16750c52a0ead89c51eea9951cb97a60d959/xxhash-3.6.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:f572dfd3d0e2eb1a57511831cf6341242f5a9f8298a45862d085f5b93394a27d", size = 30807, upload-time = "2025-10-02T14:33:52.964Z" }, - { url = "https://files.pythonhosted.org/packages/07/55/28c93a3662f2d200c70704efe74aab9640e824f8ce330d8d3943bf7c9b3c/xxhash-3.6.0-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:89952ea539566b9fed2bbd94e589672794b4286f342254fad28b149f9615fef8", size = 193786, upload-time = "2025-10-02T14:33:54.272Z" }, - { url = "https://files.pythonhosted.org/packages/c1/96/fec0be9bb4b8f5d9c57d76380a366f31a1781fb802f76fc7cda6c84893c7/xxhash-3.6.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:48e6f2ffb07a50b52465a1032c3cf1f4a5683f944acaca8a134a2f23674c2058", size = 212830, upload-time = "2025-10-02T14:33:55.706Z" }, - { url = "https://files.pythonhosted.org/packages/c4/a0/c706845ba77b9611f81fd2e93fad9859346b026e8445e76f8c6fd057cc6d/xxhash-3.6.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:b5b848ad6c16d308c3ac7ad4ba6bede80ed5df2ba8ed382f8932df63158dd4b2", size = 211606, upload-time = "2025-10-02T14:33:57.133Z" }, - { url = "https://files.pythonhosted.org/packages/67/1e/164126a2999e5045f04a69257eea946c0dc3e86541b400d4385d646b53d7/xxhash-3.6.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:a034590a727b44dd8ac5914236a7b8504144447a9682586c3327e935f33ec8cc", size = 444872, upload-time = "2025-10-02T14:33:58.446Z" }, - { url = "https://files.pythonhosted.org/packages/2d/4b/55ab404c56cd70a2cf5ecfe484838865d0fea5627365c6c8ca156bd09c8f/xxhash-3.6.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:8a8f1972e75ebdd161d7896743122834fe87378160c20e97f8b09166213bf8cc", size = 193217, upload-time = "2025-10-02T14:33:59.724Z" }, - { url = "https://files.pythonhosted.org/packages/45/e6/52abf06bac316db33aa269091ae7311bd53cfc6f4b120ae77bac1b348091/xxhash-3.6.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:ee34327b187f002a596d7b167ebc59a1b729e963ce645964bbc050d2f1b73d07", size = 210139, upload-time = "2025-10-02T14:34:02.041Z" }, - { url = "https://files.pythonhosted.org/packages/34/37/db94d490b8691236d356bc249c08819cbcef9273a1a30acf1254ff9ce157/xxhash-3.6.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:339f518c3c7a850dd033ab416ea25a692759dc7478a71131fe8869010d2b75e4", size = 197669, upload-time = "2025-10-02T14:34:03.664Z" }, - { url = "https://files.pythonhosted.org/packages/b7/36/c4f219ef4a17a4f7a64ed3569bc2b5a9c8311abdb22249ac96093625b1a4/xxhash-3.6.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:bf48889c9630542d4709192578aebbd836177c9f7a4a2778a7d6340107c65f06", size = 210018, upload-time = "2025-10-02T14:34:05.325Z" }, - { url = "https://files.pythonhosted.org/packages/fd/06/bfac889a374fc2fc439a69223d1750eed2e18a7db8514737ab630534fa08/xxhash-3.6.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:5576b002a56207f640636056b4160a378fe36a58db73ae5c27a7ec8db35f71d4", size = 413058, upload-time = "2025-10-02T14:34:06.925Z" }, - { url = "https://files.pythonhosted.org/packages/c9/d1/555d8447e0dd32ad0930a249a522bb2e289f0d08b6b16204cfa42c1f5a0c/xxhash-3.6.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:af1f3278bd02814d6dedc5dec397993b549d6f16c19379721e5a1d31e132c49b", size = 190628, upload-time = "2025-10-02T14:34:08.669Z" }, - { url = "https://files.pythonhosted.org/packages/d1/15/8751330b5186cedc4ed4b597989882ea05e0408b53fa47bcb46a6125bfc6/xxhash-3.6.0-cp310-cp310-win32.whl", hash = "sha256:aed058764db109dc9052720da65fafe84873b05eb8b07e5e653597951af57c3b", size = 30577, upload-time = "2025-10-02T14:34:10.234Z" }, - { url = "https://files.pythonhosted.org/packages/bb/cc/53f87e8b5871a6eb2ff7e89c48c66093bda2be52315a8161ddc54ea550c4/xxhash-3.6.0-cp310-cp310-win_amd64.whl", hash = "sha256:e82da5670f2d0d98950317f82a0e4a0197150ff19a6df2ba40399c2a3b9ae5fb", size = 31487, upload-time = "2025-10-02T14:34:11.618Z" }, - { url = "https://files.pythonhosted.org/packages/9f/00/60f9ea3bb697667a14314d7269956f58bf56bb73864f8f8d52a3c2535e9a/xxhash-3.6.0-cp310-cp310-win_arm64.whl", hash = "sha256:4a082ffff8c6ac07707fb6b671caf7c6e020c75226c561830b73d862060f281d", size = 27863, upload-time = "2025-10-02T14:34:12.619Z" }, { url = "https://files.pythonhosted.org/packages/17/d4/cc2f0400e9154df4b9964249da78ebd72f318e35ccc425e9f403c392f22a/xxhash-3.6.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b47bbd8cf2d72797f3c2772eaaac0ded3d3af26481a26d7d7d41dc2d3c46b04a", size = 32844, upload-time = "2025-10-02T14:34:14.037Z" }, { url = "https://files.pythonhosted.org/packages/5e/ec/1cc11cd13e26ea8bc3cb4af4eaadd8d46d5014aebb67be3f71fb0b68802a/xxhash-3.6.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:2b6821e94346f96db75abaa6e255706fb06ebd530899ed76d32cd99f20dc52fa", size = 30809, upload-time = "2025-10-02T14:34:15.484Z" }, { url = "https://files.pythonhosted.org/packages/04/5f/19fe357ea348d98ca22f456f75a30ac0916b51c753e1f8b2e0e6fb884cce/xxhash-3.6.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:d0a9751f71a1a65ce3584e9cae4467651c7e70c9d31017fa57574583a4540248", size = 194665, upload-time = "2025-10-02T14:34:16.541Z" }, @@ -12135,21 +5765,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/19/fa/0172e350361d61febcea941b0cc541d6e6c8d65d153e85f850a7b256ff8a/xxhash-3.6.0-cp313-cp313t-win32.whl", hash = "sha256:1244460adc3a9be84731d72b8e80625788e5815b68da3da8b83f78115a40a7ec", size = 30916, upload-time = "2025-10-02T14:35:35.107Z" }, { url = "https://files.pythonhosted.org/packages/ad/e6/e8cf858a2b19d6d45820f072eff1bea413910592ff17157cabc5f1227a16/xxhash-3.6.0-cp313-cp313t-win_amd64.whl", hash = "sha256:b1e420ef35c503869c4064f4a2f2b08ad6431ab7b229a05cce39d74268bca6b8", size = 31799, upload-time = "2025-10-02T14:35:36.165Z" }, { url = "https://files.pythonhosted.org/packages/56/15/064b197e855bfb7b343210e82490ae672f8bc7cdf3ddb02e92f64304ee8a/xxhash-3.6.0-cp313-cp313t-win_arm64.whl", hash = "sha256:ec44b73a4220623235f67a996c862049f375df3b1052d9899f40a6382c32d746", size = 28044, upload-time = "2025-10-02T14:35:37.195Z" }, - { url = "https://files.pythonhosted.org/packages/03/ff/1b4bb3f397552116c1df6266c1b83a21aeeb26061ab1f462984b499a3870/xxhash-3.6.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:cc604dc06027dbeb8281aeac5899c35fcfe7c77b25212833709f0bff4ce74d2a", size = 32844, upload-time = "2025-10-02T14:36:39.157Z" }, - { url = "https://files.pythonhosted.org/packages/c1/db/27146d0bee4346a9a31f7b498a81fc02747f6f1e6c52a2e7989504278051/xxhash-3.6.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:277175a73900ad43a8caeb8b99b9604f21fe8d7c842f2f9061a364a7e220ddb7", size = 30806, upload-time = "2025-10-02T14:36:40.621Z" }, - { url = "https://files.pythonhosted.org/packages/e7/2b/4896188df564908817a75de19bf7f2384b99a75af2d528f9c49326f76458/xxhash-3.6.0-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:cfbc5b91397c8c2972fdac13fb3e4ed2f7f8ccac85cd2c644887557780a9b6e2", size = 193448, upload-time = "2025-10-02T14:36:41.797Z" }, - { url = "https://files.pythonhosted.org/packages/51/c5/be8953f62e772340319a826ce1e07489935600089756cf83b628cd36ebe3/xxhash-3.6.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:2762bfff264c4e73c0e507274b40634ff465e025f0eaf050897e88ec8367575d", size = 212547, upload-time = "2025-10-02T14:36:43.581Z" }, - { url = "https://files.pythonhosted.org/packages/51/1a/1e9f0b911d1cf00dd537c074ae3fae15b535a7f0d9e7edd42a9d2c4f78ce/xxhash-3.6.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:2f171a900d59d51511209f7476933c34a0c2c711078d3c80e74e0fe4f38680ec", size = 211309, upload-time = "2025-10-02T14:36:45.307Z" }, - { url = "https://files.pythonhosted.org/packages/63/88/b284c6a128d88dc47f201957f926e707db79fb7415a87072e15c0e490de0/xxhash-3.6.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:780b90c313348f030b811efc37b0fa1431163cb8db8064cf88a7936b6ce5f222", size = 444480, upload-time = "2025-10-02T14:36:47.226Z" }, - { url = "https://files.pythonhosted.org/packages/87/e4/798293a2bf9e4fac5f6d53ce59cba4739930778dfc6c7c73f40044ab0e6e/xxhash-3.6.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:18b242455eccdfcd1fa4134c431a30737d2b4f045770f8fe84356b3469d4b919", size = 192957, upload-time = "2025-10-02T14:36:48.968Z" }, - { url = "https://files.pythonhosted.org/packages/78/55/bfd0d7db447a927897469048b953caececa3532e743b940dd1f5c1032d24/xxhash-3.6.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:a75ffc1bd5def584129774c158e108e5d768e10b75813f2b32650bb041066ed6", size = 209850, upload-time = "2025-10-02T14:36:50.258Z" }, - { url = "https://files.pythonhosted.org/packages/31/06/d08ef9a792bfebfd2fb2bcbf04a541ad283bef74749ead6f089a0809d288/xxhash-3.6.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:1fc1ed882d1e8df932a66e2999429ba6cc4d5172914c904ab193381fba825360", size = 197342, upload-time = "2025-10-02T14:36:51.651Z" }, - { url = "https://files.pythonhosted.org/packages/7b/1a/aebf90797c94e9ca407c28e23f54d71f7149d91a93406a08a09e44d06994/xxhash-3.6.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:44e342e8cc11b4e79dae5c57f2fb6360c3c20cc57d32049af8f567f5b4bcb5f4", size = 209757, upload-time = "2025-10-02T14:36:53.009Z" }, - { url = "https://files.pythonhosted.org/packages/3c/80/799eec3d0a144dc3edf8c19b4f139c27fb923c50b34352796089ca206429/xxhash-3.6.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:c2f9ccd5c4be370939a2e17602fbc49995299203da72a3429db013d44d590e86", size = 412773, upload-time = "2025-10-02T14:36:54.691Z" }, - { url = "https://files.pythonhosted.org/packages/6a/f9/09df7545699de09219a205123b8463ce9ea83f48acc7aeeba0269507f9d3/xxhash-3.6.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:02ea4cb627c76f48cd9fb37cf7ab22bd51e57e1b519807234b473faebe526796", size = 190357, upload-time = "2025-10-02T14:36:56.363Z" }, - { url = "https://files.pythonhosted.org/packages/07/40/2f8327f94e64a3f34d6ce3347c55207c322abbc80ae486ea45df4c62e7b3/xxhash-3.6.0-cp39-cp39-win32.whl", hash = "sha256:6551880383f0e6971dc23e512c9ccc986147ce7bfa1cd2e4b520b876c53e9f3d", size = 30585, upload-time = "2025-10-02T14:36:57.664Z" }, - { url = "https://files.pythonhosted.org/packages/6a/c8/2ecbc6799be9c02e8bf7b5a66cd94832b6ac13d59808746f0d402481c6ad/xxhash-3.6.0-cp39-cp39-win_amd64.whl", hash = "sha256:7c35c4cdc65f2a29f34425c446f2f5cdcd0e3c34158931e1cc927ece925ab802", size = 31512, upload-time = "2025-10-02T14:36:58.837Z" }, - { url = "https://files.pythonhosted.org/packages/19/94/1d5459a9c587c94d7b8bcc710bd08bbfa145cbd814ebde41b48494362a21/xxhash-3.6.0-cp39-cp39-win_arm64.whl", hash = "sha256:ffc578717a347baf25be8397cb10d2528802d24f94cfc005c0e44fef44b5cdd6", size = 27878, upload-time = "2025-10-02T14:37:00.201Z" }, { url = "https://files.pythonhosted.org/packages/93/1e/8aec23647a34a249f62e2398c42955acd9b4c6ed5cf08cbea94dc46f78d2/xxhash-3.6.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl", hash = "sha256:0f7b7e2ec26c1666ad5fc9dbfa426a6a3367ceaf79db5dd76264659d509d73b0", size = 30662, upload-time = "2025-10-02T14:37:01.743Z" }, { url = "https://files.pythonhosted.org/packages/b8/0b/b14510b38ba91caf43006209db846a696ceea6a847a0c9ba0a5b1adc53d6/xxhash-3.6.0-pp311-pypy311_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:5dc1e14d14fa0f5789ec29a7062004b5933964bb9b02aae6622b8f530dc40296", size = 41056, upload-time = "2025-10-02T14:37:02.879Z" }, { url = "https://files.pythonhosted.org/packages/50/55/15a7b8a56590e66ccd374bbfa3f9ffc45b810886c8c3b614e3f90bd2367c/xxhash-3.6.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:881b47fc47e051b37d94d13e7455131054b56749b91b508b0907eb07900d1c13", size = 36251, upload-time = "2025-10-02T14:37:04.44Z" }, @@ -12168,22 +5783,6 @@ dependencies = [ ] sdist = { url = "https://files.pythonhosted.org/packages/57/63/0c6ebca57330cd313f6102b16dd57ffaf3ec4c83403dcb45dbd15c6f3ea1/yarl-1.22.0.tar.gz", hash = "sha256:bebf8557577d4401ba8bd9ff33906f1376c877aa78d1fe216ad01b4d6745af71", size = 187169, upload-time = "2025-10-06T14:12:55.963Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/d1/43/a2204825342f37c337f5edb6637040fa14e365b2fcc2346960201d457579/yarl-1.22.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:c7bd6683587567e5a49ee6e336e0612bec8329be1b7d4c8af5687dcdeb67ee1e", size = 140517, upload-time = "2025-10-06T14:08:42.494Z" }, - { url = "https://files.pythonhosted.org/packages/44/6f/674f3e6f02266428c56f704cd2501c22f78e8b2eeb23f153117cc86fb28a/yarl-1.22.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:5cdac20da754f3a723cceea5b3448e1a2074866406adeb4ef35b469d089adb8f", size = 93495, upload-time = "2025-10-06T14:08:46.2Z" }, - { url = "https://files.pythonhosted.org/packages/b8/12/5b274d8a0f30c07b91b2f02cba69152600b47830fcfb465c108880fcee9c/yarl-1.22.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:07a524d84df0c10f41e3ee918846e1974aba4ec017f990dc735aad487a0bdfdf", size = 94400, upload-time = "2025-10-06T14:08:47.855Z" }, - { url = "https://files.pythonhosted.org/packages/e2/7f/df1b6949b1fa1aa9ff6de6e2631876ad4b73c4437822026e85d8acb56bb1/yarl-1.22.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:e1b329cb8146d7b736677a2440e422eadd775d1806a81db2d4cded80a48efc1a", size = 347545, upload-time = "2025-10-06T14:08:49.683Z" }, - { url = "https://files.pythonhosted.org/packages/84/09/f92ed93bd6cd77872ab6c3462df45ca45cd058d8f1d0c9b4f54c1704429f/yarl-1.22.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:75976c6945d85dbb9ee6308cd7ff7b1fb9409380c82d6119bd778d8fcfe2931c", size = 319598, upload-time = "2025-10-06T14:08:51.215Z" }, - { url = "https://files.pythonhosted.org/packages/c3/97/ac3f3feae7d522cf7ccec3d340bb0b2b61c56cb9767923df62a135092c6b/yarl-1.22.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:80ddf7a5f8c86cb3eb4bc9028b07bbbf1f08a96c5c0bc1244be5e8fefcb94147", size = 363893, upload-time = "2025-10-06T14:08:53.144Z" }, - { url = "https://files.pythonhosted.org/packages/06/49/f3219097403b9c84a4d079b1d7bda62dd9b86d0d6e4428c02d46ab2c77fc/yarl-1.22.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:d332fc2e3c94dad927f2112395772a4e4fedbcf8f80efc21ed7cdfae4d574fdb", size = 371240, upload-time = "2025-10-06T14:08:55.036Z" }, - { url = "https://files.pythonhosted.org/packages/35/9f/06b765d45c0e44e8ecf0fe15c9eacbbde342bb5b7561c46944f107bfb6c3/yarl-1.22.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:0cf71bf877efeac18b38d3930594c0948c82b64547c1cf420ba48722fe5509f6", size = 346965, upload-time = "2025-10-06T14:08:56.722Z" }, - { url = "https://files.pythonhosted.org/packages/c5/69/599e7cea8d0fcb1694323b0db0dda317fa3162f7b90166faddecf532166f/yarl-1.22.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:663e1cadaddae26be034a6ab6072449a8426ddb03d500f43daf952b74553bba0", size = 342026, upload-time = "2025-10-06T14:08:58.563Z" }, - { url = "https://files.pythonhosted.org/packages/95/6f/9dfd12c8bc90fea9eab39832ee32ea48f8e53d1256252a77b710c065c89f/yarl-1.22.0-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:6dcbb0829c671f305be48a7227918cfcd11276c2d637a8033a99a02b67bf9eda", size = 335637, upload-time = "2025-10-06T14:09:00.506Z" }, - { url = "https://files.pythonhosted.org/packages/57/2e/34c5b4eb9b07e16e873db5b182c71e5f06f9b5af388cdaa97736d79dd9a6/yarl-1.22.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:f0d97c18dfd9a9af4490631905a3f131a8e4c9e80a39353919e2cfed8f00aedc", size = 359082, upload-time = "2025-10-06T14:09:01.936Z" }, - { url = "https://files.pythonhosted.org/packages/31/71/fa7e10fb772d273aa1f096ecb8ab8594117822f683bab7d2c5a89914c92a/yarl-1.22.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:437840083abe022c978470b942ff832c3940b2ad3734d424b7eaffcd07f76737", size = 357811, upload-time = "2025-10-06T14:09:03.445Z" }, - { url = "https://files.pythonhosted.org/packages/26/da/11374c04e8e1184a6a03cf9c8f5688d3e5cec83ed6f31ad3481b3207f709/yarl-1.22.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:a899cbd98dce6f5d8de1aad31cb712ec0a530abc0a86bd6edaa47c1090138467", size = 351223, upload-time = "2025-10-06T14:09:05.401Z" }, - { url = "https://files.pythonhosted.org/packages/82/8f/e2d01f161b0c034a30410e375e191a5d27608c1f8693bab1a08b089ca096/yarl-1.22.0-cp310-cp310-win32.whl", hash = "sha256:595697f68bd1f0c1c159fcb97b661fc9c3f5db46498043555d04805430e79bea", size = 82118, upload-time = "2025-10-06T14:09:11.148Z" }, - { url = "https://files.pythonhosted.org/packages/62/46/94c76196642dbeae634c7a61ba3da88cd77bed875bf6e4a8bed037505aa6/yarl-1.22.0-cp310-cp310-win_amd64.whl", hash = "sha256:cb95a9b1adaa48e41815a55ae740cfda005758104049a640a398120bf02515ca", size = 86852, upload-time = "2025-10-06T14:09:12.958Z" }, - { url = "https://files.pythonhosted.org/packages/af/af/7df4f179d3b1a6dcb9a4bd2ffbc67642746fcafdb62580e66876ce83fff4/yarl-1.22.0-cp310-cp310-win_arm64.whl", hash = "sha256:b85b982afde6df99ecc996990d4ad7ccbdbb70e2a4ba4de0aecde5922ba98a0b", size = 82012, upload-time = "2025-10-06T14:09:14.664Z" }, { url = "https://files.pythonhosted.org/packages/4d/27/5ab13fc84c76a0250afd3d26d5936349a35be56ce5785447d6c423b26d92/yarl-1.22.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:1ab72135b1f2db3fed3997d7e7dc1b80573c67138023852b6efb336a5eae6511", size = 141607, upload-time = "2025-10-06T14:09:16.298Z" }, { url = "https://files.pythonhosted.org/packages/6a/a1/d065d51d02dc02ce81501d476b9ed2229d9a990818332242a882d5d60340/yarl-1.22.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:669930400e375570189492dc8d8341301578e8493aec04aebc20d4717f899dd6", size = 94027, upload-time = "2025-10-06T14:09:17.786Z" }, { url = "https://files.pythonhosted.org/packages/c1/da/8da9f6a53f67b5106ffe902c6fa0164e10398d4e150d85838b82f424072a/yarl-1.22.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:792a2af6d58177ef7c19cbf0097aba92ca1b9cb3ffdd9c7470e156c8f9b5e028", size = 94963, upload-time = "2025-10-06T14:09:19.662Z" }, @@ -12248,30 +5847,5 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/e0/e5/11f140a58bf4c6ad7aca69a892bff0ee638c31bea4206748fc0df4ebcb3a/yarl-1.22.0-cp313-cp313t-win32.whl", hash = "sha256:1834bb90991cc2999f10f97f5f01317f99b143284766d197e43cd5b45eb18d03", size = 86943, upload-time = "2025-10-06T14:11:10.284Z" }, { url = "https://files.pythonhosted.org/packages/31/74/8b74bae38ed7fe6793d0c15a0c8207bbb819cf287788459e5ed230996cdd/yarl-1.22.0-cp313-cp313t-win_amd64.whl", hash = "sha256:ff86011bd159a9d2dfc89c34cfd8aff12875980e3bd6a39ff097887520e60249", size = 93715, upload-time = "2025-10-06T14:11:11.739Z" }, { url = "https://files.pythonhosted.org/packages/69/66/991858aa4b5892d57aef7ee1ba6b4d01ec3b7eb3060795d34090a3ca3278/yarl-1.22.0-cp313-cp313t-win_arm64.whl", hash = "sha256:7861058d0582b847bc4e3a4a4c46828a410bca738673f35a29ba3ca5db0b473b", size = 83857, upload-time = "2025-10-06T14:11:13.586Z" }, - { url = "https://files.pythonhosted.org/packages/94/fd/6480106702a79bcceda5fd9c63cb19a04a6506bd5ce7fd8d9b63742f0021/yarl-1.22.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:3aa27acb6de7a23785d81557577491f6c38a5209a254d1191519d07d8fe51748", size = 141301, upload-time = "2025-10-06T14:12:19.01Z" }, - { url = "https://files.pythonhosted.org/packages/42/e1/6d95d21b17a93e793e4ec420a925fe1f6a9342338ca7a563ed21129c0990/yarl-1.22.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:af74f05666a5e531289cb1cc9c883d1de2088b8e5b4de48004e5ca8a830ac859", size = 93864, upload-time = "2025-10-06T14:12:21.05Z" }, - { url = "https://files.pythonhosted.org/packages/32/58/b8055273c203968e89808413ea4c984988b6649baabf10f4522e67c22d2f/yarl-1.22.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:62441e55958977b8167b2709c164c91a6363e25da322d87ae6dd9c6019ceecf9", size = 94706, upload-time = "2025-10-06T14:12:23.287Z" }, - { url = "https://files.pythonhosted.org/packages/18/91/d7bfbc28a88c2895ecd0da6a874def0c147de78afc52c773c28e1aa233a3/yarl-1.22.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b580e71cac3f8113d3135888770903eaf2f507e9421e5697d6ee6d8cd1c7f054", size = 347100, upload-time = "2025-10-06T14:12:28.527Z" }, - { url = "https://files.pythonhosted.org/packages/bd/e8/37a1e7b99721c0564b1fc7b0a4d1f595ef6fb8060d82ca61775b644185f7/yarl-1.22.0-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:e81fda2fb4a07eda1a2252b216aa0df23ebcd4d584894e9612e80999a78fd95b", size = 318902, upload-time = "2025-10-06T14:12:30.528Z" }, - { url = "https://files.pythonhosted.org/packages/1c/ef/34724449d7ef2db4f22df644f2dac0b8a275d20f585e526937b3ae47b02d/yarl-1.22.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:99b6fc1d55782461b78221e95fc357b47ad98b041e8e20f47c1411d0aacddc60", size = 363302, upload-time = "2025-10-06T14:12:32.295Z" }, - { url = "https://files.pythonhosted.org/packages/8a/04/88a39a5dad39889f192cce8d66cc4c58dbeca983e83f9b6bf23822a7ed91/yarl-1.22.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:088e4e08f033db4be2ccd1f34cf29fe994772fb54cfe004bbf54db320af56890", size = 370816, upload-time = "2025-10-06T14:12:34.01Z" }, - { url = "https://files.pythonhosted.org/packages/6b/1f/5e895e547129413f56c76be2c3ce4b96c797d2d0ff3e16a817d9269b12e6/yarl-1.22.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:2e4e1f6f0b4da23e61188676e3ed027ef0baa833a2e633c29ff8530800edccba", size = 346465, upload-time = "2025-10-06T14:12:35.977Z" }, - { url = "https://files.pythonhosted.org/packages/11/13/a750e9fd6f9cc9ed3a52a70fe58ffe505322f0efe0d48e1fd9ffe53281f5/yarl-1.22.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:84fc3ec96fce86ce5aa305eb4aa9358279d1aa644b71fab7b8ed33fe3ba1a7ca", size = 341506, upload-time = "2025-10-06T14:12:37.788Z" }, - { url = "https://files.pythonhosted.org/packages/3c/67/bb6024de76e7186611ebe626aec5b71a2d2ecf9453e795f2dbd80614784c/yarl-1.22.0-cp39-cp39-musllinux_1_2_armv7l.whl", hash = "sha256:5dbeefd6ca588b33576a01b0ad58aa934bc1b41ef89dee505bf2932b22ddffba", size = 335030, upload-time = "2025-10-06T14:12:39.775Z" }, - { url = "https://files.pythonhosted.org/packages/a2/be/50b38447fd94a7992996a62b8b463d0579323fcfc08c61bdba949eef8a5d/yarl-1.22.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:14291620375b1060613f4aab9ebf21850058b6b1b438f386cc814813d901c60b", size = 358560, upload-time = "2025-10-06T14:12:41.547Z" }, - { url = "https://files.pythonhosted.org/packages/e2/89/c020b6f547578c4e3dbb6335bf918f26e2f34ad0d1e515d72fd33ac0c635/yarl-1.22.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:a4fcfc8eb2c34148c118dfa02e6427ca278bfd0f3df7c5f99e33d2c0e81eae3e", size = 357290, upload-time = "2025-10-06T14:12:43.861Z" }, - { url = "https://files.pythonhosted.org/packages/8c/52/c49a619ee35a402fa3a7019a4fa8d26878fec0d1243f6968bbf516789578/yarl-1.22.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:029866bde8d7b0878b9c160e72305bbf0a7342bcd20b9999381704ae03308dc8", size = 350700, upload-time = "2025-10-06T14:12:46.868Z" }, - { url = "https://files.pythonhosted.org/packages/ab/c9/f5042d87777bf6968435f04a2bbb15466b2f142e6e47fa4f34d1a3f32f0c/yarl-1.22.0-cp39-cp39-win32.whl", hash = "sha256:4dcc74149ccc8bba31ce1944acee24813e93cfdee2acda3c172df844948ddf7b", size = 82323, upload-time = "2025-10-06T14:12:48.633Z" }, - { url = "https://files.pythonhosted.org/packages/fd/58/d00f7cad9eba20c4eefac2682f34661d1d1b3a942fc0092eb60e78cfb733/yarl-1.22.0-cp39-cp39-win_amd64.whl", hash = "sha256:10619d9fdee46d20edc49d3479e2f8269d0779f1b031e6f7c2aa1c76be04b7ed", size = 87145, upload-time = "2025-10-06T14:12:50.241Z" }, - { url = "https://files.pythonhosted.org/packages/c2/a3/70904f365080780d38b919edd42d224b8c4ce224a86950d2eaa2a24366ad/yarl-1.22.0-cp39-cp39-win_arm64.whl", hash = "sha256:dd7afd3f8b0bfb4e0d9fc3c31bfe8a4ec7debe124cfd90619305def3c8ca8cd2", size = 82173, upload-time = "2025-10-06T14:12:51.869Z" }, { url = "https://files.pythonhosted.org/packages/73/ae/b48f95715333080afb75a4504487cbe142cae1268afc482d06692d605ae6/yarl-1.22.0-py3-none-any.whl", hash = "sha256:1380560bdba02b6b6c90de54133c81c9f2a453dee9912fe58c1dcced1edb7cff", size = 46814, upload-time = "2025-10-06T14:12:53.872Z" }, ] - -[[package]] -name = "zipp" -version = "3.23.0" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/e3/02/0f2892c661036d50ede074e376733dca2ae7c6eb617489437771209d4180/zipp-3.23.0.tar.gz", hash = "sha256:a07157588a12518c9d4034df3fbbee09c814741a33ff63c05fa29d26a2404166", size = 25547, upload-time = "2025-06-08T17:06:39.4Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/2e/54/647ade08bf0db230bfea292f893923872fd20be6ac6f53b2b936ba839d75/zipp-3.23.0-py3-none-any.whl", hash = "sha256:071652d6115ed432f5ce1d34c336c0adfd6a884660d1e9712a256d3d3bd4b14e", size = 10276, upload-time = "2025-06-08T17:06:38.034Z" }, -]