From 7a21f5d72e60c86efaf87509df89775bff13af97 Mon Sep 17 00:00:00 2001 From: ViperEkura <3081035982@qq.com> Date: Sun, 9 Nov 2025 16:40:20 +0800 Subject: [PATCH] =?UTF-8?q?build(setup):=20=E6=9B=B4=E6=96=B0=E7=89=88?= =?UTF-8?q?=E6=9C=AC=E5=8F=B7=E5=B9=B6=E8=B0=83=E6=95=B4=20Python=20?= =?UTF-8?q?=E7=89=88=E6=9C=AC=E8=A6=81=E6=B1=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- khaosz/__init__.py | 2 +- setup.py | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/khaosz/__init__.py b/khaosz/__init__.py index 6d0b52c..f8eb153 100644 --- a/khaosz/__init__.py +++ b/khaosz/__init__.py @@ -1,4 +1,4 @@ -__version__ = "1.3.0" +__version__ = "1.3.1" __author__ = "ViperEkura" from khaosz.api import Khaosz diff --git a/setup.py b/setup.py index ea67044..278a817 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,5 @@ import re +import khaosz from setuptools import find_packages, setup @@ -8,11 +9,11 @@ with open("requirements.txt") as f: setup( name="khaosz", - version="1.2.0", + version=khaosz.__version__, packages=find_packages(), install_requires=required, dependency_links=[ "https://download.pytorch.org/whl/cu126", ], - python_requires="==3.12.*", + python_requires=">=3.12", ) \ No newline at end of file