From b6923ee3fb5735d6980632c6d7f4e694ae0a1a79 Mon Sep 17 00:00:00 2001 From: Brandon <132288221+brandon-groundlight@users.noreply.github.com> Date: Tue, 15 Oct 2024 16:43:03 -0700 Subject: [PATCH] Python3.12 pillow dependencies (#267) install matches the recommendation from Pillow [here](https://pillow.readthedocs.io/en/stable/installation/building-from-source.html#external-libraries) --- .github/workflows/cicd.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/cicd.yaml b/.github/workflows/cicd.yaml index c8444d4d..ba6c8122 100644 --- a/.github/workflows/cicd.yaml +++ b/.github/workflows/cicd.yaml @@ -140,6 +140,13 @@ jobs: steps: - name: get code uses: actions/checkout@v4 + # Pillow may need these to function + - name: install potential system dependencies + run: | + sudo apt-get update + sudo apt-get install libtiff5-dev libjpeg8-dev libopenjp2-7-dev zlib1g-dev \ + libfreetype6-dev liblcms2-dev libwebp-dev tcl8.6-dev tk8.6-dev python3-tk \ + libharfbuzz-dev libfribidi-dev libxcb1-dev - name: install modern python for poetry uses: actions/setup-python@v4 with: