question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

PySide6.1.0 and PySide6.1.1 still doesn't work, PySide 6.1.2 will be needed

See original GitHub issue
  • Nuitka version, full Python version and Platform (Windows, OSX, Linux …)
0.6.15rc6
Python: 3.9.1 (tags/v3.9.1:1e5d33e, Dec  7 2020, 17:08:21) [MSC v.1927 64 bit (AMD64)]
Executable: D:\Programme\Python\Kanzlei\Contacts4Snom\venv\Scripts\python.exe
OS: Windows
Arch: x86_64

Not shure where it comes from

I wroten an application (with pyside6 6.1.0) that uses multiple event-slots:

		self.actionBeenden.triggered.connect(self.MainWindow.close)
		self.pushButton.clicked.connect(self.KonfigurationSpeichern)
		self.comboBox.currentIndexChanged.connect(self.GeanderterDienst)
		self.actionLizenz.triggered.connect(self.Lizenzdialog.show)
		self.Lizenz_Deaktivieren.clicked.connect(self.deactivateLicense)
		self.pushButton_3.clicked.connect(self.GoogleLogin)
		self.pushButton_4.clicked.connect(self.GoogleLogin)
		self.pushButton_2.clicked.connect(self.KontakteErzeugen)
		self.statusBar.messageChanged.connect(self.KontaktErzeugenStatus)
		self.pushButton_5.clicked.connect(self.Microsoft365Login)
		self.lineEdit.textChanged.connect(self.RequierementCheck)

There seem to multiple issues with them:

  • they seem to call random functions: my setup codes calls a function KonfigurationLesen(), which doesn’t call KonfigurationSpeichern(), but in compiled mode it does?
  • the function RequierementCheck calls self.KonfigurationSpeichern(silent=True) , but the paramter silent=True will not be handed over, instead the default parameter silent=false is used

Issue Analytics

  • State:closed
  • Created 2 years ago
  • Comments:24 (23 by maintainers)

github_iconTop GitHub Comments

2reactions
kayhayencommented, May 20, 2021

@ctismer I tried to bisect the other day, and I am suprised, but this is actually not working with my patch applied. My mental sanity is taking a severe hit, because I backported the exact same code for PySide2 and there the issue doesn’t arise. So no regression on your side. I will track this down on current “dev” and open a PySide issue once I have a patch. It seems something there only worked by accident or whatever, but I will only really know once I find it.

0reactions
kayhayencommented, Jul 1, 2021

Thanks for helping with this, I am closing it then.

Read more comments on GitHub >

github_iconTop Results From Across the Web

pyside6-designer does not work for PySide6 >= 6.1.1 with pyenv
The problem exists only for PySide6 >= 6.1.1. I have been following this guide: https://doc.qt.io/qtforpython/quickstart.html ...
Read more >
PySide6 - PyPI
PySide6 versions following 6.0 use a C++ parser based on Clang. The Clang library (C-bindings), version 13.0 or higher is required for building....
Read more >
Pyside6 paint event doesn't work on QMainWindow when ...
I'm using python and pyside 6: when i use no .ui file it works fine. Whenever i load the ui file and try...
Read more >
PySide2 vs PySide6: What are the differences, and is it time to ...
What are the differences, and is it time to upgrade?. If you are already developing Python GUI apps with PySide2, you might be...
Read more >
Python error ERROR Could not find a version that satisfies the ...
+1 vote. I am trying to install PyQt4 on my python 2.7. ... It's not working even i installed pyqt5 but getting same...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found