From 694f9f3d1f52e740634efdb75fa6c7f13fbb2f38 Mon Sep 17 00:00:00 2001 From: yrriban Date: Sat, 6 Sep 2025 01:30:38 -0400 Subject: [PATCH] Tell pyinstaller to always include all of cliff. This works around problems trying to load the lister plugins, which cliff tries to find dynamically at runtime. --- pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index ff5975c..1970ebf 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -28,3 +28,6 @@ dcc = "dcc.main:main" [tool.poetry-pyinstaller-plugin.scripts] dcc = { source = "dcc/main.py", type = "onefile" } + +[tool.poetry-pyinstaller-plugin.collect] +all = ["cliff"]