We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6cd2182 commit 9573976Copy full SHA for 9573976
1 file changed
buildscripts/bdist_wheel.sh
@@ -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
14
15
+$PYTHON -m dynd.nd.test || exit 1
16
17
0 commit comments