Skip to content

Commit c15136d

Browse files
committed
bump micropython version to 1.22.2
1 parent c11be6b commit c15136d

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

builder/__init__.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,12 @@ def get_micropython():
131131
if result != 0:
132132
sys.exit(result)
133133

134+
cmd_ = ['cd lib/micropython && git checkout v1.22.2 && git pull']
135+
136+
result, _ = spawn(cmd_, spinner=True)
137+
if result != 0:
138+
sys.exit(result)
139+
134140

135141
def get_pycparser():
136142
cmd_ = [

0 commit comments

Comments
 (0)