build(setup): 更新版本号并调整 Python 版本要求
This commit is contained in:
+1
-1
@@ -1,4 +1,4 @@
|
|||||||
__version__ = "1.3.0"
|
__version__ = "1.3.1"
|
||||||
__author__ = "ViperEkura"
|
__author__ = "ViperEkura"
|
||||||
|
|
||||||
from khaosz.api import Khaosz
|
from khaosz.api import Khaosz
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
import re
|
import re
|
||||||
|
import khaosz
|
||||||
from setuptools import find_packages, setup
|
from setuptools import find_packages, setup
|
||||||
|
|
||||||
|
|
||||||
@@ -8,11 +9,11 @@ with open("requirements.txt") as f:
|
|||||||
|
|
||||||
setup(
|
setup(
|
||||||
name="khaosz",
|
name="khaosz",
|
||||||
version="1.2.0",
|
version=khaosz.__version__,
|
||||||
packages=find_packages(),
|
packages=find_packages(),
|
||||||
install_requires=required,
|
install_requires=required,
|
||||||
dependency_links=[
|
dependency_links=[
|
||||||
"https://download.pytorch.org/whl/cu126",
|
"https://download.pytorch.org/whl/cu126",
|
||||||
],
|
],
|
||||||
python_requires="==3.12.*",
|
python_requires=">=3.12",
|
||||||
)
|
)
|
||||||
Reference in New Issue
Block a user