We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4e0102e commit 035fb72Copy full SHA for 035fb72
2 files changed
add_libmagic.sh
@@ -58,7 +58,7 @@ copy_libmagic() {
58
}
59
60
# skip windows (taken care of separately in wheels.yml)
61
-python -c 'import platform; assert platform.system() != "Windows"' || exit 0
+python -c 'import platform; assert platform.system() != "Windows"' || ( echo "skipping on windows" && exit 0 )
62
# prefer a recent build from source
63
install_source || install_precompiled
64
# files to be copied into the wheel
pyproject.toml
@@ -0,0 +1,3 @@
1
+[build-system]
2
+requires = ["setuptools"]
3
+build-backend = "setuptools.build_meta"
0 commit comments