Skip to content

Commit a3d0601

Browse files
authored
BUG: Including pypdf[full] as dependency to avoid DependencyError (#113)
1 parent 454179c commit a3d0601

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@
44

55
### New Features (ENH)
66
- New `extract-annotated-pages` to filter out only the user annotated pages ([PR #98](https://github.com/py-pdf/pdfly/pull/98))
7+
- Added optional `--password` argument to `cat` to perform decryption ([PR #61](https://github.com/py-pdf/pdfly/pull/61))
8+
9+
### Bug Fixes (BUG)
10+
- `pypdf[full]` is now dependency, instead of just `pypdf`, to avoid some cases of `DependencyError`
711

812

913
## Version 0.4.0, 2024-12-08

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ classifiers = [
3333
]
3434

3535
dependencies = [
36-
"pypdf>=5.1.0",
36+
"pypdf[full]>=5.1.0",
3737
"typer>=0.12.4",
3838
"pillow",
3939
"pydantic",

0 commit comments

Comments
 (0)