This repository was archived by the owner on Jan 5, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +8
-8
lines changed Expand file tree Collapse file tree 5 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -4,12 +4,8 @@ set -e -x
44# Install a system package required by our library
55yum install -y atlas-devel
66
7- # Install requirements
8- PYBIN=/opt/python/${PYABI} /bin
9- REQ_FILE=/io/requirements-wheel.txt
10- " ${PYBIN} /pip" install -r $REQ_FILE
11-
127# Compile wheels
8+ PYBIN=/opt/python/${PYABI} /bin
139cd /io
1410" ${PYBIN} /python" setup.py bdist_wheel
1511
Original file line number Diff line number Diff line change 2828 shell : bash
2929 run : |
3030 source ./.github/workflows/reload-env.sh
31- if [ $UNAME == "darwin" ]; then export CC="gcc-10"; fi
3231 python setup.py build_ext -i
3332
3433 - name : Test with unittest
Original file line number Diff line number Diff line change 2121
2222export PYTHON=$( python -c " import sys; print('.'.join(str(v) for v in sys.version_info[:3]))" )
2323
24+ if [ $UNAME == " darwin" ]; then
25+ export CC=" gcc-10"
26+ fi
27+
2428function retry {
2529 retrial=5
2630 if [ $1 == " -n" ]; then
Original file line number Diff line number Diff line change 2929 conda create --quiet --yes -n wheel python=$PYTHON
3030 conda activate wheel
3131
32- pip install -r requirements-wheel.txt
33- CFLAGS=-Wno-error pip wheel --no-deps .
32+ pip wheel --no-deps .
3433
3534 conda activate test
3635
Original file line number Diff line number Diff line change 33 from .managers import SharedMemoryManager
44except ImportError :
55 pass
6+
7+ __version__ = '0.1.0'
You can’t perform that action at this time.
0 commit comments