Skip to content
This repository has been archived by the owner on Oct 8, 2024. It is now read-only.

Commit

Permalink
Point Pillow submodule to libavif branch
Browse files Browse the repository at this point in the history
  • Loading branch information
fdintino committed Apr 12, 2021
1 parent 6ad9727 commit e0e11b7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[submodule "Pillow"]
path = Pillow
url = git://github.com/python-Pillow/Pillow.git
url = git://github.com/fdintino/Pillow.git
[submodule "multibuild"]
path = multibuild
url = https://github.com/matthew-brett/multibuild.git
2 changes: 1 addition & 1 deletion Pillow
Submodule Pillow updated 70 files
+6 −1 .ci/install.sh
+6 −1 .github/workflows/macos-install.sh
+0 −1 .github/workflows/test-docker.yml
+7 −0 .github/workflows/test-windows.yml
+6 −0 CHANGES.rst
+7 −0 Makefile
+1 −1 Tests/32bit_segfault_check.py
+1 −1 Tests/check_fli_oob.py
+1 −1 Tests/check_imaging_leaks.py
+1 −1 Tests/check_jp2_overflow.py
+5 −0 Tests/conftest.py
+1 −1 Tests/createfontdatachunk.py
+17 −0 Tests/helper.py
+ Tests/images/avif/exif.avif
+ Tests/images/avif/hopper.avif
+ Tests/images/avif/hopper_avif_write.png
+ Tests/images/avif/icc_profile.avif
+ Tests/images/avif/icc_profile_none.avif
+ Tests/images/avif/star.avifs
+ Tests/images/avif/star.gif
+ Tests/images/avif/star.png
+ Tests/images/avif/star180.png
+ Tests/images/avif/star270.png
+ Tests/images/avif/star90.png
+ Tests/images/avif/transparency.avif
+ Tests/images/avif/xmp_tags_orientation.avif
+ Tests/images/hopper.dds
+ Tests/images/imagedraw_rounded_rectangle_non_integer_radius_given.png
+ Tests/images/imagedraw_rounded_rectangle_non_integer_radius_height.png
+ Tests/images/imagedraw_rounded_rectangle_non_integer_radius_width.png
+ Tests/images/uncompressed_rgb.png
+16 −0 Tests/oss-fuzz/python.supp
+8 −1 Tests/oss-fuzz/test_fuzzers.py
+686 −0 Tests/test_file_avif.py
+15 −7 Tests/test_file_dds.py
+4 −1 Tests/test_file_eps.py
+19 −6 Tests/test_file_jpeg.py
+13 −4 Tests/test_file_libtiff.py
+14 −2 Tests/test_file_pdf.py
+4 −1 Tests/test_file_png.py
+10 −4 Tests/test_file_webp_metadata.py
+4 −1 Tests/test_image.py
+12 −3 Tests/test_image_resample.py
+1 −0 Tests/test_image_thumbnail.py
+23 −0 Tests/test_imagedraw.py
+0 −1 Tests/test_sgi_crash.py
+76 −0 depends/install_libavif.sh
+1 −1 docs/Guardfile
+71 −3 docs/handbook/image-file-formats.rst
+29 −9 docs/installation.rst
+1 −0 docs/reference/features.rst
+8 −0 docs/reference/plugins.rst
+1 −1 selftest.py
+17 −1 setup.py
+215 −0 src/PIL/AvifImagePlugin.py
+5 −3 src/PIL/BlpImagePlugin.py
+5 −3 src/PIL/DdsImagePlugin.py
+2 −2 src/PIL/FtexImagePlugin.py
+5 −1 src/PIL/IcnsImagePlugin.py
+1 −1 src/PIL/Image.py
+9 −16 src/PIL/ImageDraw.py
+1 −0 src/PIL/__init__.py
+1 −1 src/PIL/_version.py
+2 −0 src/PIL/features.py
+805 −0 src/_avif.c
+1 −1 src/decode.c
+1 −1 src/encode.c
+4 −0 src/libImaging/Jpeg2KDecode.c
+1 −0 winbuild/build.rst
+44 −0 winbuild/build_prepare.py

0 comments on commit e0e11b7

Please sign in to comment.