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

Enable Python 3.10 wheels. #245

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -39,7 +39,7 @@ This library is similar to PyPDF2 and pdfrw - it provides low level access to PD
| Based on an existing, mature PDF library | QPDF | ✘ | ✘ |
| Implementation | C++ and Python | Python | Python |
| PDF versions supported | 1.1 to 1.7 | 1.3? | 1.7 |
| Python versions supported | 3.6-3.9 | 2.6-3.6 | 2.6-3.6 |
| Python versions supported | 3.6-3.10 | 2.6-3.6 | 2.6-3.6 |
| Save and load password protected (encrypted) PDFs | ✔ (except public key) | ✘ (Only obsolete RC4) | ✘ (not at all) |
| Save and load PDF compressed object streams (PDF 1.5) | ✔ | ✘ | ✘ |
| Creates linearized ("fast web view") PDFs | ✔ | ✘ | ✘ |
Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Expand Up @@ -37,7 +37,6 @@ exclude = '''
[tool.cibuildwheel]
test-command = "pytest -nauto {project}/tests"
test-extras = "test"
skip = "cp310-*"
test-skip = "*_arm64 *_universal2:arm64"

[tool.cibuildwheel.environment]
Expand Down Expand Up @@ -65,7 +64,7 @@ before-all = "brew install qpdf"
# pp3*-win_amd64 does not execute because cibuildwheel does not implement it
# or PyPy3 doesn't work on Windows 64-bit, one or the other
# PyPy+Win32 seems like a very low priority combination
skip = "pp3* cp310-*"
skip = "pp3*"

[tool.mypy]

Expand Down
1 change: 1 addition & 0 deletions setup.cfg
Expand Up @@ -23,6 +23,7 @@ classifiers =
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
Topic :: Multimedia :: Graphics
Expand Down