-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2268 from pypa/bugfix/cli-graph
Fix pipenv graph
- Loading branch information
Showing
4 changed files
with
53 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
diff --git a/pipenv/vendor/pipdeptree.py b/pipenv/vendor/pipdeptree.py | ||
index a62badf7..a2ea83fd 100644 | ||
--- a/pipenv/vendor/pipdeptree.py | ||
+++ b/pipenv/vendor/pipdeptree.py | ||
@@ -14,10 +14,10 @@ except ImportError: | ||
from ordereddict import OrderedDict | ||
|
||
try: | ||
- from pipenv.patched.notpip._internal import get_installed_distributions | ||
- from pipenv.patched.notpip._internal.operations.freeze import FrozenRequirement | ||
+ from pip._internal import get_installed_distributions | ||
+ from pip._internal.operations.freeze import FrozenRequirement | ||
except ImportError: | ||
- from pipenv.patched.notpip import get_installed_distributions, FrozenRequirement | ||
+ from pip import get_installed_distributions, FrozenRequirement | ||
|
||
import pkg_resources | ||
# inline: |