python - Is PySide 1.2.4 stable? The newest release is crashing with an odd Error -


i spent week debugging problem got python crash (not give scripting error, literally crash vm) due random error.

after tracking days using procdump, found pyside 1.2.4 causing problem. stable version unstable?

according pip standards, stable release has put when normal installation command given, hence

pip install pyside 

should provide stable version. spent week debugging problem got python crash (not give scripting error, literally crash vm) due random error. after tracking days using procdump, found pyside causing problem. following bug extracted dump file using windbg:

enter image description here

i went there report issue, , got shocked find current standard version provided pip/pypi (1.2.4) not stable! it's dev version!!! check screenshot reporting website:

enter image description here

of course pyside not free commercial purposes, using people's resources test dev version without telling them? unethical , don't want others fall in same trap had. please aware of this!

hence, when install pyside pip, use command:

pip install pyside==1.2.2 

version 1.2.2 seems stable no such problems. don't forget uninstall current version of pyside before installing new 1 using command.

hope helps.


Comments

Popular posts from this blog

sequelize.js - Sequelize group by with association includes id -

android - Robolectric "INTERNET permission is required" -

java - Android raising EPERM (Operation not permitted) when attempting to send UDP packet after network connection -