Submit
Path:
~
/
/
opt
/
cloudlinux
/
venv
/
lib64
/
python3.11
/
site-packages
/
pip
/
_internal
/
operations
/
build
/
File Content:
wheel.py
from __future__ import annotations import logging import os from pip._vendor.pyproject_hooks import BuildBackendHookCaller from pip._internal.utils.subprocess import runner_with_spinner_message logger = logging.getLogger(__name__) def build_wheel_pep517( name: str, backend: BuildBackendHookCaller, metadata_directory: str, wheel_directory: str, ) -> str | None: """Build one InstallRequirement using the PEP 517 build process. Returns path to wheel if successfully built. Otherwise, returns None. """ assert metadata_directory is not None try: logger.debug("Destination directory: %s", wheel_directory) runner = runner_with_spinner_message( f"Building wheel for {name} (pyproject.toml)" ) with backend.subprocess_runner(runner): wheel_name = backend.build_wheel( wheel_directory=wheel_directory, metadata_directory=metadata_directory, ) except Exception: logger.error("Failed building wheel for %s", name) return None return os.path.join(wheel_directory, wheel_name)
Edit
Rename
Chmod
Delete
FILE
FOLDER
Name
Size
Permission
Action
__pycache__
---
0755
__init__.py
0 bytes
0644
build_tracker.py
4771 bytes
0644
metadata.py
1421 bytes
0644
metadata_editable.py
1509 bytes
0644
wheel.py
1136 bytes
0644
wheel_editable.py
1478 bytes
0644
N4ST4R_ID | Naxtarrr