Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/markitdown/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ all = [
"openpyxl",
"xlrd",
"lxml",
"pdfminer.six",
"pdfminer.six>=20251107",
Copy link

Copilot AI Jan 1, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The version constraint for pdfminer.six has been added to the "all" optional dependencies group, but the "pdf" optional dependency group on line 56 still references pdfminer.six without a version constraint. For consistency and to ensure the CVE patch is applied when users install with the "pdf" extra, this line should also be updated to "pdfminer.six>=20251107" (pending verification of the correct version number).

Copilot uses AI. Check for mistakes.
Copy link

Copilot AI Jan 1, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The PR title mentions bumping versions of both "mammoth and pdfminer.six", but the code changes only update the version constraint for pdfminer.six. The mammoth version remains at ~=1.11.0 (lines 39 and 53 in pyproject.toml). Either the PR title should be updated to reflect only the pdfminer.six change, or the mammoth version should also be bumped if that was the original intent.

Copilot uses AI. Check for mistakes.
"olefile",
"pydub",
"SpeechRecognition",
Expand Down
2 changes: 1 addition & 1 deletion packages/markitdown/src/markitdown/__about__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2024-present Adam Fourney <[email protected]>
#
# SPDX-License-Identifier: MIT
__version__ = "0.1.3"
__version__ = "0.1.4"
Loading