summaryrefslogtreecommitdiff
path: root/scripts/dev/recompile_requirements.py
AgeCommit message (Collapse)Author
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-26Initial Python 3.7 dropFlorian Bruhin
2022-11-03Revert to recompile_requirements.py with set-outputFlorian Bruhin
Newlines don't work anymore, see #7459 Partially reverts 0ff0eaa, see #7439
2022-11-03ci: Get rid of set-outputFlorian Bruhin
Fixes #7439
2022-04-04Switch to Python 3.7 subprocess APIFlorian Bruhin
Follow-up for #6905
2022-04-04scripts: Handle root requirements.txt properlyFlorian Bruhin
Regressed in ac2cb6bb303ceec8429b084cdf372a6c8584d780
2022-03-30scripts: Improve orderingFlorian Bruhin
2022-03-30Add docstringFlorian Bruhin
2022-03-30scripts: Show requirement name in table outputFlorian Bruhin
2022-01-10scripts: Move changelog URLs to JSONFlorian Bruhin
2022-01-10scripts: Update cheroot changelog URLFlorian Bruhin
2022-01-04Use flake8-pytest-stylepytest-styleFlorian Bruhin
2022-01-03scripts: Update changelog URLsFlorian Bruhin
2021-12-20scripts: More version parsing in recompile_requirementsFlorian Bruhin
Required for misc_checks.py
2021-12-20scripts: Handle lines with == in marker correctlyFlorian Bruhin
2021-12-13Update changelog URLsFlorian Bruhin
2021-12-03Merge branch 'packaging-update'Florian Bruhin
# Conflicts: # misc/requirements/requirements-dev.txt
2021-12-03Update changelog URLsFlorian Bruhin
2021-12-03scripts: Handle packaging dependencies via toxFlorian Bruhin
2021-11-30Update charset_normalizer changelog URLFlorian Bruhin
2021-11-17scripts: Adjust for new typing_extensions nameFlorian Bruhin
2021-11-08scripts: Better lxml changelog URLFlorian Bruhin
2021-10-21scripts: Fix changelog URLs for realFlorian Bruhin
2021-10-21scripts: Remove old -Qt5 PyQt packagesFlorian Bruhin
2021-10-21scripts: Adjust changelog URLsFlorian Bruhin
2021-10-11scripts: Update path to flake8 release notesFlorian Bruhin
2021-10-11scripts: Add cached-property changelog URLFlorian Bruhin
2021-10-04scripts: Adjust py-filelock changelog URLFlorian Bruhin
2021-09-13scripts: Clean up pylint build filesFlorian Bruhin
2021-09-13requirements: Test --use-feature=in-tree-buildFlorian Bruhin
2021-07-19Adjust changelog URLsFlorian Bruhin
2021-06-14Add new types packages for mypyFlorian Bruhin
See http://mypy-lang.blogspot.com/2021/05/the-upcoming-switch-to-modular-typeshed.html
2021-06-14scripts: Remove apipkg from requirementsFlorian Bruhin
2021-06-07scripts: Add changelog URL for DeprecatedFlorian Bruhin
2021-05-18Update changelog URLs for pallets projectsFlorian Bruhin
2021-03-29scripts: Fix manhole changelog URLFlorian Bruhin
2021-03-12Update changelog URLsFlorian Bruhin
2021-03-12scripts: Filter out some noise in recompile_requirementsFlorian Bruhin
2021-03-12Make recompile_requirements run on WindowsFlorian Bruhin
2021-03-11Update requirements for PyQt 5.15.4Florian Bruhin
2021-03-01scripts: Fix recompile_requirements with == in env markerFlorian Bruhin
2021-02-25requirements: Add importlib-metadataFlorian Bruhin
2021-02-25requirements: Initial upgrade to PyQt5 5.15.3Florian Bruhin
2021-02-22Fix lintFlorian Bruhin
2021-02-22Fix lintFlorian Bruhin
2021-02-22Update changelog linksFlorian Bruhin
2021-02-15scripts: Update changelog URLsFlorian Bruhin
2021-02-08scripts: Add new changelog URLsFlorian Bruhin
2021-02-05Remove old changelog URLsFlorian Bruhin
2021-01-27scripts: Handle ignored dependencies in recompile_requirementsFlorian Bruhin