-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Code report and ChangeLog improvment [skip ci]
- Loading branch information
Showing
3 changed files
with
170 additions
and
91 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
from contextlib import contextmanager | ||
import tempfile | ||
import subprocess | ||
import venv | ||
|
||
class ExtendedEnvBuilder(venv.EnvBuilder): | ||
"""An extended env builder which saves the context, to have access | ||
easily to bin path and such. | ||
""" | ||
|
||
def __init__(self, *args, **kwargs): | ||
self.context = None | ||
super(ExtendedEnvBuilder, self).__init__(*args, **kwargs) | ||
|
||
def ensure_directories(self, env_dir): | ||
self.context = super(ExtendedEnvBuilder, self).ensure_directories(env_dir) | ||
return self.context | ||
|
||
|
||
def create(env_dir, system_site_packages=False, clear=False, | ||
symlinks=False, with_pip=False, prompt=None): | ||
"""Create a virtual environment in a directory.""" | ||
builder = ExtendedEnvBuilder(system_site_packages=system_site_packages, | ||
clear=clear, symlinks=symlinks, with_pip=with_pip, | ||
prompt=prompt) | ||
builder.create(env_dir) | ||
return builder.context | ||
|
||
@contextmanager | ||
def create_venv_with_package(packages): | ||
"""Create a venv with these packages in a temp dir and yielf the env. | ||
packages should be an iterable of pip version instructio (e.g. package~=1.2.3) | ||
""" | ||
with tempfile.TemporaryDirectory() as tempdir: | ||
myenv = create(tempdir, with_pip=True) | ||
pip_call = [ | ||
myenv.env_exe, | ||
"-m", | ||
"pip", | ||
"install", | ||
] | ||
pip_call += packages | ||
if packages: | ||
subprocess.check_call(pip_call) | ||
yield myenv |