loading up the forgejo repo on tangled to test page performance
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add `make poetry-update`, upgrade `djlint` (#25399)

[updates](https://github.com/silverwind/updates) now supports poetry as
well so we can use it for a new `make poetry-update` to update all
poetry dependencies.

authored by

silverwind and committed by
GitHub
02ef14be ddf96f68

+18 -11
+8 -1
Makefile
··· 926 926 927 927 .PHONY: npm-update 928 928 npm-update: node-check | node_modules 929 - npx updates -cu 929 + npx updates -u -f package.json 930 930 rm -rf node_modules package-lock.json 931 931 npm install --package-lock 932 932 @touch node_modules 933 + 934 + .PHONY: poetry-update 935 + poetry-update: node-check | node_modules 936 + npx updates -u -f pyproject.toml 937 + rm -rf .venv poetry.lock 938 + poetry install 939 + @touch .venv 933 940 934 941 .PHONY: fomantic 935 942 fomantic:
+4 -4
package-lock.json
··· 77 77 "stylelint-declaration-strict-value": "1.9.2", 78 78 "stylelint-stylistic": "0.4.2", 79 79 "svgo": "3.0.2", 80 - "updates": "14.2.4", 80 + "updates": "14.2.8", 81 81 "vitest": "0.32.2" 82 82 }, 83 83 "engines": { ··· 10363 10363 } 10364 10364 }, 10365 10365 "node_modules/updates": { 10366 - "version": "14.2.4", 10367 - "resolved": "https://registry.npmjs.org/updates/-/updates-14.2.4.tgz", 10368 - "integrity": "sha512-r54h4Q12lUAmQ9dENy7BnY22AnTfW4YGEZw73gv6RvNEWgcZ3qS88jPLc1ckPAzt/8TPKWwLkSVpbEpgGwglJw==", 10366 + "version": "14.2.8", 10367 + "resolved": "https://registry.npmjs.org/updates/-/updates-14.2.8.tgz", 10368 + "integrity": "sha512-Ca+M1vKKBBRiQSi3yrN8OdncmP9osIf1oJM/HpEIHeDvyGLs/noTi9X2LS4zl50VXRTSCqssF5CZN0XWzSPigg==", 10369 10369 "dev": true, 10370 10370 "bin": { 10371 10371 "updates": "bin/updates.js"
+1 -1
package.json
··· 76 76 "stylelint-declaration-strict-value": "1.9.2", 77 77 "stylelint-stylistic": "0.4.2", 78 78 "svgo": "3.0.2", 79 - "updates": "14.2.4", 79 + "updates": "14.2.8", 80 80 "vitest": "0.32.2" 81 81 }, 82 82 "browserslist": [
+4 -4
poetry.lock
··· 42 42 43 43 [[package]] 44 44 name = "djlint" 45 - version = "1.31.0" 45 + version = "1.31.1" 46 46 description = "HTML Template Linter and Formatter" 47 47 optional = false 48 48 python-versions = ">=3.8.0,<4.0.0" 49 49 files = [ 50 - {file = "djlint-1.31.0-py3-none-any.whl", hash = "sha256:2b9200c67103b79835b7547ff732e910888d1f0ef684f5b329eb64b14d09c046"}, 51 - {file = "djlint-1.31.0.tar.gz", hash = "sha256:8acb4b751b429c5aabb1aef5b6007bdf53224eceda25c5fbe04c42cc57c0a7ba"}, 50 + {file = "djlint-1.31.1-py3-none-any.whl", hash = "sha256:9b2e2fc3a059a8e5a62f309edea15c1aeee331a279ab2699b9fb51a31d8c0934"}, 51 + {file = "djlint-1.31.1.tar.gz", hash = "sha256:a11739e2f919f760b3986eb13d06e00171f3bd342b8d88e9bd914a4260eaa8ce"}, 52 52 ] 53 53 54 54 [package.dependencies] ··· 328 328 [metadata] 329 329 lock-version = "2.0" 330 330 python-versions = "^3.8" 331 - content-hash = "22c4af11eadd8784b613951d6160d67be0f33500238a450741c3d75beb218dad" 331 + content-hash = "f03ad8e7c4f6e797ac3c04630db8cc16438cd59642653c26fd401633cd62d696"
+1 -1
pyproject.toml
··· 8 8 python = "^3.8" 9 9 10 10 [tool.poetry.group.dev.dependencies] 11 - djlint = "1.31.0" 11 + djlint = "1.31.1" 12 12 13 13 [tool.djlint] 14 14 profile="golang"