Skip to content

Commit

Permalink
Request --only-binary for Pillow on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
misl6 committed Dec 27, 2023
1 parent 9576cf7 commit 32e89dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .ci/windows_ci.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ function Install-kivy-wheel {
$kivy_fname=(ls $root/dist/Kivy-*$version*$bitness*.whl | Sort-Object -property @{Expression={$_.name.tostring().Length}} | Select-Object -First 1).name
$kivy_examples_fname=(ls $root/dist/Kivy_examples-*.whl | Sort-Object -property @{Expression={$_.name.tostring().Length}} | Select-Object -First 1).name
echo "kivy_fname = $kivy_fname, kivy_examples_fname = $kivy_examples_fname"
python -m pip install "$root/dist/$kivy_fname[full,dev]" "$root/dist/$kivy_examples_fname"
python -m pip install --only-binary Pillow "$root/dist/$kivy_fname[full,dev]" "$root/dist/$kivy_examples_fname"
}

function Install-kivy-sdist {
Expand Down

0 comments on commit 32e89dd

Please sign in to comment.