Skip to content

Commit fc88398

Browse files
committed
Build Update
One more update to make the build_wheels scripts the same.
1 parent 2982c71 commit fc88398

1 file changed

Lines changed: 4 additions & 7 deletions

File tree

make/osx/build_wheels.sh

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,19 @@ set -e
22
set +x
33

44
for VER in 2.7 3.4 3.5 3.6 3.7; do
5-
PYTHON=python${VER}
6-
PIP=pip${VER}
7-
VENV=venv_${VER}
5+
PIP="pip${VER}"
6+
PYTHON="python${VER}"
7+
VENV="venv_${VER}"
88

99
# update pip for newer TLS support
1010
curl https://bootstrap.pypa.io/get-pip.py | ${PYTHON}
11-
${PIP} install --upgrade pip
11+
${PIP} install -r requirements/setup.txt
1212

1313
# update virtualenv
1414
${PIP} install --upgrade virtualenv
1515
virtualenv -p ${PYTHON} ${VENV}
1616
. ./${VENV}/bin/activate
1717

18-
# install cffi module
19-
${PYTHON} -m pip install cffi
20-
2118
${PYTHON} setup.py bdist_wheel
2219
${PIP} install -r requirements/test.txt
2320
set +e

0 commit comments

Comments
 (0)