Rok Mandeljc

Results 553 comments of Rok Mandeljc

What version of PySide6 are you using? Your example seems to work as expected in my Windows 10 VirtualBox VM. That's using PySide6 6.5.1, where I need to enable `qt.webenginecontext.debug`...

Hmm, I think with 6.2.0, the hook would have raised an error: https://github.com/pyinstaller/pyinstaller/blob/49fe7b17c8aa51b06bbd51a60fb06dca88b4eb09/PyInstaller/hooks/hook-PySide6.QtWebEngineCore.py#L19-L20 But if I remove the check, it seems to work as expected in the Windows VM (the...

Nah, that's unrelated. What's happening is that this import sequence: ```python import matplotlib_inline import pyqtgraph.canvas ``` crashes python process during analysis. Do you use `IPython`, `jupyter`, and `matplotlib_inline` in your...

If not, try adding `--exclude IPython` to your PyInstaller command (in lieu of removing unnecessary packages from the environment).

@jdegenstein Thanks for additional info! Looks like the problem caused by `pyqtgraph` hook recursing into `pyqtgraph.examples` sub-package while scanning for submodules; and loading `pyqtgraph.examples` triggers instantiation of `QApplication`, which would...

> Perhaps. But there are also many libraries which do it right, for which this would be useful. I was talking about an opt-in per-package flag, not a change of...

> That flag helps, thanks, but it's still not fully what I want. Unless I have misunderstood it, it includes `package_name.py` or the contents of `package_name/`, where `package_name` is an...

Suppose we'll see how the `modulegraph` replacement deals with meta path finders, and try to sort this out once we make the transition. As far as my understanding of it...

I can confirm that compiler detection fails in "x64 Native Tools Command Prompt for VS 2022". When we added support for arm64, we put it first in the list -...