705a88bb11
Currently, builds are busted because they can't build wheels for these. Change-Id: I964d5858bfb926890169d46cbc7ab4e76fc40250
13 lines
171 B
Bash
Executable File
13 lines
171 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
apk add --update \
|
|
python3 \
|
|
python3-dev \
|
|
py3-pip \
|
|
py3-cffi \
|
|
py3-cryptography
|
|
|
|
if [ ! -e /usr/bin/pip ]; then ln -s pip3 /usr/bin/pip ; fi
|
|
|