From a67e8fd0f54d4d0e96562e3b30aa98facc9c74cb Mon Sep 17 00:00:00 2001 From: Chris Mayo Date: Wed, 18 May 2022 19:29:54 +0100 Subject: [PATCH] Test and recommend pdfminer.six for PdfParser pdfminer is no longer actively maintained; distributions are now packaging pdfminer.six as pdfminer. --- dev-requirements.txt | 2 +- doc/src/man/linkcheckerrc.rst | 2 +- tox.ini | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dev-requirements.txt b/dev-requirements.txt index 9c9fb231..a3fb1d74 100644 --- a/dev-requirements.txt +++ b/dev-requirements.txt @@ -1,7 +1,7 @@ # for testing: miniboa parameterized -pdfminer +pdfminer.six pyftpdlib pyopenssl pytest diff --git a/doc/src/man/linkcheckerrc.rst b/doc/src/man/linkcheckerrc.rst index 9524aa23..f8011307 100644 --- a/doc/src/man/linkcheckerrc.rst +++ b/doc/src/man/linkcheckerrc.rst @@ -525,7 +525,7 @@ daemon must be installed. PdfParser ^^^^^^^^^ -Parse PDF files for URLs to check. Needs the :pypi:`pdfminer` Python package +Parse PDF files for URLs to check. Needs the :pypi:`pdfminer.six` Python package installed. WordParser diff --git a/tox.ini b/tox.ini index 6628e34c..7d1ce15a 100644 --- a/tox.ini +++ b/tox.ini @@ -5,7 +5,7 @@ envlist = py37, py38, py39, py310 deps = pyftpdlib parameterized - pdfminer + pdfminer.six pyopenssl pytest-xdist pytest-cov