We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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.
PyPDF2 = ">=1.26, <=3.0.0"
pyproject.toml
The text was updated successfully, but these errors were encountered:
Thanks. Just in case anyone is looking for more specific steps:
Got the following error:
Had to uninstall pyPDF2:
pip3 uninstall pyPDF
And install pyPDF2 < 3.0.0:
pip3 install "pyPDF2<3.0.0"
Sorry, something went wrong.
No branches or pull requests
Until this is fixed, please use
PyPDF2 = ">=1.26, <=3.0.0"
inpyproject.toml
.The text was updated successfully, but these errors were encountered: