forked from VimPlug/jedi
Try to use the virtual env that was defined in the VIRTUAL_ENV variable, if possible.
This commit is contained in:
@@ -97,6 +97,12 @@ class InterpreterEnvironment(_BaseEnvironment):
|
||||
|
||||
|
||||
def get_default_environment():
|
||||
virtual_env = os.environ.get('VIRTUAL_ENV')
|
||||
if virtual_env is not None and virtual_env != sys.prefix:
|
||||
try:
|
||||
return create_environment(virtual_env)
|
||||
except InvalidPythonEnvironment:
|
||||
pass
|
||||
return DefaultEnvironment()
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user