/usr/local/lib/python3.6/site-packages/virtualenv/seed/wheels/embed
NameSizeModeActions
__pycache__/-0755rm
pip-20.3.4-py2.py3-none-any.whl15221010644editdlrm
pip-21.3.1-py3-none-any.whl17235810644editdlrm
pip-22.3.1-py3-none-any.whl20515340644editdlrm
setuptools-44.1.1-py2.py3-none-any.whl5834930644editdlrm
setuptools-50.3.2-py3-none-any.whl7851940644editdlrm
setuptools-59.6.0-py3-none-any.whl9525970644editdlrm
setuptools-65.6.3-py3-none-any.whl12339630644editdlrm
wheel-0.37.1-py2.py3-none-any.whl353010644editdlrm
wheel-0.38.4-py3-none-any.whl360510644editdlrm
__init__.py18780644editdlrm
Edit: /usr/local/lib/python3.6/site-packages/virtualenv/seed/wheels/embed/__init__.py (1878B)
from pathlib import Path from virtualenv.seed.wheels.util import Wheel BUNDLE_FOLDER = Path(__file__).absolute().parent BUNDLE_SUPPORT = { "3.11": { "pip": "pip-22.3.1-py3-none-any.whl", "setuptools": "setuptools-65.6.3-py3-none-any.whl", "wheel": "wheel-0.38.4-py3-none-any.whl", }, "3.10": { "pip": "pip-22.3.1-py3-none-any.whl", "setuptools": "setuptools-65.6.3-py3-none-any.whl", "wheel": "wheel-0.38.4-py3-none-any.whl", }, "3.9": { "pip": "pip-22.3.1-py3-none-any.whl", "setuptools": "setuptools-65.6.3-py3-none-any.whl", "wheel": "wheel-0.38.4-py3-none-any.whl", }, "3.8": { "pip": "pip-22.3.1-py3-none-any.whl", "setuptools": "setuptools-65.6.3-py3-none-any.whl", "wheel": "wheel-0.38.4-py3-none-any.whl", }, "3.7": { "pip": "pip-22.3.1-py3-none-any.whl", "setuptools": "setuptools-65.6.3-py3-none-any.whl", "wheel": "wheel-0.38.4-py3-none-any.whl", }, "3.6": { "pip": "pip-21.3.1-py3-none-any.whl", "setuptools": "setuptools-59.6.0-py3-none-any.whl", "wheel": "wheel-0.37.1-py2.py3-none-any.whl", }, "3.5": { "pip": "pip-20.3.4-py2.py3-none-any.whl", "setuptools": "setuptools-50.3.2-py3-none-any.whl", "wheel": "wheel-0.37.1-py2.py3-none-any.whl", }, "2.7": { "pip": "pip-20.3.4-py2.py3-none-any.whl", "setuptools": "setuptools-44.1.1-py2.py3-none-any.whl", "wheel": "wheel-0.37.1-py2.py3-none-any.whl", }, } MAX = "3.11" def get_embed_wheel(distribution, for_py_version): path = BUNDLE_FOLDER / (BUNDLE_SUPPORT.get(for_py_version, {}) or BUNDLE_SUPPORT[MAX]).get(distribution) return Wheel.from_path(path) __all__ = [ "get_embed_wheel", "BUNDLE_SUPPORT", "MAX", "BUNDLE_FOLDER", ]