Skip to content

Commit

Permalink
Merge pull request #11342 from pfmoore/runner_version_check
Browse files Browse the repository at this point in the history
Add a version check to __pip-runner__.py
  • Loading branch information
pfmoore authored Aug 6, 2022
2 parents 9473e83 + c69ea02 commit 1880f4a
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 11 deletions.
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,5 +81,7 @@ def get_version(rel_path: str) -> str:
],
},
zip_safe=False,
# NOTE: python_requires is duplicated in __pip-runner__.py.
# When changing this value, please change the other copy as well.
python_requires=">=3.7",
)
36 changes: 25 additions & 11 deletions src/pip/__pip-runner__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,24 +4,38 @@
an import statement.
"""

import runpy
# /!\ This version compatibility check section must be Python 2 compatible. /!\

import sys
import types
from importlib.machinery import ModuleSpec, PathFinder
from os.path import dirname
from typing import Optional, Sequence, Union

# Copied from setup.py
PYTHON_REQUIRES = (3, 7)


def version_str(version): # type: ignore
return ".".join(str(v) for v in version)


if sys.version_info[:2] < PYTHON_REQUIRES:
raise SystemExit(
"This version of pip does not support python {} (requires >={}).".format(
version_str(sys.version_info[:2]), version_str(PYTHON_REQUIRES)
)
)

# From here on, we can use Python 3 features, but the syntax must remain
# Python 2 compatible.

import runpy # noqa: E402
from importlib.machinery import PathFinder # noqa: E402
from os.path import dirname # noqa: E402

PIP_SOURCES_ROOT = dirname(dirname(__file__))


class PipImportRedirectingFinder:
@classmethod
def find_spec(
self,
fullname: str,
path: Optional[Sequence[Union[bytes, str]]] = None,
target: Optional[types.ModuleType] = None,
) -> Optional[ModuleSpec]:
def find_spec(self, fullname, path=None, target=None): # type: ignore
if fullname != "pip":
return None

Expand Down

0 comments on commit 1880f4a

Please sign in to comment.