Skip to content
This repository was archived by the owner on Jan 6, 2021. It is now read-only.

Commit e59710c

Browse files
CHBMBthelamer
authored andcommitted
Fix urllib version
Quick and dirty fix, but easy to remove when there's a more elegant solution.
1 parent bb3b6fb commit e59710c

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

root/etc/cont-init.d/15-urllib

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/usr/bin/with-contenv bash
2+
3+
# Fix urllib3 package
4+
URLLIB=$(pip show urllib3 | grep Version | cut -d' ' -f2)
5+
if [ ${URLLIB} != 1.24.3 ]; then
6+
pip install urllib3==1.24.3 --force-reinstall
7+
fi

0 commit comments

Comments
 (0)