Skip to content

Commit 33e7b59

Browse files
committed
update simp_le to master (>=0.3.0)
1 parent f40d50c commit 33e7b59

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

install_simp_le.sh

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
set -e
44

55
# Install python packages needed to build simp_le
6-
apk --update add python py-requests py-setuptools git gcc py-pip musl-dev libffi-dev python-dev openssl-dev
6+
apk --update add python py-setuptools git gcc py-pip musl-dev libffi-dev python-dev openssl-dev
77

88
# Get Let's Encrypt simp_le client source
99
branch="master"
@@ -12,7 +12,12 @@ git -C /src clone --depth=1 --branch $branch https://github.com/zenhack/simp_le.
1212

1313
# Install simp_le in /usr/bin
1414
cd /src/simp_le
15-
python ./setup.py install
15+
#pip install wheel requests
16+
for pkg in pip distribute setuptools wheel
17+
do
18+
pip install -U "${pkg?}"
19+
done
20+
pip install .
1621

1722
# Make house cleaning
1823
cd /

0 commit comments

Comments
 (0)