@@ -6,7 +6,7 @@ build-backend = "scikit_build_core.build"
6
6
7
7
[project ]
8
8
name = " panda3d-interrogate"
9
- version = " 0.0.1 "
9
+ version = " 0.1.0 "
10
10
description = " Binding generator designed for Panda3D"
11
11
readme = " README.md"
12
12
requires-python = " >=3.2"
@@ -44,14 +44,20 @@ build = "cp38-*"
44
44
[tool .cibuildwheel .linux ]
45
45
repair-wheel-command = [
46
46
" auditwheel repair -w {dest_dir} {wheel}" ,
47
- " pipx run abi3audit --strict --report {wheel}" ,
47
+ " pip install -U abi3audit" ,
48
+ " abi3audit --strict --report {wheel}" ,
48
49
]
49
50
50
51
[tool .cibuildwheel .macos ]
52
+ archs = [" universal2" ]
51
53
repair-wheel-command = [
52
- " delocate-wheel --require-archs {delocate_archs} -w {dest_dir} -v {wheel}" ,
53
- " pipx run abi3audit --strict --report {wheel}" ,
54
+ " cp {wheel} {dest_dir}" ,
55
+ " pip install -U abi3audit" ,
56
+ " abi3audit --strict --report {wheel}" ,
54
57
]
55
58
56
59
[tool .cibuildwheel .windows ]
57
- repair-wheel-command = " pipx run abi3audit --strict --report {wheel}"
60
+ repair-wheel-command = [
61
+ " pip install -U abi3audit" ,
62
+ " pipx run abi3audit --strict --report {wheel}" ,
63
+ ]
0 commit comments