Skip to content

Commit 900f3be

Browse files
committed
updating MicroPython version
1 parent d9177f8 commit 900f3be

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

builder/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -482,7 +482,7 @@ def get_micropython():
482482
'git submodule update --init --depth=1 -- lib/micropython',
483483
]
484484
print()
485-
print('collecting MicroPython 1.26.1')
485+
print('collecting MicroPython 1.27.0 (master)')
486486
result, _ = spawn(cmd_, spinner=True)
487487
if result != 0:
488488
sys.exit(result)

builder/esp32.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
scrub_build_folder
1717
)
1818

19-
IDF_VER = '5.4.0'
19+
IDF_VER = '5.4.2'
2020

2121

2222
def get_partition_file_name(otp):
@@ -158,7 +158,7 @@ def get_espidf():
158158
]
159159
]
160160
print()
161-
print(f'collecting ESP-IDF v5.4.0')
161+
print(f'collecting ESP-IDF v5.4.2')
162162
print('this might take a while...')
163163
result, _ = spawn(cmd, spinner=True)
164164
if result != 0:
@@ -943,7 +943,7 @@ def submodules():
943943
['./install.sh', 'all']
944944
]
945945

946-
print(f'setting up ESP-IDF v5.4.0')
946+
print(f'setting up ESP-IDF v5.4.2')
947947
print('this might take a while...')
948948
env = {k: v for k, v in os.environ.items()}
949949
env['IDF_PATH'] = os.path.abspath(idf_path)
@@ -1570,7 +1570,7 @@ def compile(*args): # NOQA
15701570

15711571
espressif_path = os.path.expanduser('~/.espressif')
15721572

1573-
for ver in ('3.8', '3.9', '3.10', '3.11', '3.12', '3.13'):
1573+
for ver in ('3.8', '3.9', '3.10', '3.11', '3.12', '3.13', '3.14'):
15741574
python_path = (
15751575
f'{espressif_path}/python_env/'
15761576
f'idf{IDF_VER[:-2]}_py{ver}_env/bin'

0 commit comments

Comments
 (0)