Skip to content

Commit

Permalink
[FIX] pdf_helper: fix issue pypdf 5.0 dropped support for python<=3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
thienvh332 committed Sep 18, 2024
1 parent a65062e commit 89cc982
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pdf_helper/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@
"depends": [
"base",
],
"external_dependencies": {"python": ["pypdf"]},
"external_dependencies": {"python": ["pypdf>=3.1.0,<5.0"]},
}
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ factur-x
invoice2data
ovh
phonenumbers
pypdf
pypdf>=3.1.0
pypdf>=3.1.0,<5.0
pyyaml
regex
xmlschema

0 comments on commit 89cc982

Please sign in to comment.