Can I update pyproject.toml via CLI?
#6346
-
|
For frontend, with |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
|
Hey,
You can upgrade to the latest version via At the moment there is no command to upgrade all packages. A feature request exists: #461 fin swimmer |
Beta Was this translation helpful? Give feedback.
-
|
Additionally to the accepted answer, there is a plugin to support this: |
Beta Was this translation helpful? Give feedback.
Hey,
poetry updateupdates the version of all dependencies within the given range of thepyproject.toml. So it updates thepoetry.lockfile and the environment.You can upgrade to the latest version via
poetry add <packagename>@latest. This will bump the version in thepyproject.tomlas well.At the moment there is no command to upgrade all packages. A feature request exists: #461
fin swimmer