summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2023-07-20Move disable_qt_msghandler() to qtlogPhilipp Albrecht
2023-07-20Move shutdown_log() to qtlogPhilipp Albrecht
2023-07-20Add qtlog modulePhilipp Albrecht
2023-07-20Merge pull request #7785 from qutebrowser/update-dependenciesFlorian Bruhin
Update dependencies
2023-07-20tox: Update VIRTUALENV_PIPFlorian Bruhin
2023-07-20Update dependenciesqutebrowser bot
2023-07-20Fix lintFlorian Bruhin
2023-07-19Improve handling of Optional with new PyQt stubsFlorian Bruhin
2023-07-19Initial upgrade to new PyQt6 stubsFlorian Bruhin
2023-07-13Include qutebrowser *and* qutebrowser.*Philipp Albrecht
2023-07-13Use explicit includePhilipp Albrecht
2023-07-13Map qutebrowser package to qutebrowser dirPhilipp Albrecht
2023-07-13Specify qutebrowser package via where=Philipp Albrecht
2023-07-13mypy: Remvoe some more type ignoresFlorian Bruhin
Fixed in latest PyQt snapshots
2023-07-12Include namespace packages in setuptools buildPhilipp Albrecht
Building qutebrowser showed some warnings as the following: ``` /tmp/build-env-4jb2oh0t/lib/python3.8/site-packages/setuptools/command/build_py.py:201: _Warning: Package 'qutebrowser.html' is absent from the `packages` configuration. !! ******************************************************************************** ############################ # Package would be ignored # ############################ Python recognizes 'qutebrowser.html' as an importable package[^1], but it is absent from setuptools' `packages` configuration. This leads to an ambiguous overall configuration. If you want to distribute this package, please make sure that 'qutebrowser.html' is explicitly added to the `packages` configuration field. Alternatively, you can also rely on setuptools' discovery methods (for example by using `find_namespace_packages(...)`/`find_namespace:` instead of `find_packages(...)`/`find:`). You can read more about "package discovery" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/package_discovery.html If you don't want 'qutebrowser.html' to be distributed and are already explicitly excluding 'qutebrowser.html' via `find_namespace_packages(...)/find_namespace` or `find_packages(...)/find`, you can try to use `exclude_package_data`, or `include-package-data=False` in combination with a more fine grained `package-data` configuration. You can read more about "package data files" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/datafiles.html [^1]: For Python, any directory (with suitable naming) can be imported, even if it does not contain any `.py` files. On the other hand, currently there is no concept of package data directory, all directories are treated like packages. ******************************************************************************** !! ``` Using `find_namespace_packages()` as suggested in the setuptools docs[1] solved the issue. [1] https://setuptools.pypa.io/en/latest/userguide/package_discovery.html#finding-namespace-packages
2023-07-10Merge pull request #7764 from pylbrecht:search-vanishedFlorian Bruhin
Don't show warning when jumping to next/prev search result without matches
2023-07-10Fix lint after dropping PyQt6-stubsFlorian Bruhin
2023-07-10Update changelog URLsFlorian Bruhin
2023-07-10Merge remote-tracking branch 'origin/update-dependencies'Florian Bruhin
2023-07-10Update dependenciesqutebrowser bot
2023-07-09mypy: Switch to upstream stubs for PyQt6Florian Bruhin
They are getting much better
2023-07-05Add aria-haspopup to hint selectorsFlorian Bruhin
Helps on https://www.keepersecurity.com/ - see https://www.reddit.com/r/qutebrowser/comments/14qtlc8/no_hint_on_drop_down_list/
2023-07-05Merge pull request #7766 from arza-zara/toxFlorian Bruhin
tox: Fix vulture-pyqtlink environment
2023-07-05tox: Fix vulture-pyqtlink environmentarza
2023-07-05Don't show warning when jumping to next/prev without matchesPhilipp Albrecht
2023-07-03ci: Keep WebKit on life support for longerFlorian Bruhin
2023-07-03Merge pull request #7763 from qutebrowser/update-dependenciestoofar
Update dependencies
2023-07-03Add exceptiongroup changelogtoofar
Ref #7763
2023-07-03Update dependenciesqutebrowser bot
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