fix: actually use dry-run

This commit is contained in:
Daylin Morgan 2023-06-02 08:06:57 -05:00
parent 56013e9d87
commit 16c538c6d7
Signed by: daylin
GPG key ID: C1E52E7DD81DF79F

View file

@ -51,7 +51,7 @@ from typing import (
from urllib.error import HTTPError from urllib.error import HTTPError
from urllib.request import urlopen from urllib.request import urlopen
__version__ = "23.5a4-35-g9229337-dev" __version__ = "23.5a4-37-gf8ebd9d-dev"
class Spinner: class Spinner:
@ -813,6 +813,7 @@ def resolve_deps(args: Namespace) -> List[str]:
cmd = [ cmd = [
"pip", "pip",
"install", "install",
"--dry-run",
"--quiet", "--quiet",
"--ignore-installed", "--ignore-installed",
"--report", "--report",