From 70e9f8c3c041e35574dab45c648e655bd363bb75 Mon Sep 17 00:00:00 2001 From: afourney Date: Wed, 5 Mar 2025 21:26:06 -0800 Subject: [PATCH] Bump version. (#1094) --- packages/markitdown-sample-plugin/pyproject.toml | 2 +- .../src/markitdown_sample_plugin/_plugin.py | 5 ----- packages/markitdown/src/markitdown/__about__.py | 2 +- 3 files changed, 2 insertions(+), 7 deletions(-) diff --git a/packages/markitdown-sample-plugin/pyproject.toml b/packages/markitdown-sample-plugin/pyproject.toml index d8668aa..a12b9aa 100644 --- a/packages/markitdown-sample-plugin/pyproject.toml +++ b/packages/markitdown-sample-plugin/pyproject.toml @@ -24,7 +24,7 @@ classifiers = [ "Programming Language :: Python :: Implementation :: PyPy", ] dependencies = [ - "markitdown>=0.0.2a2", + "markitdown>=0.2.0a1", "striprtf", ] diff --git a/packages/markitdown-sample-plugin/src/markitdown_sample_plugin/_plugin.py b/packages/markitdown-sample-plugin/src/markitdown_sample_plugin/_plugin.py index 1362818..1ca00cc 100644 --- a/packages/markitdown-sample-plugin/src/markitdown_sample_plugin/_plugin.py +++ b/packages/markitdown-sample-plugin/src/markitdown_sample_plugin/_plugin.py @@ -36,11 +36,6 @@ class RtfConverter(DocumentConverter): Converts an RTF file to in the simplest possible way. """ - def __init__( - self, priority: float = DocumentConverter.PRIORITY_SPECIFIC_FILE_FORMAT - ): - super().__init__(priority=priority) - def accepts( self, file_stream: BinaryIO, diff --git a/packages/markitdown/src/markitdown/__about__.py b/packages/markitdown/src/markitdown/__about__.py index 4ebb498..ca1bba5 100644 --- a/packages/markitdown/src/markitdown/__about__.py +++ b/packages/markitdown/src/markitdown/__about__.py @@ -1,4 +1,4 @@ # SPDX-FileCopyrightText: 2024-present Adam Fourney # # SPDX-License-Identifier: MIT -__version__ = "0.0.2a2" +__version__ = "0.2.0a1"