Skip to content

Commit

Permalink
Fix a issue not to find pgzhelper_rw module in boot time
Browse files Browse the repository at this point in the history
  • Loading branch information
JeongJun-Lee committed Oct 9, 2024
1 parent a6fc099 commit 08d4458
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion mu/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
__title__ = "mu-editor"
__description__ = "A simple Python editor for beginner programmers."

__version__ = "1.2.5"
__version__ = "1.2.6"

__license__ = "GPL3"
__url__ = "https://github.com/mu-editor/mu"
Expand Down
4 changes: 2 additions & 2 deletions mu/wheels/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@ class WheelsBuildError(WheelsError):
# a workaround we need to manually specify it here
("ipython_genutils", ("ipython_genutils>=0.2.0",)),
# For Neopia mode
("neopia", ("neopia>=0.3.2",)),
("neopia", ("neopia>=0.3.6",)),
# For pgzero's extenstion
("pgzhelper_rw", ("pgzhelper_rw>=1.0.8",)),
("pgzhelper", ("pgzhelper_rw>=1.0.8",)),
]


Expand Down

0 comments on commit 08d4458

Please sign in to comment.