Rok Mandeljc

Results 553 comments of Rok Mandeljc

> Looks like Pyinstaller v5 was working and v6.0.0 broke it. cc [@rokm](https://github.com/rokm). I guess we should file it upstream. Does this mean that if you replace PyInstaller 6.x with...

> > Does this mean that if you replace PyInstaller 6.x with 5.13.2 in your tests above, it works? > > Yes, I tried `pip install pyinstaller==5.13.2` and with that...

> Looks like `LD_LIBRARY_PATH` is set to `/workspaces/tmp/dist/test/_internal` which breaks the Chromium launch. That's normal, though. We always set `LD_LIBRARY_PATH` to top-level application directory - the difference between v5 and...

Thanks for additional info @mxschmitt ! > > Is dist/test/_internal/libnss3.so a hard-copy of system libnss3.so, or is it a symlink to playwright/driver/package/.local-browsers/firefox-1466/firefox/libnss3.so? > > These are all copies. I did...

https://github.com/NeurodataWithoutBorders/nwb-guide/actions/runs/7409596543/job/20160174711#step:11:492 In the failed run, the `pyinstaller-hooks-contrib` hooks are not registered, because the installed `packaging` version does not meet the minimum version requirement (`pyinstaller-hooks-contrib` `2023.12` added a dependency on `packaging...

In onefile mode you have two processes: the parent that unpacks the archive, runs the child, and cleans up after child is done; and the child process that runs your...

> If I type control-C while a onefile executable is being expanded, can I disable/suppress the stack trace? Not really, because you are interrupting PyInstaller's bootstrap scripts / runtime hooks.

If you have such launch agents / daemons to bundle, what is preventing you from bundling them post-hoc, and re-signing the .app bundle? Sounds like these are unrelated to python...

> If the stated purpose of pyinstaller is to just create an exe/folder that would be fine. But it seems it's going beyond that scope by allowing to create a...

Are you running PyInstaller against the .py file instead the (modified) .spec file, and end up re-generating and overwriting the .spec file?