Closed
Description
Based on the python docs, and the PyTorch wheel building workflow, building a wheel should just take the following steps:
# Installs deps referenced in pyproject.toml → build-system.requires
$ python3 -m pip install --upgrade build
# Builds the wheel
$ python3 -m build --wheel
Unfortunately, since we have a top-level folder called build
, I think python is attempting to use that as a module — which is invalid. If we rename the folder from build
, we should be able to simplify our CI setup to just those steps.
Although, the effort to rename the folder seems large and daunting. Is it worth the simplified workflow?
Metadata
Metadata
Assignees
Labels
Type
Projects
Status
Done