Skip to content

Commit cd00619

Browse files
Fixing new issues
1 parent c87780d commit cd00619

14 files changed

+7
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Openize.MarkItDown
22

3-
![Python Version](https://img.shields.io/badge/python-3.7%2B-blue)
3+
![Python Version](https://img.shields.io/badge/python-3.7--3.12-blue)
44
![License](https://img.shields.io/badge/license-MIT-green)
55
![Status](https://img.shields.io/badge/status-alpha-orange)
66

packages/markitdown/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Openize.MarkItDown
22

3-
![Python Version](https://img.shields.io/badge/python-3.7%2B-blue)
3+
![Python Version](https://img.shields.io/badge/python-3.7--3.12-blue)
44
![License](https://img.shields.io/badge/license-MIT-green)
55
![Status](https://img.shields.io/badge/status-alpha-orange)
66

packages/markitdown/setup.cfg

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1+
12
[metadata]
23
name = openize-markitdown
3-
version = 25.3.16
4+
version = 25.3.17
45
author = Openize
56
author_email = packages@openize.com
67
description = A document converter for Word, PDF, Excel, and PowerPoint to Markdown.
@@ -28,7 +29,7 @@ packages = find_namespace:
2829
python_requires = >=3.7
2930
install_requires =
3031
aspose-words>=23.0.0
31-
aspose-cells>=23.0.0
32+
aspose-cells-python>=23.0.0
3233
aspose-slides>=23.0.0
3334
openai>=1.0.0
3435

packages/markitdown/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def install_if_missing(package, module_name=None):
1616

1717
# List of dependencies
1818
dependencies = [
19-
("aspose-cells", "asposecells"),
19+
("aspose-cells-python", "asposecellspython"),
2020
("aspose-words", "asposewords"),
2121
("aspose-slides", "asposeslides")
2222
]

packages/markitdown/src/openize/markitdown/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
sys.path.append(os.path.dirname(__file__))
55

6-
__version__ = "25.3.16"
6+
__version__ = "25.3.17"
77

88
from .processor import DocumentProcessor
99
from .converters import WordConverter, PDFConverter, ExcelConverter, PowerPointConverter
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)