mirror of
https://github.com/daylinmorgan/viv.git
synced 2024-11-12 12:13:15 -06:00
fix: properly reuse existing env
This commit is contained in:
parent
3bf000f4d0
commit
57cd470bd4
1 changed files with 11 additions and 7 deletions
|
@ -55,7 +55,7 @@ from typing import (
|
|||
from urllib.error import HTTPError
|
||||
from urllib.request import urlopen
|
||||
|
||||
__version__ = "23.8b1-3-g5db225a-dev"
|
||||
__version__ = "23.8b1-4-g3bf000f-dev"
|
||||
|
||||
|
||||
class Spinner:
|
||||
|
@ -1708,8 +1708,11 @@ class Viv:
|
|||
os.environ["VIV_CACHE"] = tmpdir
|
||||
|
||||
if viv_used:
|
||||
env.update({"VIV_SPEC": " ".join(f"'{req}'" for req in spec)})
|
||||
subprocess_run_quit([sys.executable, "-S", scriptpath, *rest], env=env)
|
||||
log.debug(f"script invokes viv.use passing along spec: \n '{spec}'")
|
||||
subprocess_run_quit(
|
||||
[sys.executable, "-S", scriptpath, *rest],
|
||||
env=dict(env, VIV_SPEC=" ".join(f"'{req}'" for req in spec)),
|
||||
)
|
||||
elif not spec and not deps:
|
||||
log.warning("using viv with empty spec, skipping vivenv creation")
|
||||
subprocess_run_quit([sys.executable, "-S", scriptpath, *rest])
|
||||
|
@ -1720,11 +1723,12 @@ class Viv:
|
|||
vivenv.meta.write()
|
||||
subprocess_run_quit(
|
||||
[vivenv.python, "-S", scriptpath, *rest],
|
||||
env={
|
||||
"PYTHONPATH": ":".join(
|
||||
env=dict(
|
||||
env,
|
||||
PYTHONPATH=":".join(
|
||||
filter(None, (vivenv.site_packages, Env().pythonpath))
|
||||
)
|
||||
},
|
||||
),
|
||||
),
|
||||
)
|
||||
|
||||
def cmd_run(
|
||||
|
|
Loading…
Reference in a new issue