summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsilverwind <me@silverwind.io>2023-06-26 23:14:00 +0200
committerGitHub <noreply@github.com>2023-06-26 21:14:00 +0000
commit02ef14bea23bf72b4c3989280bcbe63ff8397c99 (patch)
tree8a69a7481e7d6dd4c5b520cb2dcd54999ac83ff9
parentddf96f68cc99ad8002a92660372f38b654eb6221 (diff)
downloadgitea-02ef14bea23bf72b4c3989280bcbe63ff8397c99.tar.gz
gitea-02ef14bea23bf72b4c3989280bcbe63ff8397c99.zip
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.
-rw-r--r--Makefile9
-rw-r--r--package-lock.json8
-rw-r--r--package.json2
-rw-r--r--poetry.lock8
-rw-r--r--pyproject.toml2
5 files changed, 18 insertions, 11 deletions
diff --git a/Makefile b/Makefile
index e9c908de4a..e2b7013d2f 100644
--- a/Makefile
+++ b/Makefile
@@ -926,11 +926,18 @@ node_modules: package-lock.json
.PHONY: npm-update
npm-update: node-check | node_modules
- npx updates -cu
+ npx updates -u -f package.json
rm -rf node_modules package-lock.json
npm install --package-lock
@touch node_modules
+.PHONY: poetry-update
+poetry-update: node-check | node_modules
+ npx updates -u -f pyproject.toml
+ rm -rf .venv poetry.lock
+ poetry install
+ @touch .venv
+
.PHONY: fomantic
fomantic:
rm -rf $(FOMANTIC_WORK_DIR)/build
diff --git a/package-lock.json b/package-lock.json
index 11638d4d7f..001fedb6cf 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -77,7 +77,7 @@
"stylelint-declaration-strict-value": "1.9.2",
"stylelint-stylistic": "0.4.2",
"svgo": "3.0.2",
- "updates": "14.2.4",
+ "updates": "14.2.8",
"vitest": "0.32.2"
},
"engines": {
@@ -10363,9 +10363,9 @@
}
},
"node_modules/updates": {
- "version": "14.2.4",
- "resolved": "https://registry.npmjs.org/updates/-/updates-14.2.4.tgz",
- "integrity": "sha512-r54h4Q12lUAmQ9dENy7BnY22AnTfW4YGEZw73gv6RvNEWgcZ3qS88jPLc1ckPAzt/8TPKWwLkSVpbEpgGwglJw==",
+ "version": "14.2.8",
+ "resolved": "https://registry.npmjs.org/updates/-/updates-14.2.8.tgz",
+ "integrity": "sha512-Ca+M1vKKBBRiQSi3yrN8OdncmP9osIf1oJM/HpEIHeDvyGLs/noTi9X2LS4zl50VXRTSCqssF5CZN0XWzSPigg==",
"dev": true,
"bin": {
"updates": "bin/updates.js"
diff --git a/package.json b/package.json
index fd68c1d341..9219dbbe1d 100644
--- a/package.json
+++ b/package.json
@@ -76,7 +76,7 @@
"stylelint-declaration-strict-value": "1.9.2",
"stylelint-stylistic": "0.4.2",
"svgo": "3.0.2",
- "updates": "14.2.4",
+ "updates": "14.2.8",
"vitest": "0.32.2"
},
"browserslist": [
diff --git a/poetry.lock b/poetry.lock
index 69258f749c..7d106e1551 100644
--- a/poetry.lock
+++ b/poetry.lock
@@ -42,13 +42,13 @@ six = ">=1.13.0"
[[package]]
name = "djlint"
-version = "1.31.0"
+version = "1.31.1"
description = "HTML Template Linter and Formatter"
optional = false
python-versions = ">=3.8.0,<4.0.0"
files = [
- {file = "djlint-1.31.0-py3-none-any.whl", hash = "sha256:2b9200c67103b79835b7547ff732e910888d1f0ef684f5b329eb64b14d09c046"},
- {file = "djlint-1.31.0.tar.gz", hash = "sha256:8acb4b751b429c5aabb1aef5b6007bdf53224eceda25c5fbe04c42cc57c0a7ba"},
+ {file = "djlint-1.31.1-py3-none-any.whl", hash = "sha256:9b2e2fc3a059a8e5a62f309edea15c1aeee331a279ab2699b9fb51a31d8c0934"},
+ {file = "djlint-1.31.1.tar.gz", hash = "sha256:a11739e2f919f760b3986eb13d06e00171f3bd342b8d88e9bd914a4260eaa8ce"},
]
[package.dependencies]
@@ -328,4 +328,4 @@ telegram = ["requests"]
[metadata]
lock-version = "2.0"
python-versions = "^3.8"
-content-hash = "22c4af11eadd8784b613951d6160d67be0f33500238a450741c3d75beb218dad"
+content-hash = "f03ad8e7c4f6e797ac3c04630db8cc16438cd59642653c26fd401633cd62d696"
diff --git a/pyproject.toml b/pyproject.toml
index ce5f475b27..7a30f59140 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -8,7 +8,7 @@ authors = []
python = "^3.8"
[tool.poetry.group.dev.dependencies]
-djlint = "1.31.0"
+djlint = "1.31.1"
[tool.djlint]
profile="golang"