From 2456c57c409175ac32771dd30e8504a0c7e98c6d Mon Sep 17 00:00:00 2001 From: jindaxiang Date: Wed, 20 Nov 2024 16:00:42 +0800 Subject: [PATCH 1/5] docs: update docs --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 9f22c8a..f94adbc 100644 --- a/README.md +++ b/README.md @@ -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/) From c66ef71142fb265d0e3de4cd8ab76103409af8b0 Mon Sep 17 00:00:00 2001 From: jindaxiang Date: Wed, 20 Nov 2024 16:00:54 +0800 Subject: [PATCH 2/5] docs: update docs --- docs/aktools_version.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/aktools_version.md b/docs/aktools_version.md index 9d46704..6028145 100644 --- a/docs/aktools_version.md +++ b/docs/aktools_version.md @@ -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 From 949ba63280099b0758d73fa2d340862e9faaf466 Mon Sep 17 00:00:00 2001 From: jindaxiang Date: Wed, 20 Nov 2024 16:01:28 +0800 Subject: [PATCH 3/5] fix: update deps --- requirements-dev.txt | 6 +++--- requirements.txt | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/requirements-dev.txt b/requirements-dev.txt index 037e825..e20eff1 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -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 diff --git a/requirements.txt b/requirements.txt index 48f5ae2..bd89f03 100644 --- a/requirements.txt +++ b/requirements.txt @@ -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 From 79e2cb32aa7d6e9e01c60905f674ef071691e74c Mon Sep 17 00:00:00 2001 From: jindaxiang Date: Wed, 20 Nov 2024 16:01:40 +0800 Subject: [PATCH 4/5] fix: update deps --- setup.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/setup.py b/setup.py index 94027f7..a42ca8d 100644 --- a/setup.py +++ b/setup.py @@ -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 @@ -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: @@ -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=[ From 6677eb5bc4f1fc6a0400e14fed0eed79bc7ea44d Mon Sep 17 00:00:00 2001 From: jindaxiang Date: Wed, 20 Nov 2024 16:02:01 +0800 Subject: [PATCH 5/5] feat: add version 0.0.88 --- aktools/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/aktools/__init__.py b/aktools/__init__.py index af28387..3f6633d 100644 --- a/aktools/__init__.py +++ b/aktools/__init__.py @@ -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"