From f888e5c2f1ff42a816dcafb33dc0901c5f9634ee Mon Sep 17 00:00:00 2001 From: Matt Davis Date: Thu, 9 Mar 2023 20:03:25 -0500 Subject: [PATCH] actually pass dev flag state to upgrade command. --- pipenv/cli/command.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pipenv/cli/command.py b/pipenv/cli/command.py index a0417332..cb3e0c25 100644 --- a/pipenv/cli/command.py +++ b/pipenv/cli/command.py @@ -282,6 +282,7 @@ def upgrade(state, **kwargs): packages=state.installstate.packages, editable_packages=state.installstate.editables, categories=state.installstate.categories, + dev=state.installstate.dev, system=state.system, lock_only=state.installstate.lock_only, )