修复对部分py3.10.*的支持

This commit is contained in:
sml2h3
2022-08-24 19:39:41 +08:00
parent 5605809727
commit 710f2170b0
+2 -2
View File
@@ -14,7 +14,7 @@ with open("README.md", "r", encoding="utf-8") as fh:
setup(
name="ddddocr",
version="1.4.4",
version="1.4.5",
author="sml2h3",
description="带带弟弟OCR",
long_description=long_description,
@@ -27,7 +27,7 @@ setup(
"Operating System :: OS Independent",
],
install_requires=['numpy', 'onnxruntime', 'Pillow', 'opencv-python-headless'],
python_requires='<=3.10',
python_requires='<3.11',
include_package_data=True,
install_package_data=True,
)