Skip to content

Commit

Permalink
同步version_number
Browse files Browse the repository at this point in the history
  • Loading branch information
Liyulingyue committed May 2, 2024
1 parent 941dbdd commit d58ba0f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion paddleocr.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,8 @@ def _import_file(module_name, file_path, make_importable=False):
]

SUPPORT_DET_MODEL = ["DB"]
VERSION = "2.8.0"
with open("VERSION_NUMBER", 'r') as file:
VERSION = file.read().strip()
SUPPORT_REC_MODEL = ["CRNN", "SVTR_LCNet"]
BASE_DIR = os.path.expanduser("~/.paddleocr/")

Expand Down

0 comments on commit d58ba0f

Please sign in to comment.