diff options
| author | Kaalleen <36401965+kaalleen@users.noreply.github.com> | 2023-07-05 20:02:33 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-07-05 20:02:33 +0200 |
| commit | 71e09496c27e1742ce4d7eaa3d4333f1a20f252e (patch) | |
| tree | d33ca1622b3a620df8b496b5aca727c772a90268 /.github/workflows/build.yml | |
| parent | 795df7e315c3d691717f8b077d4668e5ef31ac64 (diff) | |
pin pillow version to 9.5.0 (#2410)
Diffstat (limited to '.github/workflows/build.yml')
| -rw-r--r-- | .github/workflows/build.yml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3d78875d..ec4864ec 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -110,6 +110,9 @@ jobs: git config --system core.longpaths true python -m pip install --upgrade pip python -m pip install wheel + # inkex has pillow as a requirement and defaults to the latest release. + # for windows we need to pin to the latest possible version for 32 bit + python -m pip install pillow==9.5.0 # Numpy and Scipy version for older cpu compatibility python -m pip install numpy==1.23.1 python -m pip install scipy==1.9.0 |
