summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2023-06-30Fix lint/test issuesqt6-autoselectFlorian Bruhin
2023-06-30tox: Inherit setenv instead of duplicatingFlorian Bruhin
2023-06-30qt6: Reduce duplicate misc_checks.py codeFlorian Bruhin
2023-06-30qt6: Make sure KeyInfo never has ints as membersFlorian Bruhin
This used to be possible in some situations and was handled in somewhat unexpected places (e.g. .to_qt()). Instead, we now assume that KeyInfo is always "clean", and we handle the conversion from an int to a Qt.Key elsewhere. This only seems to affect tests, since otherwise we already made sure we get a Qt.Key and Qt.KeyboardModifier(s) e.g. in .from_event().
2023-06-30qt6: Update selection commentFlorian Bruhin
2023-06-30scripts: Upgrade to Qt 6Florian Bruhin
Using qutebrowser.qt where we import from qutebrowser already anyways
2023-06-30Update userscripts to PyQt6Florian Bruhin
2023-06-30qt 6: Document purpose of wrappersFlorian Bruhin
2023-06-30qt6: Keep pylint import order checks disabledFlorian Bruhin
2023-06-30qt6: Widen env auto testsFlorian Bruhin
2023-06-30Update vultureFlorian Bruhin
2023-06-30ci: Fix issuesFlorian Bruhin
2023-06-30Fix mypyFlorian Bruhin
2023-06-30More qt 6 toolingFlorian Bruhin
2023-06-30qt6: Add a Qt 5 warningFlorian Bruhin
Closes #7742
2023-06-30qt6: Switch most tooling/linting to Qt 6Florian Bruhin
Only mypy missing now...
2023-06-30qt 6: Update mkvenv.py for Qt 6 by defaultFlorian Bruhin
2023-06-30qt 6: Update changelogFlorian Bruhin
2023-06-30qt: Introduce _WRAPPER_OVERRIDE for packagersFlorian Bruhin
2023-06-30qt: Switch to autoselection of Qt backend by defaultFlorian Bruhin
2023-06-30qt: blackifyFlorian Bruhin
2023-06-30Remove new modelineFlorian Bruhin
2023-06-30typing updates after Python 3.7 dropFlorian Bruhin
2023-06-30Fix test_qtargs on Qt 5Florian Bruhin
2023-06-30Merge pull request #7761 from pylbrecht/remove-vim-modelinesFlorian Bruhin
Remove vim modelines in favor of .editorconfig
2023-06-30Enable replaceAll quirk by defaultFlorian Bruhin
See #7639
2023-06-30Add experimental_web_platform_features settingFlorian Bruhin
Closes #7639
2023-06-30Revert "Fix bad keyutils merge"Florian Bruhin
This reverts commit 127a4bf7561a97ac31c23ccfd6120bf4c5769cc5.
2023-06-30Remove --enable-webengine-inspectorFlorian Bruhin
Fixes #7134
2023-06-30Fix bad keyutils mergeFlorian Bruhin
2023-06-30Also move Pyright / VS Code to Qt 6Florian Bruhin
See #7370
2023-06-30qt6 mypy: Fix lintqt6-mypyFlorian Bruhin
2023-06-30Add misc check to prevent vim modelinesPhilipp Albrecht
We deprecated vim modelines. The introduced misc check will keep old pull requests from re-introducing vim modelines.
2023-06-30Remove vim modelinesPhilipp Albrecht
We're deprecating vim modelines in favor of `.editorconfig`. Removing vim modelines could be done using two one-liners. Most of the vim modelines were followed by an empty line, so this one-liner took care of these ones: ```sh rg '^# vim: .+\n\n' -l | xargs sed -i '/^# vim: /,+1d' ``` Then some of the vim modelines were followed by a pylint configuration line, so running this one-liner afterwards took care of that: ```sh rg '^# vim:' -l | xargs sed -i '/^# vim: /d' ```
2023-06-30Remove vim modeline hint from contributing docsPhilipp Albrecht
We're deprecating vim modelines in favor of `.editorconfig`.
2023-06-30Remove modeline pylint checkerPhilipp Albrecht
We're deprecating vim modelines in favor of `.editorconfig`.
2023-06-30mypy: Make misc.sql fully typedFlorian Bruhin
That was an oversight apparently
2023-06-30mypy: Turn on disallow_untyped_defs by defaultFlorian Bruhin
Done by removing the existing config and doing: tox -e mypy-pyqt6 | \ grep -F .py | \ cut -d: -f1 | \ sort | \ uniq | \ sed 's/\.py//' | \ sed 's/\//./g' | \ while read line; do \ echo "[mypy-$line]\ndisallow_untyped_defs = False\n" \ done >> .mypy.ini This means we now enforce type annotations for all new modules. We can still add sections for upcoming PR merges where this is a problem. Closes #7409
2023-06-30mypy: Install more typeshed typesFlorian Bruhin
2023-06-30qt6 mypy: Fix lintFlorian Bruhin
2023-06-30qt6 mypy: Fix broken assertFlorian Bruhin
2023-06-29Fix lintFlorian Bruhin
2023-06-29qt6 mypy: Fix lintFlorian Bruhin
2023-06-29qt6 mypy: Enable on CIFlorian Bruhin
2023-06-29qt6 mypy: Fix remaining unused-ignore issuesFlorian Bruhin
2023-06-29qt6 mypy: Fix PyQt5 QUrl issues with a more clever approachFlorian Bruhin
2023-06-29qt6 mypy: Remove PyQt5 type ignoresFlorian Bruhin
2023-06-29qt6 mypy: Fix handling of AbstractTab.is_deleted()Florian Bruhin
2023-06-29qt6 mypy: Don't attempt to type-check OpenGL functionsFlorian Bruhin
2023-06-29qt6 mypy: Fix unused-ignores with mypy-pyqt5Florian Bruhin