Skip to content

Commit bc285d8

Browse files
Update linux build tah for wheels (#506) (#510)
Co-authored-by: Vyacheslav-Smirnov <[email protected]>
1 parent 16ad83c commit bc285d8

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

conda-recipe/build.sh

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,12 @@ $PYTHON setup.py build_clib
2929
$PYTHON setup.py build_ext install
3030

3131
# 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
3237
if [ -n "${WHEELS_OUTPUT_FOLDER}" ]; then
33-
$PYTHON setup.py bdist_wheel -p manylinux1_x86_64
38+
$PYTHON setup.py bdist_wheel ${WHEELS_BUILD_ARGS}
3439
cp dist/dpnp*.whl ${WHEELS_OUTPUT_FOLDER}
3540
fi

0 commit comments

Comments
 (0)