From 96db84a2a1dd4269648da04ec5ecc204d36a757e Mon Sep 17 00:00:00 2001 From: Max Bachmann Date: Mon, 24 Oct 2022 20:05:35 +0200 Subject: [PATCH] fix dependency name --- src/rapidfuzz/__pyinstaller/hook-rapidfuzz.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rapidfuzz/__pyinstaller/hook-rapidfuzz.py b/src/rapidfuzz/__pyinstaller/hook-rapidfuzz.py index ecc78211..c0fc0a3f 100644 --- a/src/rapidfuzz/__pyinstaller/hook-rapidfuzz.py +++ b/src/rapidfuzz/__pyinstaller/hook-rapidfuzz.py @@ -1,6 +1,6 @@ # Pyinstaller hook to successfully freeze: https://pyinstaller.readthedocs.io/en/stable/hooks.html hiddenimports = [ - "array.array", + "array", "rapidfuzz.fuzz_py", "rapidfuzz.fuzz_cpp", "rapidfuzz.utils_py",