From 3376a44576f97dd3e797559a20b2e150a3e3d91a Mon Sep 17 00:00:00 2001 From: Steve Grubb Date: Mon, 3 Aug 2026 16:09:27 -0400 Subject: [PATCH] Remove typer constraint Hugging Face Hub 1.21 requires Typer >=0.20, while the OVMS Kokoro requirements want Typer <0.12. These cannot coexist. The prior commit message says: "spaCy imports typer.main, which was removed in Typer 0.12." Typer 0.12.0 did have a packaging bug that could leave module files missing while upgrading from an older Typer. It was fixed in Typer 0.12.1. It was not an intentional removal of typer.main. Typer issue #790 (https://github.com/fastapi/typer/issues/790) --- demos/common/export_models/requirements.txt | 4 ---- 1 file changed, 4 deletions(-) diff --git a/demos/common/export_models/requirements.txt b/demos/common/export_models/requirements.txt index 8fe9e2bb96..54c76788cf 100644 --- a/demos/common/export_models/requirements.txt +++ b/demos/common/export_models/requirements.txt @@ -15,8 +15,4 @@ sentence_transformers==5.3.0 sentencepiece # Required by: transformers` torchvision requests -# Kokoro TTS export (text2speech --model_type kokoro). -# typer must stay <0.12 because kokoro -> misaki -> spacy imports `typer.main`, -# which was removed in typer 0.12. kokoro==0.9.4 -typer<0.12