File remove_get_latest_pypi_version.patch of Package python-rapidocr-onnxruntime
diff -rup RapidOCR-1.3.24.orig/python/setup_onnxruntime.py RapidOCR-1.3.24.new/python/setup_onnxruntime.py
--- RapidOCR-1.3.24.orig/python/setup_onnxruntime.py 2024-07-11 06:08:08.000000000 -0400
+++ RapidOCR-1.3.24.new/python/setup_onnxruntime.py 2024-10-03 18:23:37.327717407 -0400
@@ -6,7 +6,6 @@ from pathlib import Path
from typing import List, Union
import setuptools
-from get_pypi_latest_version import GetPyPiLatestVersion
def read_txt(txt_path: Union[Path, str]) -> List[str]:
@@ -26,16 +25,7 @@ def get_readme():
MODULE_NAME = "rapidocr_onnxruntime"
-obtainer = GetPyPiLatestVersion()
-latest_version = obtainer(MODULE_NAME)
-VERSION_NUM = obtainer.version_add_one(latest_version)
-
-if len(sys.argv) > 2:
- match_str = " ".join(sys.argv[2:])
- matched_versions = obtainer.extract_version(match_str)
- if matched_versions:
- VERSION_NUM = matched_versions
-sys.argv = sys.argv[:2]
+VERSION_NUM = "@@VERSION@@"
project_urls = {
"Documentation": "https://rapidai.github.io/RapidOCRDocs/docs/install_usage/rapidocr/usage/",