We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8bd15fc commit fda8a5fCopy full SHA for fda8a5f
.github/workflows/wheels.yml
@@ -43,8 +43,11 @@ jobs:
43
44
python setup.py bdist_wheel
45
46
- # hacky until the right distribution wheel can be made...
47
- find dist -name "*linux_x86_64.whl" -type f -exec bash -c 'mv "$1" "${1/linux_x86_64.whl/manylinux2014_x86_64.whl}"' _ {} \;
+ # Repair wheel (distribution support)
+ pip install auditwheel
48
+ auditwheel -v repair dist/* --exclude libtorch_python.so --exclude libc10.so --exclude libtorch.so --exclude libtorch_cpu.so
49
+ rm -rf dist/*
50
+ mv wheelhouse/* dist/
51
ls -la dist/
52
53
# Run tests
0 commit comments