summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-03-31Fix lint / changelogFlorian Bruhin
2022-03-31readline: Properly delete first characterFlorian Bruhin
2022-03-31Add :rl-rubout and :rl-filename-ruboutFlorian Bruhin
Closes #4561
2022-03-31readline: Allow passing args to cmdutils.registerFlorian Bruhin
2022-03-31Restore deleted testFlorian Bruhin
2022-03-31Merge remote-tracking branch 'origin/pr/6599'Florian Bruhin
2022-03-31Update changelogFlorian Bruhin
2022-03-31Test system-data dir with flatpakFlorian Bruhin
2022-03-31Merge remote-tracking branch 'origin/pr/6946'Florian Bruhin
2022-03-31Update changelogFlorian Bruhin
2022-03-31Merge remote-tracking branch 'origin/pr/6957'Florian Bruhin
2022-03-31Add missing spaceFlorian Bruhin
2022-03-31Merge remote-tracking branch 'origin/pr/6996'Florian Bruhin
2022-03-31Update docsFlorian Bruhin
2022-03-31Merge remote-tracking branch 'origin/pr/7010'Florian Bruhin
2022-03-31Update changelogFlorian Bruhin
2022-03-31Remove double ifFlorian Bruhin
2022-03-31Merge remote-tracking branch 'origin/pr/7014'Florian Bruhin
2022-03-31Update changelogFlorian Bruhin
2022-03-31Merge remote-tracking branch 'origin/pr/7048'Florian Bruhin
2022-03-31Update changelogFlorian Bruhin
2022-03-31Merge remote-tracking branch 'origin/pr/7068'Florian Bruhin
2022-03-31Update changelogFlorian Bruhin
2022-03-31cast userscript: Fix error messageFlorian Bruhin
Avoid SC2140 shellcheck false-positive: https://github.com/koalaman/shellcheck/issues/2479 Also remove extra quoting
2022-03-31Merge remote-tracking branch 'origin/pr/7074'Florian Bruhin
2022-03-30Restore lost coverage pragmaFlorian Bruhin
2022-03-30Fix test_editorFlorian Bruhin
2022-03-30Update changelogFlorian Bruhin
2022-03-30Pre-resolve guiprocess paths (work around Qt's CVE-2022-25255)Florian Bruhin
2022-03-30Adjust mailinglist URLs to new providerFlorian Bruhin
See https://listi.jpberlin.de/pipermail/qutebrowser/2022-March/000885.html
2022-03-30Update importlib.resources annotation commentsFlorian Bruhin
A zipfile.Path *is* a Traversable
2022-03-30Fix version specifiers for importlib-metadataFlorian Bruhin
2022-03-30version: Always prefer builtin importlib.metadataFlorian Bruhin
If we have a builtin importlib.metadata (Python 3.8+) and the importlib_metadata backport installed, we preferred the backport. However, the version.py tests do the opposite: They only mock the builtin if it is available. This did lead to failing tests if the backport was installed in an environment where the builtin was available too. Since we don't need any specialized functionality (only reading the version), we can prefer the builtin no matter whether a backport is available or not.
2022-03-30Do the Python 3.6 dance for palletsFlorian Bruhin
2022-03-30Update dependenciesqutebrowser bot
2022-03-30scripts: Improve orderingFlorian Bruhin
2022-03-30Add docstringFlorian Bruhin
2022-03-30requirements: Remove --use-feature=in-tree-buildFlorian Bruhin
This is the default now according to pip output
2022-03-30scripts: Show requirement name in table outputFlorian Bruhin
2022-03-30Merge branch 'update-dependencies'Florian Bruhin
2022-03-30pylint: Enable private_import extensionFlorian Bruhin
2022-03-30scripts: Update pyroma changelog URLFlorian Bruhin
2022-03-30ci: Switch to FORCE_COLORFlorian Bruhin
pytest understands that since a while: https://pytest.org/en/7.0.x/reference/reference.html#environment-variables and other tools are adopting it: https://github.com/sphinx-doc/sphinx/pull/10260
2022-03-30Do the Python 3.6 dance for Jinja2Florian Bruhin
2022-03-29Do the Python 3.6 dance for importlib-resourcesFlorian Bruhin
2022-03-29Fix mypyFlorian Bruhin
2022-03-29mypy: Fix typing around importlib.resourcesFlorian Bruhin
mypy was correct here: _path doesn't always return a pathlib.Path, it's why we need to handle that in _glob().
2022-03-29scripts: Add changelog URL for dillFlorian Bruhin
2022-03-29pylint: Work around Python 3.10 pathlib issueFlorian Bruhin
See https://github.com/PyCQA/pylint/issues/5783
2022-03-29pylint: Disable unnecessary-ellipsis for testsFlorian Bruhin
See https://github.com/PyCQA/pylint/issues/6036 and https://github.com/PyCQA/pylint/issues/6037