build(setup): 更新版本号并调整 Python 版本要求
This commit is contained in:
parent
0b45e8666e
commit
7a21f5d72e
|
|
@ -1,4 +1,4 @@
|
|||
__version__ = "1.3.0"
|
||||
__version__ = "1.3.1"
|
||||
__author__ = "ViperEkura"
|
||||
|
||||
from khaosz.api import Khaosz
|
||||
|
|
|
|||
5
setup.py
5
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",
|
||||
)
|
||||
Loading…
Reference in New Issue