Skip to content
New issue

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

MAINT: Update Python version support documentation #2740

Merged
merged 5 commits into from
Jul 7, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions docs/user/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,17 @@ pip install pypdf[image]

## Python Version Support

Since pypdf 4.0, every release, including point releases, should work with all
supported versions of [Python](https://devguide.python.org/versions/). Thus
every point release is designed to work with all existing Python versions,
excluding end-of-life versions.

Previous versions of pypdf support the following versions of Python:

| Python | 3.11 | 3.10 | 3.9 | 3.8 | 3.7 | 3.6 | 2.7 |
| ---------------------- | ---- | ---- | --- | --- | --- | --- | --- |
| pypdf>=4.0 | YES | YES | YES | YES | YES | | |
| pypdf>=3.0 | YES | YES | YES | YES | YES | YES | |
| PyPDF2>=2.0 | YES | YES | YES | YES | YES | YES | |
| pypdf 3.x | YES | YES | YES | YES | YES | YES | |
| PyPDF2 >= 2.0 | YES | YES | YES | YES | YES | YES | |
| PyPDF2 1.20.0 - 1.28.4 | | YES | YES | YES | YES | YES | YES |
| PyPDF2 1.15.0 - 1.20.0 | | | | | | | YES |

Expand Down