From 75a29aca377120ad95e1dcf3b2758c691c17bef5 Mon Sep 17 00:00:00 2001 From: Carlos Pereira Atencio Date: Thu, 28 Dec 2023 03:10:38 +0000 Subject: [PATCH] wheel: Remove tmp workaround with pygame version. As discussed in https://github.com/mu-editor/mu/issues/2423 pygame version 2.5.1 should have fixed the issue with older macOS releases. So, we can remove this max version clamp. --- mu/wheels/__init__.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/mu/wheels/__init__.py b/mu/wheels/__init__.py index f967d47bd..f731cc480 100644 --- a/mu/wheels/__init__.py +++ b/mu/wheels/__init__.py @@ -37,11 +37,7 @@ class WheelsBuildError(WheelsError): # Any additional elements are passed to `pip` for specific purposes # mode_packages = [ - # pygame is a pgzero dependency, but there is currently an issue where - # pygame versions >=2.1.3 have issues in macOS 10.x, so temporarily for - # Mu release 1.2.1 pin the max version here - # https://github.com/mu-editor/mu/issues/2423 - ("pgzero", ("pgzero>=1.2.1", "pygame<2.1.3")), + ("pgzero", ("pgzero>=1.2.1",)), # Lock Werkzeug to < 3.0.0: import flask fails, otherwise. ("flask", ("flask==2.0.3", "Werkzeug<3.0.0")), # The version of ipykernel here should match to the version used by