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 16ad83c commit bc285d8Copy full SHA for bc285d8
conda-recipe/build.sh
@@ -29,7 +29,12 @@ $PYTHON setup.py build_clib
29
$PYTHON setup.py build_ext install
30
31
# Build wheel package
32
+if [ "$CONDA_PY" == "36" ]; then
33
+ WHEELS_BUILD_ARGS="-p manylinux1_x86_64"
34
+else
35
+ WHEELS_BUILD_ARGS="-p manylinux2014_x86_64"
36
+fi
37
if [ -n "${WHEELS_OUTPUT_FOLDER}" ]; then
- $PYTHON setup.py bdist_wheel -p manylinux1_x86_64
38
+ $PYTHON setup.py bdist_wheel ${WHEELS_BUILD_ARGS}
39
cp dist/dpnp*.whl ${WHEELS_OUTPUT_FOLDER}
40
fi
0 commit comments