Skip to content

Commit

Permalink
CI: Fix conflict between Pillow 10.4.0 and Numpy 1.20
Browse files Browse the repository at this point in the history
Should be fixed with the next Pillow release, but will also go away when
we drop Numpy 1.20, which can happen shortly.
  • Loading branch information
dopplershift committed Jul 9, 2024
1 parent dec880d commit bb263fd
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/tests-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,9 @@ jobs:
for dep in src:
dep = dep.split(';')[0]
out.write(dep.replace('>=', '==') + '\n')
# Only needed while we support numpy 1.20
if fname == 'requirements.txt':
out.write('pillow!=10.4.0\n')
EOF
- name: Install from PyPI
Expand Down

0 comments on commit bb263fd

Please sign in to comment.