Skip to content

Commit

Permalink
fix(setup.py): fix setup.py
Browse files Browse the repository at this point in the history
fix setup.py
  • Loading branch information
albertandking committed May 18, 2023
1 parent bc8e9f9 commit fdcf399
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 7 deletions.
3 changes: 2 additions & 1 deletion akshare/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2403,9 +2403,10 @@
1.9.85 fix: fix option_dce_daily interface
1.9.86 fix: fix index_kq_fz interface
1.9.87 add: add option_minute_em interface
1.9.88 fix: fix setup.py
"""

__version__ = "1.9.87"
__version__ = "1.9.88"
__author__ = "AKFamily"

import sys
Expand Down
6 changes: 6 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,10 @@

## 更新说明

1.9.88 fix: fix setup.py

1. 移除 setup.py 中的相关依赖

1.9.87 add: add option_minute_em interface

1. 新增 option_minute_em 接口
Expand Down Expand Up @@ -2330,6 +2334,8 @@

## 版本更新说明

1.9.88 fix: fix setup.py

1.9.87 add: add option_minute_em interface

1.9.86 fix: fix index_kq_fz interface
Expand Down
2 changes: 0 additions & 2 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ pandas>=0.25
requests>=2.22.0
urllib3>=1.25.8
pypinyin>=0.35.0
websocket-client>=0.56.0
html5lib>=1.0.1
tqdm>=4.43.0
xlrd>=1.2.0
Expand All @@ -13,7 +12,6 @@ jsonpath>=0.82
tabulate>=0.8.6
decorator>=4.4.2
py_mini_racer>=0.6.0
requests-cache>=0.9.3
commitizen>=2.35.0
pre-commit>=2.20.0
sphinx>=5.2.3
Expand Down
2 changes: 0 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ pandas>=0.25
requests>=2.22.0
urllib3>=1.25.8
pypinyin>=0.35.0
websocket-client>=0.56.0
html5lib>=1.0.1
tqdm>=4.43.0
xlrd>=1.2.0
Expand All @@ -13,4 +12,3 @@ jsonpath>=0.82
tabulate>=0.8.6
decorator>=4.4.2
py_mini_racer>=0.6.0
requests-cache>=0.9.3
2 changes: 0 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ def get_version_string() -> str:
"pandas>=0.25",
"requests>=2.22.0",
"pypinyin>=0.35.0",
"websocket-client>=0.56.0",
"html5lib>=1.0.1",
"xlrd>=1.2.0",
"urllib3>=1.25.8",
Expand All @@ -53,7 +52,6 @@ def get_version_string() -> str:
"tabulate>=0.8.6",
"decorator>=4.4.2",
"py_mini_racer>=0.6.0",
"requests-cache>=0.9.3",
],
package_data={"": ["*.py", "*.json", "*.pk", "*.js", "*.zip"]},
keywords=[
Expand Down

0 comments on commit fdcf399

Please sign in to comment.