You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I cannot say exactly what the problem is, but when importing this library with PySide6, it causes a segfault: segmentation fault python -c "import pyqttoast"
Steps to reproduce
python -m venv .venv Create a new isolated environment
source .venv/bin/activate
pip install pyqt-toast-notification
pip install PySide6
python -c "import pyqttoast"
Strangly if I change step 4 to pip install PyQt6, it works.
I have tried this on Ubuntu 20.04 and MacOS with Python 3.12.7 and Python 3.12.6.
With version 6.7.0 of PySide6 it still works (pip install PySide6==6.7.0).
Can you please take a look at this or give a hint what this problem is?
The text was updated successfully, but these errors were encountered:
I couldn't reproduce this issue on Windows, but I'm pretty sure it was caused by a bug in PySide6 version 6.8.0, which essentially broke the star imports (e.g., from PySide6.QtCore import *). This, in turn, affected QtPy, the wrapper for PyQt and PySide, which pyqttoast is using.
You can find the Qt bug report here and the QtPy issue here.
This should be fixed in PySide6 version 6.8.0.1, but I can't verify this right now as I was unable to reproduce this issue on my operating system.
Hi,
I cannot say exactly what the problem is, but when importing this library with PySide6, it causes a segfault:
segmentation fault python -c "import pyqttoast"
Steps to reproduce
python -m venv .venv
Create a new isolated environmentsource .venv/bin/activate
pip install pyqt-toast-notification
pip install PySide6
python -c "import pyqttoast"
Strangly if I change step 4 to
pip install PyQt6
, it works.I have tried this on Ubuntu 20.04 and MacOS with Python 3.12.7 and Python 3.12.6.
With version 6.7.0 of PySide6 it still works (
pip install PySide6==6.7.0
).Can you please take a look at this or give a hint what this problem is?
The text was updated successfully, but these errors were encountered: