Skip to content

Commit bbcb55f

Browse files
committed
fix: update python version
1 parent 7b70286 commit bbcb55f

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

setup.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding:utf-8 -*-
22
# /usr/bin/env python
33
"""
4-
Date: 2024/1/13 23:20
4+
Date: 2024/10/16 23:20
55
Desc: AKTools 的 PYPI 基本信息文件
66
"""
77
import re
@@ -22,7 +22,7 @@ def get_version_string() -> str:
2222
"""
2323
with open("aktools/__init__.py", "rb") as file:
2424
version_line = re.search(
25-
r"__version__\s+=\s+(.*)", file.read().decode("utf-8")
25+
pattern=r"__version__\s+=\s+(.*)", string=file.read().decode("utf-8")
2626
).group(1)
2727
return str(ast.literal_eval(version_line))
2828

@@ -39,7 +39,7 @@ def get_version_string() -> str:
3939
url="https://github.com/akfamily/aktools",
4040
packages=setuptools.find_packages(),
4141
install_requires=[
42-
"akshare>=1.13.7",
42+
"akshare>=1.14.96",
4343
"fastapi>=0.110.0",
4444
"uvicorn>=0.16.0",
4545
"python-multipart>=0.0.9",
@@ -69,6 +69,7 @@ def get_version_string() -> str:
6969
"Programming Language :: Python :: 3.10",
7070
"Programming Language :: Python :: 3.11",
7171
"Programming Language :: Python :: 3.12",
72+
"Programming Language :: Python :: 3.13",
7273
"License :: OSI Approved :: MIT License",
7374
"Operating System :: OS Independent",
7475
],

0 commit comments

Comments
 (0)