Skip to content

Commit

Permalink
Merge pull request #192 from camelot-dev/vinayak/2025-01-03-fix-pypdf…
Browse files Browse the repository at this point in the history
…-import

Fix pypdf import
  • Loading branch information
vinayak-mehta authored Jan 3, 2025
2 parents 75a883d + e5c40f2 commit 6bc1e13
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Release History
===============

1.0.1 (2025-01-03)
------------------

* Fix pypdf import.

1.0.0 (2025-01-03)
------------------

Expand Down
2 changes: 1 addition & 1 deletion excalibur/__version__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION = (1, 0, 0)
VERSION = (1, 0, 1)
PRERELEASE = None # alpha, beta or rc
REVISION = None

Expand Down
2 changes: 1 addition & 1 deletion excalibur/utils/task.py
Original file line number Diff line number Diff line change
Expand Up @@ -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=""):
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 = "[email protected]"}
Expand Down

0 comments on commit 6bc1e13

Please sign in to comment.