mirror of
https://github.com/kennethreitz/pipenv.git
synced 2026-06-05 22:50:18 +00:00
e629c0ce02
- Update `pip_shims`, `pythonfinder`, `requirementslib`, `vistir` - Add patches to update or fix import paths where necessary - Hardcode funcsigs license Signed-off-by: Dan Ryan <dan.ryan@canonical.com>
14 lines
447 B
Diff
14 lines
447 B
Diff
diff --git a/pipenv/vendor/pythonfinder/compat.py b/pipenv/vendor/pythonfinder/compat.py
|
|
index 6fb4542f..d76c4efc 100644
|
|
--- a/pipenv/vendor/pythonfinder/compat.py
|
|
+++ b/pipenv/vendor/pythonfinder/compat.py
|
|
@@ -4,7 +4,7 @@ import sys
|
|
import six
|
|
|
|
if sys.version_info[:2] <= (3, 4):
|
|
- from pathlib2 import Path # type: ignore # noqa
|
|
+ from pipenv.vendor.pathlib2 import Path # type: ignore # noqa
|
|
else:
|
|
from pathlib import Path
|
|
|