Skip to content

Commit

Permalink
Fix outdated -- stricter expectations from packaging parse version
Browse files Browse the repository at this point in the history
  • Loading branch information
matteius committed Sep 23, 2024
1 parent 141b387 commit 7febf7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pipenv/routines/outdated.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def do_outdated(project, pypi_mirror=None, pre=False, clear=False):
for package in lockfile.get(category, []):
try:
updated_packages[package] = parse_version(
lockfile[category][package]["version"]
lockfile[category][package]["version"].replace("==", "")
)
except KeyError: # noqa: PERF203
pass
Expand Down

0 comments on commit 7febf7f

Please sign in to comment.