Skip to content
Merged
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-ocr/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Uses the same `llm_client` / `llm_model` pattern that MarkItDown already support

## Installation

Requires `markitdown>=0.1.8b3`, which introduces the Office image-rendering hooks used by this plugin. Installing the plugin automatically resolves a compatible core version.
Requires `markitdown>=0.1.8,<0.2.0`, which provides the Office image-rendering hooks used by this plugin. Installing the plugin automatically resolves a compatible core version.

```bash
pip install markitdown-ocr
Expand Down
2 changes: 1 addition & 1 deletion packages/markitdown-ocr/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ classifiers = [

# Core dependencies — matches the file-format libraries markitdown already uses
dependencies = [
"markitdown>=0.1.8b3",
"markitdown>=0.1.8,<0.2.0",
"pdfminer.six>=20251230",
"pdfplumber>=0.11.9",
"PyMuPDF>=1.24.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/markitdown-ocr/src/markitdown_ocr/__about__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2025-present Contributors
# SPDX-License-Identifier: MIT

__version__ = "0.1.1b2"
__version__ = "0.1.1"
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 <adamfo@microsoft.com>
#
# SPDX-License-Identifier: MIT
__version__ = "0.1.8b3"
__version__ = "0.1.8"
Loading