From d20f6813c49a5650b899fbb306a78a9d7ca03ac3 Mon Sep 17 00:00:00 2001 From: foolcage <5533061@qq.com> Date: Sun, 17 Nov 2024 17:55:17 +0800 Subject: [PATCH] Release 0.13.0 --- docs/source/conf.py | 2 +- setup.py | 13 +++++++------ 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index 0de11223..d0960ad5 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -23,7 +23,7 @@ author = "foolcage" # The full version, including alpha/beta/rc tags -release = "0.10.5" +release = "0.13.0" # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index d2dac134..29a80ec7 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ setup( name="zvt", - version="0.12.2", + version="0.13.0", description="unified,modular quant framework for human beings ", long_description=long_description, url="https://github.com/zvtvz/zvt", @@ -30,29 +30,30 @@ "Topic :: Software Development :: Build Tools", "Topic :: Office/Business :: Financial :: Investment", "License :: OSI Approved :: MIT License", - "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", ], keywords="quant stock finance fintech big-data zvt technical-analysis trading-platform pandas fundamental-analysis", package_dir={"": "src"}, packages=find_packages(where="src"), - python_requires=">=3.8, <4", + python_requires=">=3.9, <4", include_package_data=True, install_requires=[ "requests==2.31.0", - "SQLAlchemy==2.0.28", + "SQLAlchemy==2.0.36", "pandas==2.0.3", "pydantic==2.6.4", "arrow==1.2.3", "openpyxl==3.1.1", "demjson3==3.0.6", "plotly==5.13.0", - "dash==2.8.1", + "dash==2.18.2", "jqdatapy==0.1.8", "dash-bootstrap-components==1.3.1", "dash_daq==0.5.0", - "scikit-learn==1.2.1", + "scikit-learn==1.5.2", "fastapi==0.110.0", "fastapi-pagination==0.12.23", "apscheduler==3.10.4",