Skip to content

Commit 26ef0e6

Browse files
committed
Update MicroPython to 1.23.0
1 parent 324d1df commit 26ef0e6

File tree

9 files changed

+10
-10
lines changed

9 files changed

+10
-10
lines changed

.github/workflows/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
with:
2020
repository: jonnor/micropython
2121
path: micropython
22-
ref: emlearn-micropython-v1.22
22+
ref: emlearn-micropython-v1.23
2323
- name: Install Python dependencies
2424
run: pip install -r requirements.txt
2525
- name: Setup MicroPython X86

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
ARCH ?= x64
3-
MPY_ABI_VERSION ?= 6.2
3+
MPY_ABI_VERSION ?= 6.3
44
MPY_DIR ?= ../micropython
55
MICROPYTHON_BIN ?= micropython
66

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ It can be combined with feature preprocessing, including neural networks to addr
3838
Minimally you will need
3939

4040
- Python 3.10+ on host
41-
- MicroPython 1.22+ running onto your device
41+
- MicroPython 1.23+ running onto your device
4242

4343
#### Download repository
4444

@@ -132,7 +132,7 @@ See [MicroPython: Building native modules](https://docs.micropython.org/en/lates
132132
We assume that micropython is installed in the same place as this repository.
133133
If using another location, adjust `MPY_DIR` accordingly.
134134

135-
You should be using the latest MicroPython 1.22 (or newer).
135+
You should be using the latest MicroPython 1.23 (or newer).
136136

137137
#### Build
138138

src/emlfft/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ MPY_DIR = ../../micropython
55
ARCH = x64
66

77
# The ABI version for .mpy files
8-
MPY_ABI_VERSION := 6.2
8+
MPY_ABI_VERSION := 6.3
99

1010
# Location of emlearn library
1111
EMLEARN_DIR := $(shell python3 -c "import emlearn; print(emlearn.includedir)")

src/emliir/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ MPY_DIR = ../../micropython
55
ARCH = x64
66

77
# The ABI version for .mpy files
8-
MPY_ABI_VERSION := 6.2
8+
MPY_ABI_VERSION := 6.3
99

1010
# Location of emlearn library
1111
EMLEARN_DIR := $(shell python3 -c "import emlearn; print(emlearn.includedir)")

src/emlkmeans/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ MPY_DIR = ../../micropython
55
ARCH = x64
66

77
# The ABI version for .mpy files
8-
MPY_ABI_VERSION := 6.2
8+
MPY_ABI_VERSION := 6.3
99

1010
DIST_DIR := ../../dist/$(ARCH)_$(MPY_ABI_VERSION)
1111

src/emlneighbors/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ MPY_DIR = ../../micropython
55
ARCH = x64
66

77
# The ABI version for .mpy files
8-
MPY_ABI_VERSION := 6.2
8+
MPY_ABI_VERSION := 6.3
99

1010
# Location of emlearn library
1111
EMLEARN_DIR := $(shell python3 -c "import emlearn; print(emlearn.includedir)")

src/emltrees/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ MPY_DIR = ../../micropython
55
ARCH = x64
66

77
# The ABI version for .mpy files
8-
MPY_ABI_VERSION := 6.2
8+
MPY_ABI_VERSION := 6.3
99

1010
# Location of emlearn library
1111
EMLEARN_DIR := $(shell python3 -c "import emlearn; print(emlearn.includedir)")

src/tinymaix_cnn/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ MPY_DIR = ../../micropython
55
ARCH = x64
66

77
# The ABI version for .mpy files
8-
MPY_ABI_VERSION := 6.2
8+
MPY_ABI_VERSION := 6.3
99

1010
# Location of deps
1111
TINYMAIX_DIR := ../../dependencies/TinyMaix

0 commit comments

Comments
 (0)