mirror of
https://github.com/explosion/spaCy.git
synced 2024-12-26 18:06:29 +03:00
Improve fabfile
This commit is contained in:
parent
64e53f1b1b
commit
7cf6b1c7a4
11
fabfile.py
vendored
11
fabfile.py
vendored
|
@ -14,23 +14,24 @@ VENV_DIR = Path(PWD) / ENV
|
||||||
|
|
||||||
|
|
||||||
@contextlib.contextmanager
|
@contextlib.contextmanager
|
||||||
def virtualenv(name, create=False, python='/usr/bin/python3.6'):
|
def virtualenv(name, create=False, python='/usr/bin/python3.6', capture=False):
|
||||||
python = Path(python).resolve()
|
python = Path(python).resolve()
|
||||||
env_path = VENV_DIR
|
env_path = VENV_DIR
|
||||||
if create:
|
if create:
|
||||||
if env_path.exists():
|
if env_path.exists():
|
||||||
shutil.rmtree(str(env_path))
|
shutil.rmtree(str(env_path))
|
||||||
local('{python} -m venv {env_path}'.format(python=python,
|
local('{python} -m venv {env_path}'.format(python=python, env_path=VENV_DIR),
|
||||||
env_path=VENV_DIR))
|
capture=capture)
|
||||||
def wrapped_local(cmd, env_vars=[]):
|
def wrapped_local(cmd, env_vars=[]):
|
||||||
env_py = env_path / 'bin' / 'python'
|
env_py = env_path / 'bin' / 'python'
|
||||||
env_vars = ' '.join(env_vars)
|
env_vars = ' '.join(env_vars)
|
||||||
if cmd.split()[0] == 'python':
|
if cmd.split()[0] == 'python':
|
||||||
cmd = cmd.replace('python', str(env_py))
|
cmd = cmd.replace('python', str(env_py))
|
||||||
return local(env_vars + ' ' + cmd)
|
return local(env_vars + ' ' + cmd, capture=capture)
|
||||||
else:
|
else:
|
||||||
return local('{env_vars} {env_py} -m {cmd}'.format(
|
return local('{env_vars} {env_py} -m {cmd}'.format(
|
||||||
env_py=env_py, cmd=cmd, env_vars=env_vars))
|
env_py=env_py, cmd=cmd, env_vars=env_vars),
|
||||||
|
capture=capture)
|
||||||
yield wrapped_local
|
yield wrapped_local
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user