Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dev #177

Merged
merged 5 commits into from
Nov 20, 2024
Merged

Dev #177

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
**《AKShare-初阶-使用教学》视频课程已经上线,本课程手把手讲解 AKShare 和 AKTools 的环境配置和安装使用,还包含了众多衍生知识,[详情点击链接](https://zmj.xet.tech/s/wck86)! Tips:加入 AKShare VIP 答疑群可以免费获取该视频课程。**
**《AKShare-初阶-使用教学》视频课程已经上线,本课程手把手讲解 AKShare 和 AKTools 的环境配置和安装使用,还包含了众多衍生知识,[详情点击链接](https://zmj.xet.tech/s/wck86)!
Tips:加入 AKShare VIP 答疑群可以免费获取该视频课程。**

[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/akshare.svg)](https://pypi.org/project/akshare/)
[![PyPI](https://img.shields.io/pypi/v/aktools.svg)](https://pypi.org/project/aktools/)
Expand Down
3 changes: 2 additions & 1 deletion aktools/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,9 @@
0.0.85: fix: update python version
0.0.86: add: add log function
0.0.87: fix: fix update python 3.13
0.0.88: fix: fix update typer deps
"""

__title__ = "AKTools"
__version__ = "0.0.87"
__version__ = "0.0.88"
__author__ = "AKFamily"
2 changes: 2 additions & 0 deletions docs/aktools_version.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@

## 开发进度

0.0.88: fix: fix update typer deps

0.0.87: fix: fix update python 3.13

0.0.86: add: add log function
Expand Down
6 changes: 3 additions & 3 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
akshare>=1.13.7
fastapi>=0.110.0
akshare>=1.15.25
fastapi>=0.115.5
uvicorn>=0.16.0
python-multipart>=0.0.9
jinja2>=3.1.2
typer[all]>=0.6.1
typer[standard]>=0.6.1
ruff>=0.3.3
ruff-lsp>=0.0.53
pytest
Expand Down
6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
akshare>=1.13.7
fastapi>=0.110.0
akshare>=1.15.25
fastapi>=0.115.5
uvicorn>=0.16.0
python-multipart>=0.0.9
jinja2>=3.1.2
typer[all]>=0.6.1
typer[standard]>=0.6.1
pydantic>=1.10.2
alembic>=1.8.1
SQLAlchemy>=1.4.41
Expand Down
12 changes: 6 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -*- coding:utf-8 -*-
# /usr/bin/env python
"""
Date: 2024/10/16 23:20
Date: 2024/11/20 15:20
Desc: AKTools 的 PYPI 基本信息文件
"""
import re
Expand All @@ -16,8 +16,8 @@

def get_version_string() -> str:
"""
Get the aktools version number
:return: version number
get the aktools version
:return: version
:rtype: str
"""
with open("aktools/__init__.py", "rb") as file:
Expand All @@ -39,12 +39,12 @@ def get_version_string() -> str:
url="https://github.com/akfamily/aktools",
packages=setuptools.find_packages(),
install_requires=[
"akshare>=1.14.96",
"fastapi>=0.110.0",
"akshare>=1.15.25",
"fastapi>=0.115.5",
"uvicorn>=0.16.0",
"python-multipart>=0.0.9",
"jinja2>=3.1.2",
"typer[all]>=0.6.1",
"typer[standard]>=0.6.1",
],
package_data={"": ["*.py", "*.json", "*.pk", "*.woff", "*.html", "*.ico"]},
keywords=[
Expand Down