8000 temporary fix for pip api changes · lineCode/opencv-python@91f52b8 · GitHub
[go: up one dir, main page]

Skip to content

Commit 91f52b8

Browse files
committed
temporary fix for pip api changes
1 parent bda4ee8 commit 91f52b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def main():
2626
if os.path.exists('.git'):
2727

2828
import pip.vcs.git
29-
g = pip.vcs.git.Git()
29+
g = pip._internal.vcs.git.Git() # NOTE: pip API's are internal, this has to be refactored
3030

3131
g.run_command(["submodule", "sync"])
3232
g.run_command(["submodule", "update", "--init", "--recursive", cmake_source_dir])

0 commit comments

Comments
 (0)
0