You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In order to solve the issue #5725, the dry run doesn’t have an actual functionality since the code source put the value of outdated flag according to it
if not outdated:
outdated = bool(dry_run)
This means using the dry run flag gives the same results as the outdated flag.
if outdated:
do_outdated(
project,
clear=clear,
pre=pre,
pypi_mirror=pypi_mirror,
)
Code Source: pipenv/routines/update.py
I believe it isn't necessary to add the dry run flag currently, until it has a unique functionality.
WDYT
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hey Pipenv Community,
In order to solve the issue #5725, the dry run doesn’t have an actual functionality since the code source put the value of outdated flag according to it
This means using the dry run flag gives the same results as the outdated flag.
Code Source: pipenv/routines/update.py
I believe it isn't necessary to add the dry run flag currently, until it has a unique functionality.
WDYT
Beta Was this translation helpful? Give feedback.
All reactions