Skip to content

Commit 9573976

Browse files
committed
Add example script for building wheels.
1 parent 6cd2182 commit 9573976

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

buildscripts/bdist_wheel.sh

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Example script for building dynd.ndt and dynd.nd wheels.
2+
3+
# Build dynd.ndt
4+
$PYTHON setup.py bdist_wheel --target=ndt &&
5+
cd build/lib* &&
6+
printf "\ntesting build ...\n" &&
7+
$PYTHON -m dynd.ndt.test &&
8+
cd - &&
9+
rm -rf build &&
10+
11+
# Build dynd.nd
12+
$PYTHON setup.py bdist_wheel --target=nd &&
13+
cd build/lib* &&
14+
printf "\ntesting build ...\n" &&
15+
$PYTHON -m dynd.nd.test || exit 1
16+
17+

0 commit comments

Comments
 (0)