Skip to content

Commit

Permalink
Let's try to pin Pillow to 10.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
justvanrossum committed Jan 28, 2024
1 parent 624fb3b commit 61464fd
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions app/install_custom_universal_wheels.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@ set -e # abort on errors
set -x # echo commands


for package in pillow
for package_version in pillow==10.1.0
do
python app/build_universal_wheel.py $package
package=(${package_version//==/ })
python app/build_universal_wheel.py $package_version
pip install --force build/universal_wheels/$package*.whl
done

0 comments on commit 61464fd

Please sign in to comment.