8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c83e675 commit 9a32b33Copy full SHA for 9a32b33
mu/wheels/__init__.py
@@ -37,7 +37,13 @@ class WheelsBuildError(WheelsError):
37
# Any additional elements are passed to `pip` for specific purposes
38
#
39
mode_packages = [
40
- ("pgzero", "pgzero>=1.2.1"),
+ # pygame is a pgzero dependency, but there is currently an issue where
41
+ # pygame versions >=2.1.3 have issues in macOS 10.x, so temporarily for
42
+ # Mu release 1.2.1 pin the max version here
43
+ # https://github.com/mu-editor/mu/issues/2423
44
+ ("pygame", "pygame<2.1.3"),
45
+ ("numpy", "numpy"),
46
+ ("pgzero", "pgzero>=1.2.1", "--no-dependencies"),
47
# Flask v1 depends on Jinja v2, which doesn't have an upper bound limit in
48
# MarkupSafe, and v2.1 is not compatible with Jinja v2
49
("flask", "flask==2.0.3"),
0 commit comments