We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac144f1 commit a1410eaCopy full SHA for a1410ea
ocrweb/setup.py
@@ -20,7 +20,7 @@ def get_readme():
20
21
obtainer = GetPyPiLatestVersion()
22
latest_version = obtainer(MODULE_NAME)
23
-VERSION_NUM = obtainer.version_add_one(latest_version)
+VERSION_NUM = obtainer.version_add_one(latest_version, add_patch=True)
24
25
# 优先提取commit message中的语义化版本号,如无,则自动加1
26
if len(sys.argv) > 2:
@@ -62,8 +62,9 @@ def get_readme():
62
"Programming Language :: Python :: 3.10",
63
"Programming Language :: Python :: 3.11",
64
"Programming Language :: Python :: 3.12",
65
+ "Programming Language :: Python :: 3.13",
66
],
- python_requires=">=3.6,<3.13",
67
+ python_requires=">=3.6",
68
entry_points={
69
"console_scripts": [
70
f"{MODULE_NAME}={MODULE_NAME}.ocrweb:main",
0 commit comments