diff --git a/HISTORY.md b/HISTORY.md index fee939c..42cef5a 100755 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,6 +1,11 @@ Release History =============== +1.0.1 (2025-01-03) +------------------ + +* Fix pypdf import. + 1.0.0 (2025-01-03) ------------------ diff --git a/excalibur/__version__.py b/excalibur/__version__.py index d4a6345..5cce1f6 100644 --- a/excalibur/__version__.py +++ b/excalibur/__version__.py @@ -1,4 +1,4 @@ -VERSION = (1, 0, 0) +VERSION = (1, 0, 1) PRERELEASE = None # alpha, beta or rc REVISION = None diff --git a/excalibur/utils/task.py b/excalibur/utils/task.py index c03ca91..558961c 100644 --- a/excalibur/utils/task.py +++ b/excalibur/utils/task.py @@ -6,7 +6,7 @@ get_page_layout, get_rotation, ) -from PyPDF2 import PdfReader, PdfWriter +from pypdf import PdfReader, PdfWriter def get_pages(filename, pages, password=""): diff --git a/pyproject.toml b/pyproject.toml index 8c92127..a9ef469 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "excalibur-py" -version = "1.0.0" +version = "1.0.1" description = "A web interface to extract tabular data from PDFs" authors = [ {name = "Vinayak Mehta", email = "vmehta94@gmail.com"}