fix some line-endings, add dependencies, allow python other than 3.8

This commit is contained in:
Lee Goolsbee
2022-09-08 16:21:55 -05:00
parent d4cde110e8
commit 57c2cad83f
3 changed files with 34 additions and 12 deletions

View File

@@ -7,15 +7,19 @@ if [[ $ID = "amzn" ]]; then
amazon-linux-extras enable python3.8
yum clean metadata
yum install -y \
python2-pip
python38
python38-pip
python38-devel
gcc \
libpq-devel \
python2-pip \
python38 \
python38-pip \
python38-devel \
python-lxml
else
# FIXME: Currently assumes Debian-based
apt-get update && \
apt-get install -y \
libpq-dev \
python2 \
python3-dev \
python3-pip
fi