from pip._vendor.packaging.version import parse as parse_version
from pip._internal.utils.models import KeyBasedCompareMixin
from pip._internal.utils.typing import MYPY_CHECK_RUNNING
if MYPY_CHECK_RUNNING:
from pip._vendor.packaging.version import _BaseVersion
from pip._internal.models.link import Link
class InstallationCandidate(KeyBasedCompareMixin):
"""Represents a potential "candidate" for installation.
"""
__slots__ = ["name", "version", "link"]
def __init__(self, name, version, link):
# type: (str, str, Link) -> None
self.name = name
self.version = parse_version(version) # type: _BaseVersion
self.link = link
super(InstallationCandidate, self).__init__(
key=(self.name, self.version, self.link),
defining_class=InstallationCandidate
)
def __repr__(self):
# type: () -> str
return "<InstallationCandidate({!r}, {!r}, {!r})>".format(
self.name, self.version, self.link,
)
def __str__(self):
# type: () -> str
return '{!r} candidate (version {} at {})'.format(
self.name, self.version, self.link,
)
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| __pycache__ | Folder | 0755 |
|
|
| __init__.py | File | 63 B | 0644 |
|
| candidate.py | File | 1.17 KB | 0644 |
|
| direct_url.py | File | 6.74 KB | 0644 |
|
| format_control.py | File | 2.76 KB | 0644 |
|
| index.py | File | 1.13 KB | 0644 |
|
| link.py | File | 7.29 KB | 0644 |
|
| scheme.py | File | 778 B | 0644 |
|
| search_scope.py | File | 4.64 KB | 0644 |
|
| selection_prefs.py | File | 2 KB | 0644 |
|
| target_python.py | File | 3.94 KB | 0644 |
|
| wheel.py | File | 2.71 KB | 0644 |
|