diff --git a/docs/release_notes.rst b/docs/release_notes.rst index 7bd8c3c8..c899c988 100644 --- a/docs/release_notes.rst +++ b/docs/release_notes.rst @@ -13,6 +13,11 @@ Note that it is licensed under GPLv3, so scripts that ``import ocrmypdf`` and ar find: [^`]\#([0-9]{1,3})[^0-9] replace: `#$1 `_ +v7.0.3 +------ + +- Fix issue `#284 `_, an error when parsing inline images that have are also image masks, by upgrading pikepdf to 0.3.1 + v7.0.2 ------ diff --git a/setup.py b/setup.py index 8f99eb75..7b162acb 100644 --- a/setup.py +++ b/setup.py @@ -249,7 +249,7 @@ setup( install_requires=[ 'cffi >= 1.9.1', # must be a setup and install requirement 'img2pdf >= 0.2.4, < 0.4', # pure Python, so track HEAD closely - 'pikepdf >= 0.2.2, < 0.4', + 'pikepdf >= 0.3.1, < 0.4', 'Pillow >= 4.0.0, != 5.1.0 ; sys_platform == "darwin"', # Pillow < 4 has BytesIO/TIFF bug w/img2pdf 0.2.3 # block 5.1.0, broken wheels