From 16adfddd3788f23fa0f34e8cddbe15cc2df7d561 Mon Sep 17 00:00:00 2001 From: Glyph Date: Wed, 19 Jan 2022 12:02:38 -0800 Subject: [PATCH] update pygame recipe to remove missing icon the tiff file is no longer present after pygame 2.1.1 --- py2app/recipes/pygame.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py2app/recipes/pygame.py b/py2app/recipes/pygame.py index 2c23979..f7a5574 100644 --- a/py2app/recipes/pygame.py +++ b/py2app/recipes/pygame.py @@ -9,5 +9,5 @@ def check(cmd, mf): def addpath(f): return os.path.join(os.path.dirname(m.filename), f) - RESOURCES = ["freesansbold.ttf", "pygame_icon.tiff", "pygame_icon.icns"] + RESOURCES = ["freesansbold.ttf", "pygame_icon.icns"] return {"loader_files": [("pygame", map(addpath, RESOURCES))]}