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 da74fd8 commit 794db31Copy full SHA for 794db31
1 file changed
.github/workflows/python_wheel_build.yml
@@ -73,9 +73,13 @@ jobs:
73
cd root
74
pip install -r requirements.txt
75
python3 -m build --wheel
76
+ pip install delocate
77
+ mkdir fixed_wheels
78
+ delocate-wheel -v -w fixed_wheels/ dist/*.whl
79
+
80
- name: Upload_wheel
81
uses: actions/upload-artifact@v6
82
with:
83
name: Wheel upload
- path: /Users/runner/work/root/root/wheel_creation/root/dist/*.whl
84
+ path: /Users/runner/work/root/root/wheel_creation/root/fixed_wheels/*.whl
85
if-no-files-found: error
0 commit comments