File tree 1 file changed +4
-3
lines changed
1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 1
1
# -*- coding:utf-8 -*-
2
2
# /usr/bin/env python
3
3
"""
4
- Date: 2024/1/13 23:20
4
+ Date: 2024/10/16 23:20
5
5
Desc: AKTools 的 PYPI 基本信息文件
6
6
"""
7
7
import re
@@ -22,7 +22,7 @@ def get_version_string() -> str:
22
22
"""
23
23
with open ("aktools/__init__.py" , "rb" ) as file :
24
24
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" )
26
26
).group (1 )
27
27
return str (ast .literal_eval (version_line ))
28
28
@@ -39,7 +39,7 @@ def get_version_string() -> str:
39
39
url = "https://github.com/akfamily/aktools" ,
40
40
packages = setuptools .find_packages (),
41
41
install_requires = [
42
- "akshare>=1.13.7 " ,
42
+ "akshare>=1.14.96 " ,
43
43
"fastapi>=0.110.0" ,
44
44
"uvicorn>=0.16.0" ,
45
45
"python-multipart>=0.0.9" ,
@@ -69,6 +69,7 @@ def get_version_string() -> str:
69
69
"Programming Language :: Python :: 3.10" ,
70
70
"Programming Language :: Python :: 3.11" ,
71
71
"Programming Language :: Python :: 3.12" ,
72
+ "Programming Language :: Python :: 3.13" ,
72
73
"License :: OSI Approved :: MIT License" ,
73
74
"Operating System :: OS Independent" ,
74
75
],
You can’t perform that action at this time.
0 commit comments