MCPcopy
hub / github.com/pex-tool/pex / __init__

Method __init__

pex/resolver.py:1038–1051  ·  view source on GitHub ↗
(
        self,
        package_index_configuration=None,  # type: Optional[PackageIndexConfiguration]
        build_configuration=BuildConfiguration(),  # type: BuildConfiguration
        verify_wheels=True,  # type: bool
        pip_version=None,  # type: Optional[PipVersionValue]
        resolver=None,  # type: Optional[Resolver]
    )

Source from the content-addressed store, hash-verified

1036
1037class WheelBuilder(object):
1038 def __init__(
1039 self,
1040 package_index_configuration=None, # type: Optional[PackageIndexConfiguration]
1041 build_configuration=BuildConfiguration(), # type: BuildConfiguration
1042 verify_wheels=True, # type: bool
1043 pip_version=None, # type: Optional[PipVersionValue]
1044 resolver=None, # type: Optional[Resolver]
1045 ):
1046 # type: (...) -> None
1047 self._package_index_configuration = package_index_configuration
1048 self._build_configuration = build_configuration
1049 self._verify_wheels = verify_wheels
1050 self._pip_version = pip_version
1051 self._resolver = resolver
1052
1053 def _categorize_build_requests(
1054 self,

Callers

nothing calls this directly

Calls 1

BuildConfigurationClass · 0.90

Tested by

no test coverage detected