Liam Howatt

Results 238 comments of Liam Howatt

Should we bump the Python version to match the one that comes with Ubuntu 24.04? Currently CI uses 3.10, but Ubuntu 24.04 ships with 3.12. Running ./test/main.py under 3.12 emits...

Thanks. After [this](https://github.com/lvgl/lv_micropython/pull/83) gets merged in `lv_micropython`, we can try this ```diff diff --git a/.github/workflows/build_micropython.yml b/.github/workflows/build_micropython.yml index 1d54351d9..c80208d2f 100644 --- a/.github/workflows/build_micropython.yml +++ b/.github/workflows/build_micropython.yml @@ -47,7 +47,7 @@ jobs: - name:...

@lhdjply it was merged. You can update `build_micropython.yml` and the CI may pass :) thanks

I could not work around the issue, despite trying. Sorry, I think I was too quick to suggest using IDF 5.2.2. I'm trying to remember why the build broke when...

Ah right. But even after fixing that, getting IDF v5.2.2 to work will still be a problem. And IDF v4.4 seemed to not work with python 3.12.

We could stick with IDF v4.4, and install both python 3.10 and 3.12 with 3.10 as the default so that the IDF part uses 3.10, and then our own python...

Sorry for not being able to solve the IDF v5.2.2 PR. I tried before you opened that PR, and you got farther than me. For the current CI issue, the...

The python that the ESP32 CMake build system is using is the wrong python to run the json generator somehow. I've tried a few different things in my own branch...

Nice! Heads up, looks like it's executing the tests in the "Build" task too. I think you meant to just have them run in the "Run tests" task. How come...

Please see this comment: https://github.com/lvgl/lvgl/pull/6264#pullrequestreview-2086224969 > Test cases still being run in the CI build task 😉 should only be in the CI test task. The tests are running in...