Răsfoiți Sursa

fix(setup): update python_requires to support Python 3.10 to 3.13

myhloli 6 luni în urmă
părinte
comite
3858d918dd
1 a modificat fișierele cu 1 adăugiri și 1 ștergeri
  1. 1 1
      setup.py

+ 1 - 1
setup.py

@@ -81,7 +81,7 @@ if __name__ == '__main__':
             "Programming Language :: Python :: 3.12",
             "Programming Language :: Python :: 3.13",
         ],
-        python_requires=">=3.10,<4",  # 项目依赖的 Python 版本
+        python_requires=">=3.10,<3.14",  # 项目依赖的 Python 版本
         entry_points={
             "console_scripts": [
                 "magic-pdf = magic_pdf.tools.cli:cli",