-
-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
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
Different behaviour between conda-forge and pip wheel installed packages #45
Comments
See upstream. |
Thanks @jschueller for the linux test! I just updated the title to better reflect the issue. This is not only broken for this specific use case, but very often For example, changing a label with |
Another interesting observation: Running the example with dark mode enabled works fine with pyside2 but ignores the dark mode setting when using the anaconda compiled python2. I suspect the reason for both issues is that anaconda compiles using a very old version of clang (4.0 instead of 11.0) and links against a very old OSX SDK (10.9), and both are not using Xcode to do the compiling: https://docs.conda.io/projects/conda-build/en/latest/resources/compiler-tools.html Qt builds using a newer deployment target: conda-forge/conda-forge.github.io#891 https://github.com/conda-forge/qt-feedstock/blob/master/recipe/conda_build_config.yaml So I suspect that some OSX features are "enabled" in the Qt libs, but "disabled" in the python binary as it links against an old SDK, or something like this. You can see this difference also in the python binaries:
vs
|
@rggjan
Environment:
System:
As explained here:
ContinuumIO/anaconda-issues#11297 (comment)
And mentioned on the QT bug reporter:
https://bugreports.qt.io/browse/PYSIDE-1083
The following example does not work correctly when using conda-forge but does work when using Homebrew installed Python and pip installing the pyside2 wheel:
The intended behaviour is for both buttons to decrease the size of the text but using conda-forge the left button doesn't work correctly. I have only tested this on OSX.
The text was updated successfully, but these errors were encountered: