mirror of
https://abf.rosa.ru/djam/python3.7.git
synced 2025-02-23 22:52:58 +00:00
56 lines
1.8 KiB
Diff
56 lines
1.8 KiB
Diff
diff --git a/Lib/ensurepip/__init__.py b/Lib/ensurepip/__init__.py
|
|
index 4748ba4..fc02255 100644
|
|
--- a/Lib/ensurepip/__init__.py
|
|
+++ b/Lib/ensurepip/__init__.py
|
|
@@ -1,16 +1,31 @@
|
|
+import distutils.version
|
|
+import glob
|
|
import os
|
|
import os.path
|
|
-import pkgutil
|
|
import sys
|
|
import tempfile
|
|
|
|
|
|
__all__ = ["version", "bootstrap"]
|
|
|
|
+_WHEEL_DIR = "/usr/share/python-wheels/"
|
|
|
|
-_SETUPTOOLS_VERSION = "41.2.0"
|
|
+_wheels = {}
|
|
|
|
-_PIP_VERSION = "19.2.3"
|
|
+def _get_most_recent_wheel_version(pkg):
|
|
+ prefix = os.path.join(_WHEEL_DIR, "{}-".format(pkg))
|
|
+ _wheels[pkg] = {}
|
|
+ for suffix in "-py2.py3-none-any.whl", "-py3-none-any.whl":
|
|
+ pattern = "{}*{}".format(prefix, suffix)
|
|
+ for path in glob.glob(pattern):
|
|
+ version_str = path[len(prefix):-len(suffix)]
|
|
+ _wheels[pkg][version_str] = os.path.basename(path)
|
|
+ return str(max(_wheels[pkg], key=distutils.version.LooseVersion))
|
|
+
|
|
+
|
|
+_SETUPTOOLS_VERSION = _get_most_recent_wheel_version("setuptools")
|
|
+
|
|
+_PIP_VERSION = _get_most_recent_wheel_version("pip")
|
|
|
|
_PROJECTS = [
|
|
("setuptools", _SETUPTOOLS_VERSION),
|
|
@@ -94,12 +105,9 @@ def _bootstrap(*, root=None, upgrade=False, user=False,
|
|
additional_paths = []
|
|
for project, version in _PROJECTS:
|
|
- wheel_name = "{}-{}-py2.py3-none-any.whl".format(project, version)
|
|
- whl = pkgutil.get_data(
|
|
- "ensurepip",
|
|
- "_bundled/{}".format(wheel_name),
|
|
- )
|
|
- with open(os.path.join(tmpdir, wheel_name), "wb") as fp:
|
|
- fp.write(whl)
|
|
+ wheel_name = _wheels[project][version]
|
|
+ with open(os.path.join(_WHEEL_DIR, wheel_name), "rb") as sfp:
|
|
+ with open(os.path.join(tmpdir, wheel_name), "wb") as fp:
|
|
+ fp.write(sfp.read())
|
|
|
|
additional_paths.append(os.path.join(tmpdir, wheel_name))
|
|
|