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
4
4
# Install a system package required by our library
5
5
yum install -y atlas-devel
6
6
7
- # Install requirements
8
- PYBIN=/opt/python/${PYABI} /bin
9
- REQ_FILE=/io/requirements-wheel.txt
10
- " ${PYBIN} /pip" install -r $REQ_FILE
11
-
12
7
# Compile wheels
8
+ PYBIN=/opt/python/${PYABI} /bin
13
9
cd /io
14
10
" ${PYBIN} /python" setup.py bdist_wheel
15
11
Original file line number Diff line number Diff line change 28
28
shell : bash
29
29
run : |
30
30
source ./.github/workflows/reload-env.sh
31
- if [ $UNAME == "darwin" ]; then export CC="gcc-10"; fi
32
31
python setup.py build_ext -i
33
32
34
33
- name : Test with unittest
Original file line number Diff line number Diff line change 21
21
22
22
export PYTHON=$( python -c " import sys; print('.'.join(str(v) for v in sys.version_info[:3]))" )
23
23
24
+ if [ $UNAME == " darwin" ]; then
25
+ export CC=" gcc-10"
26
+ fi
27
+
24
28
function retry {
25
29
retrial=5
26
30
if [ $1 == " -n" ]; then
Original file line number Diff line number Diff line change 29
29
conda create --quiet --yes -n wheel python=$PYTHON
30
30
conda activate wheel
31
31
32
- pip install -r requirements-wheel.txt
33
- CFLAGS=-Wno-error pip wheel --no-deps .
32
+ pip wheel --no-deps .
34
33
35
34
conda activate test
36
35
Original file line number Diff line number Diff line change 3
3
from .managers import SharedMemoryManager
4
4
except ImportError :
5
5
pass
6
+
7
+ __version__ = '0.1.0'
You can’t perform that action at this time.
0 commit comments