Skip to content

Commit

Permalink
Fix building of deps after bump of pillow version (#16817)
Browse files Browse the repository at this point in the history
Broke in #16802
  • Loading branch information
erikjohnston committed Jan 15, 2024
1 parent 4e4a0f7 commit c6e0d84
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions debian/rules
Original file line number Diff line number Diff line change
Expand Up @@ -40,16 +40,17 @@ override_dh_shlibdeps:
# to be self-contained, but they have interdependencies and
# dpkg-shlibdeps doesn't know how to resolve them.
#
# As of Pillow 7.1.0, these libraries are in
# site-packages/Pillow.libs. Previously, they were in
# site-packages/PIL/.libs.
# As of Pillow 7.1.0, these libraries are in site-packages/Pillow.libs.
# Previously, they were in site-packages/PIL/.libs. As of Pillow 10.2.0
# the package name is lowercased to site-packages/pillow.libs.
#
# (we also need to exclude psycopg2, of course, since we've already
# dealt with that.)
#
dh_shlibdeps \
-X site-packages/PIL/.libs \
-X site-packages/Pillow.libs \
-X site-packages/pillow.libs \
-X site-packages/psycopg2

override_dh_virtualenv:
Expand Down

0 comments on commit c6e0d84

Please sign in to comment.