Maarten Breddels
Maarten Breddels
@mariobuikhuizen will take a look at this
Integration tests are failing locally with: ``` > class StepKwds(TypedDict, closed=True, total=False): # type: ignore[call-arg] E TypeError: _TypedDictMeta.__new__() got an unexpected keyword argument 'closed' ../../../miniconda3/envs/dev314/lib/python3.14/site-packages/altair/vegalite/v5/schema/_config.py:6491: TypeError ``` This is an...
We'll have to wait for a 3.14 release from altair I think https://github.com/vega/altair/issues/3895
windows failure on 3.14: ``` :491: Warning: Numpy built with MINGW-W64 on Windows 64 bits is experimental, and only available for testing. You are advised not to use it for...
Ah yes, i'm all for integrating the fixes, before officially "supporting 3.14". Do you want to cherry-pick that fix into a new branch, so we can continue in this branch...
Thanks for looking into this 🙏
It was indeed fixed by 0.26.2, I just added support in pycafe for that, and this game seems to run now: https://py.cafe/maartenbreddels/solara-pygame-breakpong Thanks, and sorry for not checking the latest...
Going a but off topic here: But I don't think I can load that from pycafe. i.e. https://cdn.jsdelivr.net/pyodide/v0.26.0/full/pyodide.js loads https://unpkg.com/[email protected]/pyodide.js load (it seems unpkg cdn supports alphas?) But https://cdn.jsdelivr.net/pyodide/v0.27.0-alpha.2/full/pyodide.js does...
Calling that does not give an error, but calling ``` import pygame.display pygame.display.init() ``` Gives an error `screen is not define` Trying to execute: ``` var _emscripten_get_screen_size = (width,height)=>{ HEAP32[width...
Next error is a complaints about a cursor, which may be related to https://github.com/emscripten-core/emscripten/issues/16492 That can be worked around with: ``` sdl2Canvas.style = {}; ``` Not making much progress now,...