The freeze operation does not need a wheel_cache

This commit is contained in:
Stéphane Bidoul 2021-01-02 13:43:56 +01:00
parent 062f0e54d9
commit 93a51f1de3
No known key found for this signature in database
GPG Key ID: BCAB2555446B5B92
2 changed files with 0 additions and 8 deletions

View File

@ -1,10 +1,8 @@
import sys
from pip._internal.cache import WheelCache
from pip._internal.cli import cmdoptions
from pip._internal.cli.base_command import Command
from pip._internal.cli.status_codes import SUCCESS
from pip._internal.models.format_control import FormatControl
from pip._internal.operations.freeze import freeze
from pip._internal.utils.compat import stdlib_pkgs
from pip._internal.utils.deprecation import deprecated
@ -78,8 +76,6 @@ class FreezeCommand(Command):
def run(self, options, args):
# type: (Values, List[str]) -> int
format_control = FormatControl(set(), set())
wheel_cache = WheelCache(options.cache_dir, format_control)
skip = set(stdlib_pkgs)
if not options.freeze_all:
skip.update(DEV_PKGS)
@ -104,7 +100,6 @@ class FreezeCommand(Command):
user_only=options.user,
paths=options.path,
isolated=options.isolated_mode,
wheel_cache=wheel_cache,
skip=skip,
exclude_editable=options.exclude_editable,
)

View File

@ -33,8 +33,6 @@ if MYPY_CHECK_RUNNING:
from pip._vendor.pkg_resources import Distribution, Requirement
from pip._internal.cache import WheelCache
RequirementInfo = Tuple[Optional[Union[str, Requirement]], bool, List[str]]
@ -48,7 +46,6 @@ def freeze(
user_only=False, # type: bool
paths=None, # type: Optional[List[str]]
isolated=False, # type: bool
wheel_cache=None, # type: Optional[WheelCache]
exclude_editable=False, # type: bool
skip=() # type: Container[str]
):