Skip to content

Commit

Permalink
Merge pull request #201 from jack-w-shaw/install_py3.11
Browse files Browse the repository at this point in the history
chore(python): install py3.11 for pylibjuju check
  • Loading branch information
jack-w-shaw authored Aug 29, 2024
2 parents deba18e + 2e11925 commit 2f77ac2
Showing 1 changed file with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,11 @@ set -e

sudo add-apt-repository ppa:deadsnakes/ppa
sudo apt-get update -q
sudo DEBIAN_FRONTEND=noninteractive apt-get install -y git gcc make tox \
python3.8 python3.9 python3.10 python3-pip \
python3.8-dev python3.8-distutils python3.9-dev python3.9-distutils python3.10-dev python3.10-distutils
sudo DEBIAN_FRONTEND=noninteractive apt-get install -y git gcc make tox python3-pip \
python3.8 python3.8-dev python3.8-distutils \
python3.9 python3.9-dev python3.9-distutils \
python3.10 python3.10-dev python3.10-distutils \
python3.11 python3.11-dev python3.11-distutils

set +e # Will fail in reports gen if any errors occur
set -o pipefail # Need to error for make, not tees' success.
Expand Down

0 comments on commit 2f77ac2

Please sign in to comment.