diff options
author | silverwind <me@silverwind.io> | 2023-06-18 20:13:08 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-18 18:13:08 +0000 |
commit | 1a0a20546699021c547ffb4cc4979bf334b39b53 (patch) | |
tree | b5b19896488b5f79464d036c7b15de14b0287081 /poetry.toml | |
parent | bfab129fb97479e2efaaa0ece7071e13d79629ed (diff) | |
download | gitea-1a0a20546699021c547ffb4cc4979bf334b39b53.tar.gz gitea-1a0a20546699021c547ffb4cc4979bf334b39b53.zip |
Clean up pyproject.toml and package.json, fix poetry options (#25327)
- Reduce `pyproject.toml` and `package.json` to the minimal required
format, removing unneeded properties. `build-system` is not needed as
per
[this](https://github.com/python-poetry/poetry/issues/8110#issuecomment-1595846841).
- Fix `poetry.toml` options they were wrong previously.
- Add dependencies of poetry files to templates `files-changed`.
---------
Co-authored-by: Giteabot <teabot@gitea.io>
Diffstat (limited to 'poetry.toml')
-rw-r--r-- | poetry.toml | 4 |
1 files changed, 2 insertions, 2 deletions
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 |