Offer Some Way to Validate poetry.toml
See original GitHub issue- I have searched the issues of this repo and believe that this is not a duplicate.
- I have searched the documentation and believe that my question is not covered.
Feature Request
poetry check is great for validating pyproject.toml
. It would be helpful to have some way to validate poetry.toml
as well. poetry check
could validate both files by default, and a new optional option could be introduced to specify the path to the file to check.
Issue Analytics
- State:
- Created 2 years ago
- Comments:5 (2 by maintainers)
Top Results From Across the Web
The pyproject.toml file | Documentation | Poetry
If your pyproject.toml file still references poetry directly as a build backend, you should update it to reference poetry-core instead.
Read more >Authentication from poetry.toml doesn't work on 1.1.x #3216
This command should create an environment variable? Delete poetry. toml from source folder. Delete key from keyring.
Read more >Dependency Management With Python Poetry
Learn how Python Poetry will help you start new projects, maintain existing ones, and master dependency management.
Read more >How to check for dependencies conflict between toml files in ...
I am trying to create a library from them but track if there is conflict(or different versions) between the dependencies in their respective ......
Read more >How to use Poetry to manage dependencies in Python
The file pyproject.toml is used by poetry to keep a track of project info, python version, development dependencies and other externally ...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
@finswimmer Cool sounds good 👍🏿
I haven’t looked, but assuming docs built with Sphinx? I should be able to do PR tmrw after work or next Monday 🙏🏿
poetry.toml
is for storing local poetry config settings. So you are able to have different poetry settings per project. Because application settings are usually specific to the user, we don’t store this in thepyproject.toml
. Otherwise one cannot separate project specific data you usually want to share and application settings you don’t want to share.A section in the docs about this file seems to be missing. PR is welcome 😉