Kevin Turcios

Results 124 comments of Kevin Turcios

another question, i see playwright downloads ffmpeg when you do a bare `playwright install`, i would like to know when ffmpeg is used or not so that we also know...

for nuitka it won't be needed as of it's next pre-release i opened a PR and added an implicit dependency nuitka needs, now it builds it's exes just fine. https://github.com/Nuitka/Nuitka/pull/2536#issue-1985187965...

this is only reproducible in python 3.12, 3.11 and below work fine

solved for 2.4 already. thanks @kayhayen !

the reproducer doesn't reproduce, i get this ``` ❯ python main.py pygame-ce 2.5.0 (SDL 2.30.3, Python 3.11.9) Traceback (most recent call last): File "C:\Users\NuitkaDevOps\Desktop\Nuitka-Issues\pyg_ce\main.py", line 17, in pygame.mixer.music.load("MIDI_sample.mid") pygame.error: mixer...

i'm not using nuitka at all there, simply doing `python main.py` ``` Administrator in Desktop\Nuitka-Issues\_pygrepro via 🐍 v3.11.9 (venv) ❯ type main.py import pygame import pygame.freetype import pygame.midi pygame.init() pygame.freetype.init()...

in which case i suggest using ```yaml - module-name: 'pygame' data-files: patterns: - 'freesansbold.ttf' dlls: - from_filenames: prefixes: - 'lib' - 'SDL2' - 'freetype' - 'portmidi' options: checks: - description:...

doing a quick scan for DLLs in pygame lists all these DLLs ``` freetype.dll libjpeg-62.dll libogg-0.dll libopus-0.dll libopusfile-0.dll libpng16-16.dll libtiff-5.dll libwavpack-1.dll libwebp-7.dll libwebpdemux-2.dll libxmp.dll portmidi.dll SDL2.dll SDL2_image.dll SDL2_mixer.dll SDL2_ttf.dll ```...

in which case ```yaml - module-name: 'pygame' data-files: patterns: - 'freesansbold.ttf' dlls: - from_filenames: relative_path: '.' prefixes: - '' options: checks: - description: 'PyGame is a GUI framework' macos_bundle: 'recommend'...

> but I don't see much of a choice here that will satisfy everyone. the empty relative dir and prefix will pull in *all* DLLs within the module. that should...