Skip to content

Commit 035fb72

Browse files
committed
Add pyproject.toml
1 parent 4e0102e commit 035fb72

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

add_libmagic.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ copy_libmagic() {
5858
}
5959

6060
# skip windows (taken care of separately in wheels.yml)
61-
python -c 'import platform; assert platform.system() != "Windows"' || exit 0
61+
python -c 'import platform; assert platform.system() != "Windows"' || ( echo "skipping on windows" && exit 0 )
6262
# prefer a recent build from source
6363
install_source || install_precompiled
6464
# files to be copied into the wheel

pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[build-system]
2+
requires = ["setuptools"]
3+
build-backend = "setuptools.build_meta"

0 commit comments

Comments
 (0)