poetry update pkg_a
not update anything
#8245
Answered
by
radoering
Albert-Gao
asked this question in
General
-
Cost 10min to figure out how to update a package. basically, i found the outdated packages by running this. poetry show --latest --outdated then i use this poetry update pkg_a say Looks like a bug, the only way to fix this bug is to manually update the version in the what am i missing here? thanks. :) |
Beta Was this translation helpful? Give feedback.
Answered by
radoering
Aug 4, 2023
Replies: 1 comment 1 reply
-
|
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
Albert-Gao
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
poetry update
only updates the lockfile according to the constraints in thepyproject.toml
. Trypoetry add pkg_a@latest
.