From 3bfb7f75e82f47e7ce0f09a05e12cda4d4a4fcca Mon Sep 17 00:00:00 2001 From: Edouard Belval Date: Sun, 7 Jan 2024 14:48:48 -0500 Subject: [PATCH] Version 1.17.0 --- setup.py | 2 +- tests.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 0f88ec0..1161a2f 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ setup( name="pdf2image", - version="1.16.3", + version="1.17.0", description="A wrapper around the pdftoppm and pdftocairo command line tools to convert PDF to a PIL Image list.", long_description=long_description, long_description_content_type="text/markdown", diff --git a/tests.py b/tests.py index 910242e..79e500d 100644 --- a/tests.py +++ b/tests.py @@ -1750,6 +1750,7 @@ def test_timeout_convert_from_path_241(self): ) @profile + @unittest.skipIf(not POPPLER_INSTALLED, "Poppler is not installed!") def test_pdfinfo_first_and_last_page(self): start_time = time.time() info_first_path = pdfinfo_from_path("./tests/test_14.pdf", first_page=1, last_page=2)