代码拉取完成,页面将自动刷新
#!/bin/bash
# This is script is to run inside a manylinux
# docker image, i.e.
# docker run -v `pwd`:/io quay.io/pypa/manylinux2014_x86_64 /io/build-wheel.sh
#
# Builds a pure python PyBaMM wheel, that is without the idaklu module extension.
# In the following, clining the pybind11 is omitted, resulting in the extension module
# compilation to be skipped.
# This pure python wheel is mostly intended to Windows support.
set -e -x
cd /io
# Build wheel!
# Using python 3.7 but the resulting wheel is not
# python version dependent
for PYBIN in /opt/python/cp37-cp37m/bin; do
"${PYBIN}/python" setup.py bdist_wheel -d /io/wheelhouse
done
echo "** --- All good ! --- **"
ls /io/wheelhouse
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。