/
redgpu
/
bullet
Обзор
Документация
Войти
/
redgpu
/
bullet
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
wheel.sh
23 строки
639 B
Erwin Coumans
update docker command/version, so pybullet wheels are compatible with numpy 2.0 and 1.0
30 янв 2025, 02:09
30 янв 2025, 02:09
6c888f4
Код
Авторство
О чём код?
#!/bin/bash set -e -x # use this docker command # sudo docker run -it -v $(pwd):/io quay.io/pypa/manylinux2014_x86_64 # Compile wheels for PYBIN in /opt/python/*/bin; do "${PYBIN}/pip" install -r /io/dev/bullet3/requirements.txt "${PYBIN}/pip" wheel /io/dev/bullet3 -w wheelhouse/ done # Bundle external shared libraries into the wheels for whl in wheelhouse/*.whl; do auditwheel repair "$whl" -w /io/wheelhouse/ done # Install packages and test for PYBIN in /opt/python/*/bin/; do "${PYBIN}/pip" install python-manylinux-demo --no-index -f /io/wheelhouse (cd "$HOME"; "${PYBIN}/nosetests" pymanylinuxdemo) done