aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/files-changed.yml1
-rw-r--r--package-lock.json2
-rw-r--r--package.json3
-rw-r--r--poetry.toml4
-rw-r--r--pyproject.toml4
5 files changed, 3 insertions, 11 deletions
diff --git a/.github/workflows/files-changed.yml b/.github/workflows/files-changed.yml
index f0c34df86d..e209be8e8d 100644
--- a/.github/workflows/files-changed.yml
+++ b/.github/workflows/files-changed.yml
@@ -58,3 +58,4 @@ jobs:
templates:
- "templates/**/*.tmpl"
+ - "poetry.lock"
diff --git a/package-lock.json b/package-lock.json
index bffa0ad3f1..e808ccf2a8 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -4,8 +4,6 @@
"requires": true,
"packages": {
"": {
- "name": "gitea",
- "license": "MIT",
"dependencies": {
"@citation-js/core": "0.6.8",
"@citation-js/plugin-bibtex": "0.6.8",
diff --git a/package.json b/package.json
index 0a05bd3a55..0701862cc2 100644
--- a/package.json
+++ b/package.json
@@ -1,7 +1,4 @@
{
- "name": "gitea",
- "license": "MIT",
- "private": true,
"type": "module",
"engines": {
"node": ">= 16.0.0"
diff --git a/poetry.toml b/poetry.toml
index 57e0ba893f..0299355b5d 100644
--- a/poetry.toml
+++ b/poetry.toml
@@ -1,4 +1,4 @@
[virtualenvs]
in-project = true
-no-pip = true
-no-setuptools = true
+options.no-pip = true
+options.no-setuptools = true
diff --git a/pyproject.toml b/pyproject.toml
index d5151bd480..ce5f475b27 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -13,7 +13,3 @@ djlint = "1.31.0"
[tool.djlint]
profile="golang"
ignore="H005,H006,H008,H013,H014,H016,H020,H021,H023,H026,H030,H031,T027"
-
-[build-system]
-requires = ["poetry-core"]
-build-backend = "poetry.core.masonry.api"