This package is a plugin that updates dependencies and bumps their versions in
pyproject.toml file. The version constraints are respected, unless the
--latest flag is passed, in which case dependencies are updated to latest
available compatible versions.
This plugin provides similar features as the existing update command with
additional features.
The easiest way to install the up plugin is via the self add command of
Poetry.
poetry self add poetry-plugin-upIf you used pipx to install Poetry you can add the plugin via the pipx inject command.
pipx inject poetry poetry-plugin-upOtherwise, if you used pip to install Poetry you can add the plugin packages
via the pip install command.
pip install poetry-plugin-upThe plugin provides an up command to update dependencies
poetry up --helpUpdate dependencies
poetry upUpdate dependencies to latest available compatible versions
poetry up --latestUpdate the foo and bar packages
poetry up foo barUpdate packages only in the main group
poetry up --only mainUpdate packages but ignore the dev group
poetry up --without devContributions are welcome! See the Contributing Guide.
If you encounter any problems, please file an issue along with a detailed description.