We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Two remarks regarding PyQt6 vs PySide6. Many thanks for the article, that was very informative!
For updating my project I was missing the pyrcc tool; this SO answer was very useful in solving this:
pyrcc
https://stackoverflow.com/a/66104738/5794048
This are the relevant changes in the makefile I'm using for this purpose:
+rccTool := $(shell qmake6 -query QT_HOST_LIBEXECS)/rcc [...] res_%.py: %.qrc - pyrcc5 -o $@ $< + $(rccTool) --generator python -o $@ $< + sed -i '0,/PySide6/s//PyQt6/' $@
In section "Converting UI files to Python", pyuic5 is mentioned where it should probably read pyuic6.
pyuic5
pyuic6
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Two remarks regarding PyQt6 vs PySide6. Many thanks for the article, that was very informative!
For updating my project I was missing the
pyrcc
tool; this SO answer was very useful in solving this:https://stackoverflow.com/a/66104738/5794048
This are the relevant changes in the makefile I'm using for this purpose:
In section "Converting UI files to Python",
pyuic5
is mentioned where it should probably readpyuic6
.The text was updated successfully, but these errors were encountered: