@@ -33,18 +33,10 @@ name collision if the same library is being bundled by a different package, and
3333check if the packages confirm to standards like [ PEP600] (` manylinux_X_Y ` ).
3434These tools do not allow to have cross wheel library dependency.
3535
36- [ auditwheel ] : https://pypi.org/project/auditwheel/
37- [ delocate ] : https://pypi.org/project/delocate/
38- [ delvewheel ] : https://pypi.org/project/delvewheel/
39- [ cibuildwheel ] : https://cibuildwheel.pypa.io/en/stable/
40- [ repair wheel] :
41- https://cibuildwheel.pypa.io/en/stable/options/#repair-wheel-command
42- [ PEP600 ] : https://peps.python.org/pep-0600
43-
4436## Manual patching
4537
46- You can manually make a relative RPath. This has the benefit of working when not
47- running scikit-build-core, as well.
38+ You can manually make a relative RPath. This has the benefit of working
39+ when not running scikit-build-core, as well.
4840
4941The ` RPATH ` patching can be done as
5042
@@ -70,3 +62,14 @@ from pathlib import Path
7062dependency_dll_path = Path(__file__ ).parent / " install_path/to/dynamic_library"
7163os.add_dll_directory(str (dependency_dll_path))
7264```
65+
66+ <!-- prettier-ignore-start -->
67+
68+ [ auditwheel ] : https://pypi.org/project/auditwheel/
69+ [ delocate ] : https://pypi.org/project/delocate/
70+ [ delvewheel ] : https://pypi.org/project/delvewheel/
71+ [ cibuildwheel ] : https://cibuildwheel.pypa.io/en/stable/
72+ [ repair wheel ] : https://cibuildwheel.pypa.io/en/stable/options/#repair-wheel-command
73+ [ PEP600 ] : https://peps.python.org/pep-0600
74+
75+ <!-- prettier-ignore-end -->
0 commit comments