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 15a994e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion account_invoice_import_simple_pdf/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"python": [
"regex",
"dateparser",
"pypdf>=3.1.0",
"pypdf>=3.1.0,<5.0",
],
"deb": ["libmupdf-dev", "mupdf", "mupdf-tools", "poppler-utils"],
},
Expand Down
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"]},
}
3 changes: 1 addition & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@ factur-x
invoice2data
ovh
phonenumbers
pypdf
pypdf>=3.1.0
pypdf>=3.1.0,<5.0
pyyaml
regex
xmlschema

0 comments on commit 15a994e

Please sign in to comment.