summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2023-06-30qt6 mypy: Fix lintqt6-mypyFlorian Bruhin
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
2023-06-29mypy qt6: Ignore unreachable after rebaseFlorian Bruhin
2023-06-29qt6 mypy: Fix qt5 mypy regressionsFlorian Bruhin
2023-06-29qt6 mypy: Fix remaining issuesFlorian Bruhin
30 -> 0 errors
2023-06-29qt6 mypy: Fix typing around qenum_keyFlorian Bruhin
36 -> 30 errors
2023-06-29qt6 mypy: Add missing pyqtPropertyFlorian Bruhin
39 -> 36 errors
2023-06-29qt6 mypy: Fix first batch of various issuesFlorian Bruhin
50 -> 39 errors
2023-06-29qt6 mypy: Fix first batch of various issuesFlorian Bruhin
50 -> 40 errors
2023-06-29qt6 mypy: Disable warn-unused-ignoresFlorian Bruhin
The ignores needed between Qt 5 and Qt 6 differ. We could buy into e.g. only Qt 6 linting, but apparently e.g. VS Code also shows more errors when removing the Qt 5 type ignores. Instead, disable this for now. We might want to re-enable it when we see a major change in the mypy changelog and filter the results manually. 81 -> 50 errors
2023-06-29qt6 mypy: Lie about WebKit being available with Qt 6Florian Bruhin
185 -> 81 errors
2023-06-29qt6 mypy: Fix moved Qt 6 imports in TYPE_CHECKING blocksFlorian Bruhin
191 -> 185 errors
2023-06-29qt6 mypy: Add PyQt6-stubsFlorian Bruhin
Unfortunately there is no PyPI release yet, so install from git. 243 -> 191 errors
2023-06-29scripts: Add a help to docker generate scriptFlorian Bruhin
2023-06-26py38: Run modified pyupgradedrop-py37Florian Bruhin
Modified to leave f-strings alone for now, and also not do some other stuff we should do separately: diff --git i/pyupgrade/_main.py w/pyupgrade/_main.py index 4292174..37547b3 100644 --- i/pyupgrade/_main.py +++ w/pyupgrade/_main.py @@ -294,7 +294,8 @@ def _fix_tokens(contents_text: str) -> str: token.utf8_byte_offset == 0 and token.line < 3 and token.name == 'COMMENT' and - tokenize.cookie_re.match(token.src) + tokenize.cookie_re.match(token.src) and + False ): del tokens[i] assert tokens[i].name == 'NL', tokens[i].name diff --git i/pyupgrade/_plugins/fstrings.py w/pyupgrade/_plugins/fstrings.py index e648075..eb44c0c 100644 --- i/pyupgrade/_plugins/fstrings.py +++ w/pyupgrade/_plugins/fstrings.py @@ -88,7 +88,7 @@ def _format_params(call: ast.Call) -> set[str]: return params -@register(ast.Call) +# @register(ast.Call) def visit_Call( state: State, node: ast.Call, diff --git i/pyupgrade/_plugins/open_mode.py w/pyupgrade/_plugins/open_mode.py index a20b95c..0388781 100644 --- i/pyupgrade/_plugins/open_mode.py +++ w/pyupgrade/_plugins/open_mode.py @@ -28,7 +28,7 @@ def _permute(*args: str) -> tuple[str, ...]: return tuple(''.join(p) for s in args for p in itertools.permutations(s)) -MODE_REMOVE = frozenset(_permute('U', 'r', 'rU', 'rt')) +MODE_REMOVE = frozenset(_permute('U', 'rU', 'rt')) MODE_REPLACE_R = frozenset(_permute('Ub')) MODE_REMOVE_T = frozenset(_plus(_permute('at', 'rt', 'wt', 'xt'))) MODE_REMOVE_U = frozenset(_permute('rUb')) Then run with: git ls-files | grep -E '(\.py|misc/userscripts)' | xargs ~/tmp/pyupgrade/.venv/bin/pyupgrade --py38-plus And manually reverted some changes (e.g. it picking up bash userscripts)
2023-06-26Initial Python 3.7 dropFlorian Bruhin
2023-06-26Fix keyring changelog URLFlorian Bruhin
2023-06-26Update broken userscript linksFlorian Bruhin
2023-06-26Migrate :print --pdf to pathlibFlorian Bruhin
2023-06-26tests: Resurrect :print --pdf testFlorian Bruhin
2023-06-26Fix :print --pdf with subdirectoriesFlorian Bruhin
Fixes #5160
2023-06-26Merge pull request #7758 from qutebrowser/update-dependenciestoofar
Update dependencies
2023-06-26Pin for 3.8 and changelog URL for jaraco.functoolstoofar
2023-06-26Update dependenciesqutebrowser bot
2023-06-25Rename some qt6 FIXMEsFlorian Bruhin
Not relevant for v3 and qt6
2023-06-25Revert "Work around Python 3.12 test issues"Florian Bruhin
Fixed with newest PyQt snapshot. This reverts commit c62e9aba5b3a07c3f2d821e8efa2bfff4e572997.
2023-06-24Revert "tests: Add a test for implicit Qt init"Florian Bruhin
This reverts commit 220337f8700ecd83b53b19c7cada26acdc31e481. Has various side-effects during tests due to global state.
2023-06-24ci: Kill remaining qt6-v2 referencesFlorian Bruhin
2023-06-23tests: Add a test for implicit Qt initFlorian Bruhin
2023-06-19Merge pull request #7749 from qutebrowser/update-dependenciesFlorian Bruhin
Update dependencies
2023-06-19Update changelog URLsFlorian Bruhin
2023-06-19Update dependenciesqutebrowser bot
2023-06-16tests: Update warning ignoresFlorian Bruhin
2023-06-15scripts: Allow --pyqt-version in mkvenv with --pyqt-type wheelsFlorian Bruhin
To adjust which version to use for the smoketest
2023-06-15tests: Widen xfail range for ELF to Qt 6.6+Florian Bruhin
2023-06-15scripts: Check if PyQt wheels directory existsFlorian Bruhin
2023-06-15Update docsFlorian Bruhin