poetry-update
Update project dependencies
TLDR
Update all dependencies
$ poetry update
Update specific package$ poetry update [package]
Update with dry run$ poetry update --dry-run
Update without dev dependencies$ poetry update --without dev
SYNOPSIS
poetry update [packages...] [options]
DESCRIPTION
poetry update updates dependencies to their latest versions according to constraints in pyproject.toml. Updates the poetry.lock file and installs new versions. Can target specific packages or update all dependencies.
PARAMETERS
--dry-run
Preview updates without installing.--no-dev
Skip dev dependencies.--with groups
Include optional groups.--without groups
Exclude dependency groups.--lock
Only update lock file, don't install.-v, -vv, -vvv
Increase verbosity.
SEE ALSO
poetry(1), poetry-install(1), poetry-lock(1)
