From df3451e779422729a55e74359854d36c7d4c2ab4 Mon Sep 17 00:00:00 2001 From: Ben Beasley Date: Sun, 7 Apr 2024 03:34:34 -0400 Subject: [PATCH] Update the typer[all] dependency to typer-slim[standard] (#1287) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit In 0.12.1, Typer was significantly reorganized. - `typer-slim` is the library (for `import typer`) - `typer-slim[standard]` adds optional dependencies (currently `rich` and `shellingham`, basically equivalent to the old `typer[all]`) - `typer-cli` is the `typer` command-line tool - `typer` is now basically a metapackage that brings in *all of the above*, and it no longer has an `all` extra Pip will warn about this and proceed, ``` WARNING: typer 0.12.1 does not provide the extra 'all' ``` but there are other tools that will fail hard when asked to resolve a (now) nonexistent extra. Since this project doesn’t need the `typer` command-line tool, it looks like changing the dependency to `typer-slim[standard]` is the best way forward. See https://typer.tiangolo.com/release-notes/#0121 and tiangolo/typer#785 for further discussion and details. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 4d228361..d0e2bf1c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -60,7 +60,7 @@ test = [ "types-Pillow", "types-humanfriendly", ] -watcher = ["watchdog>=1.0.2", "typer[all]", "python-dotenv"] +watcher = ["watchdog>=1.0.2", "typer-slim[standard]", "python-dotenv"] webservice = ["Flask>=2.0.1"] [project.scripts]