From af01cba5f72a5a5365a06fe1a9fce332539da3d1 Mon Sep 17 00:00:00 2001 From: SomberNight Date: Tue, 10 Jun 2025 18:33:29 +0000 Subject: [PATCH] fix macos build: pyinstaller.spec: copy_metadata was undefined regression from https://github.com/spesmilo/electrum/commit/aecc22dc081339fb570a7a3b09f3e47bf9ea5021 --- contrib/osx/pyinstaller.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/osx/pyinstaller.spec b/contrib/osx/pyinstaller.spec index c3472883e..5591e0399 100644 --- a/contrib/osx/pyinstaller.spec +++ b/contrib/osx/pyinstaller.spec @@ -1,6 +1,6 @@ # -*- mode: python -*- -from PyInstaller.utils.hooks import collect_data_files, collect_submodules, collect_dynamic_libs +from PyInstaller.utils.hooks import collect_data_files, collect_submodules, collect_dynamic_libs, copy_metadata import sys, os