Raphael

Results 3 comments of Raphael

Quick workaround: `poetry show --no-dev -o -t | grep -v -e "--" | cut -d " " -f 1 | sed 's/$/\@latest/g' | xargs poetry add` This will upgrade all...

@felipeportella I edited my previous post. It now only upgrades top-level packages.

@m09 You are correct - I edited my post to include `--no-dev`, preventing the command from polluting your regular dependency-tree with dev-dependencies. Sadly, there's no `--only-dev`, so you'll have to...