summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-04-04Add back empty header indexerror workaroundfeat/remove_py36_supportJimmy
The test case on the bug works for me on py37 but CI is failing on 3.10, maybe this isn't quite the same issue. Anyway, we are getting rid of webkit soon.
2022-04-04Remove 3.6 pins from requirements files.Jimmy
Then regenerate the relevant files. Also drop dataclasses from requirements files. TODO: should we drop the dataclasses-types requirement for mypy too?
2022-04-04Drop python3.6 support.Jimmy
Commits for dropping 3.5 support to copy from: c245b7d855ccd "Initial drop of Python 3.5" ccdfb44b8568b "Drop support for Python 3.6.0" Anything needed to update regarding OS version support in doc/install.asciidoc? TODO: remove 3.6/7 annotations in requirements files and rebuild workflows: not sure I updated it right (run 5.12 with 3.7, same 18.04 OS) but 18.04 seems to have 3.7 on it too so it should work. It'll all change when we drop <5.15 anyway. Not sure what the minimum ubuntu version will be going forward. Regarding mimetype overrides (ebb3046822adb) the doctring says they can all go in 3.7 but .h5 is still missing on py39, not sure if we should care. There are a bunch of old(?) warning messages still ignored in tests/end2end/fixtures/quteprocess.py.
2022-04-03Adjust broken linkFlorian Bruhin
2022-04-03Fix some userscript syntax issuesFlorian Bruhin
Thanks to (a hacked) pyupgrade
2022-04-03Simplify some syntaxFlorian Bruhin
Found via pyupgrade
2022-04-02Actually mark qute-pass executableFlorian Bruhin
2022-04-02Update changelogFlorian Bruhin
2022-04-02Mark qute-pass as executable and add checkerFlorian Bruhin
Regressed in #7068
2022-04-01Release v2.5.0v2.5.0Florian Bruhin
2022-04-01Update changelogFlorian Bruhin
2022-04-01Update content.headers.user_agent completionsFlorian Bruhin
2022-04-01Update changelogFlorian Bruhin
2022-03-31Update changelogFlorian Bruhin
2022-03-31Merge remote-tracking branch 'origin/pr/6543'Florian Bruhin
2022-03-31Fix spellingFlorian Bruhin
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