hellerbarde / stapler

A small utility making use of the pypdf library to provide a (somewhat) lighter alternative to pdftk
Other
283 stars 53 forks source link

Incompatible with PyPDF2 v3.0.0 #97

Open darkdragon-001 opened 10 months ago

darkdragon-001 commented 10 months ago
PyPDF2.errors.DeprecationError: PdfFileReader is deprecated and was removed in PyPDF2 3.0.0. Use PdfReader instead.

Until this is fixed, please use PyPDF2 = ">=1.26, <=3.0.0" in pyproject.toml.

kxr commented 1 month ago

Thanks. Just in case anyone is looking for more specific steps:

Got the following error:

PyPDF2.errors.DeprecationError: PdfFileReader is deprecated and was removed in PyPDF2 3.0.0. Use PdfReader instead.

Had to uninstall pyPDF2:

pip3 uninstall pyPDF

And install pyPDF2 < 3.0.0:

pip3 install "pyPDF2<3.0.0"