Allow PyQt5 versions < 5.11
See original GitHub issueThank you for your amazing work. I’m currently using a modified version of pytest-qt
which allows usage with PyQt 5.9.2
So far I haven’t had any issues. Where does the restriction for 5.11
come from? Is it arbitrary because you didn’t test any lower version number with your package or is there an actual known problem with lower version numbers?
If it is arbitrary, I would like to help getting 5.9 “greenlighted”.
Issue Analytics
- State:
- Created 2 years ago
- Comments:6 (4 by maintainers)
Top Results From Across the Web
Qt for Python 5.11 released
We are happy to announce the first official release of Qt for Python (Pyside2). As the version tag implies, it is based on...
Read more >PyQt5 - PyPI
PyQt5 is released under the GPL v3 license and under a commercial license that allows for the development of proprietary applications.
Read more >Can't install PyQt5 using pip - Stack Overflow
I use Ubuntu 18.04. My python version is: Python 2.7.15rc1. I have already installed python3-pip and tried to install PyQt5 using pip3 install ......
Read more >How to install PyQt5 (5.11.2) with from source for python2.7
Install Qt5, QtWebEngine and QtSvg (for creating a browser). sudo apt-get install -y msgpack-python python-gevent python-dev build-essential libgl1-mesa-dev ...
Read more >PyQt - Browse /PyQt5/PyQt-5.11.3 at SourceForge.net
Get a live and in-depth view of your network, infrastructure, applications, end-user experience, machine learning models and more. Correlate ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
There are various reasons:
sip
module changed (that one would be easy, sure)Cool, thanks. You will need to use
pytest-qt<4
, since4.0.0
introduced the breaking changes for PyQt 5.9. 👍