summaryrefslogtreecommitdiff
path: root/qutebrowser/qt.py
AgeCommit message (Collapse)Author
2021-08-26Blanket PyQt5 -> PyQt6Florian Bruhin
2021-01-30Re-add bare sip importFlorian Bruhin
According to upstream, sip should be packaged as PyQt5.sip ever since PyQt 5.11: https://www.riverbankcomputing.com/static/Docs/PyQt5/incompatibilities.html#pyqt-v5-11 Since support for PyQt 5.11 was dropped for v2.0.0, importing from the old name was dropped in bff1b2a7d063f9093a50c8ed3ed94b777735e5d7 as well. However, some distributions (Ubuntu 20.04, most likely Debian, Guix, perhaps others?) package newer versions of PyQt5 while still using the old global "sip" package. Thus, this restores the (trivial) compatibility layer. Fixes #6082
2021-01-26doc: Switch URLs to httpsFlorian Bruhin
2021-01-20Bump copyright yearsFlorian Bruhin
Closes #6015
2020-11-04old qt: Remove various conditional API handlingFlorian Bruhin
2020-05-10mypy: Use explicit "type: ignore[...]" ignoresFlorian Bruhin
See #5368
2020-01-04Adjust copyrights for 2020Florian Bruhin
2019-02-22Update copyright for 2019Jay Kamat
2018-11-26mypy: Ignore ImportError handlingFlorian Bruhin
See https://github.com/python/mypy/issues/1153
2018-07-02Add a wrapper around sipFlorian Bruhin
Starting with PyQt 5.11, the sip module now is bundled with PyQt as PyQt.sip. Having a qutebrowser.qt also helps with #3625, see #995