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 e6765c9 commit 5fdc9a3Copy full SHA for 5fdc9a3
conda-recipe/build.sh
@@ -13,7 +13,12 @@ ${PYTHON} setup.py clean --all
13
${PYTHON} setup.py install
14
15
# Build wheel package
16
+if [ "$CONDA_PY" == "36" ]; then
17
+ WHEELS_BUILD_ARGS="-p manylinux1_x86_64"
18
+else
19
+ WHEELS_BUILD_ARGS="-p manylinux2014_x86_64"
20
+fi
21
if [ -n "${WHEELS_OUTPUT_FOLDER}" ]; then
- $PYTHON setup.py bdist_wheel -p manylinux1_x86_64
22
+ $PYTHON setup.py bdist_wheel ${WHEELS_BUILD_ARGS}
23
cp dist/dpctl*.whl ${WHEELS_OUTPUT_FOLDER}
24
fi
0 commit comments