1 Star 0 Fork 0

kingarthur.hust/PyBaMM

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
build-pure-wheel.sh 695 Bytes
一键复制 编辑 原始数据 按行查看 历史
#!/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
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/kingarthurhust/PyBaMM.git
git@gitee.com:kingarthurhust/PyBaMM.git
kingarthurhust
PyBaMM
PyBaMM
develop

搜索帮助

0d507c66 1850385 C8b1a773 1850385