mirror of
https://github.com/daylinmorgan/viv.git
synced 2024-11-12 12:13:15 -06:00
feat: by default include setuptools
This commit is contained in:
parent
ae30ff2b84
commit
7da6cc79f0
1 changed files with 4 additions and 1 deletions
|
@ -52,7 +52,7 @@ from typing import (
|
|||
from urllib.error import HTTPError
|
||||
from urllib.request import urlopen
|
||||
|
||||
__version__ = "23.5a7-1-g86f4773-dev"
|
||||
__version__ = "23.5a7-1-gae30ff2-dev"
|
||||
|
||||
|
||||
class Spinner:
|
||||
|
@ -860,6 +860,9 @@ class ViVenv:
|
|||
"--force-reinstall",
|
||||
] + self.meta.spec
|
||||
|
||||
if not Env().viv_no_setuptools and "setuptools" not in self.meta.spec:
|
||||
cmd.append("setuptools")
|
||||
|
||||
run(
|
||||
cmd,
|
||||
spinmsg="installing packages in vivenv",
|
||||
|
|
Loading…
Reference in a new issue