Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit f7596ec

Browse files
committed
Stub this out, but we need to circle back and rewrite the code
1 parent bac272d commit f7596ec

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

git/test/lib/helper.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
import textwrap
1717
import time
1818
import unittest
19-
import venv
19+
import virtualenv
2020

2121
from git.compat import string_types, is_win
2222
from git.util import rmtree, cwd
@@ -391,10 +391,10 @@ class VirtualEnvironment:
391391
def __init__(self, env_dir, with_pip):
392392
if os.name == "nt":
393393
self._env_dir = osp.realpath(env_dir)
394-
venv.create(self.env_dir, symlinks=False, with_pip=with_pip)
394+
# venv.create(self.env_dir, symlinks=False, with_pip=with_pip)
395395
else:
396396
self._env_dir = env_dir
397-
venv.create(self.env_dir, symlinks=True, with_pip=with_pip)
397+
# venv.create(self.env_dir, symlinks=True, with_pip=with_pip)
398398

399399
@property
400400
def env_dir(self):

0 commit comments

Comments
 (0)