mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-02-21 22:31:48 +01:00
poetry: Use non-package mode
Since `poetry=1.8.0` there is a non-package mode. This can be used to create `pyproject.toml` files that are only used to track dependencies. Performing `poetry install` in the project-root with a recent version of `poetry` is currently generating a warning which will become an error in the future. Setting `package-mode=false` makes this error go away. A side-effect is that the `name`, `version` and `description` in the `pyproject.toml`-file will be ignored. Keeping the parameters in the `pyproject.toml` file ensures it will still work for developers who are using `poetry<1.8.0`.
This commit is contained in:
parent
fd855755ef
commit
daf9d27777
1 changed files with 1 additions and 0 deletions
|
@ -1,4 +1,5 @@
|
|||
[tool.poetry]
|
||||
package-mode=false
|
||||
name = "cln-meta-project"
|
||||
version = "0.1.0"
|
||||
description = "Just a helper to get our python dependencies under control"
|
||||
|
|
Loading…
Add table
Reference in a new issue