From 4b94e353a9d7879d1a5578fba27ce647706395a3 Mon Sep 17 00:00:00 2001 From: Marcel Martin Date: Wed, 13 Sep 2023 14:37:59 +0200 Subject: [PATCH] This should make the PyInstaller binary (.exe) work again --- .github/workflows/pyinstaller.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pyinstaller.yml b/.github/workflows/pyinstaller.yml index 0466480c..6ff5482b 100644 --- a/.github/workflows/pyinstaller.yml +++ b/.github/workflows/pyinstaller.yml @@ -23,7 +23,7 @@ jobs: run: | echo "from cutadapt.__main__ import main_cli" > script.py echo "sys.exit(main_cli())" >> script.py - venv/Scripts/pyinstaller -F -n cutadapt script.py + venv/Scripts/pyinstaller -F --hidden-import=cutadapt._match_tables -n cutadapt script.py - name: Run it run: dist/cutadapt.exe --version - name: Test multicore