Rok Mandeljc

Results 553 comments of Rok Mandeljc

I think the problem is that `sounddevice` prefers system-installed library over the copy that it bundles in the wheel in the `_sounddevice_data` directory, based on their search code: https://github.com/spatialaudio/python-sounddevice/blob/91171852b9d955e3abcb58f9b78f2868db40c8be/sounddevice.py#L61-L92 The...

> It appears the error will only showup if I use codesign? Yes, that makes sense. Because you are signing with a "real" codesign identity, all libraries that application is...

This comes up every now and then (see for example #7879), but as far as I'm concerned, the answer remains no. The bootloader code is complicated enough as it is.

If you open `build//Analysis-00.toc` and search for `pywintypes310.dll`, which two locations were the two copies of `pywintypes310.dll` collected from?

And the other one (the correct one) is from `envs\py310\Lib\site-packages\pywin32_system32`? Can you determine where ` 'd:\mambaforge\Library\bin\pywintypes310.dll'` came from? Is this the base environment that has pywin32 conda package installed? How...

Hmm, so it turns out that anaconda `pywin32` package installs *three copies* of `pywintypes3X.dll` and `pythoncom3X.dll`, and places them in: - Library/bin - Lib/site-packages/pywin32_system32 - Lib/site-packages/win32 Which is actually what...

> > Hmm, so it turns out that anaconda pywin32 package installs three copies of pywintypes3X.dll and pythoncom3X.dll, and places them in: > > Can't we call this Conda's bug...

OK, so installing `spyder` in base seems to pull in `pywin32`. But why do the paths of base end up in the active env? If you run ``` import os...

> Wouldn't it be as easy as making the user able to append to `pyinstaller.depend.dylib._warning_suppressions`? It would - we'd just need to pass the list to the binary-analysis subprocess so...

That's a good point - especially the non-portability of the .spec. We could probably re-purpose the existing [`escape_win_filepath`](https://github.com/pyinstaller/pyinstaller/blob/89cb2043d390f21c556102a4e2356e45e0bb6cbc/PyInstaller/building/makespec.py#L32-L34) to replace the `\` with `/` instead of `\\`. This is also...