diff --git a/docs/source/install.rst b/docs/source/install.rst index 2ac245eab..f66cf151b 100644 --- a/docs/source/install.rst +++ b/docs/source/install.rst @@ -6,7 +6,7 @@ 支持的操作系统:64位 Windows7及以上版本、Ubuntu、MacOSX (其中 Windows、Ubuntu 22.04及以上可以直接 pip 安装,其他建议使用源码编译安装) -1. Python环境:>= Python3.8 +1. Python环境:>= Python3.8 (macosx python >= 3.10) .. note:: diff --git a/docs/source/release.rst b/docs/source/release.rst index 48b2c8c9d..5043fc9fb 100644 --- a/docs/source/release.rst +++ b/docs/source/release.rst @@ -1,6 +1,15 @@ 版本发布说明 ======================= +2.2.4 - 2024年12月8日 +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +1. 支持 Macosx 及 mac arm 平台安装包 +2. HDF5/MySQL 存储支持自定义板块,参见 StockManager add_block/remove_block 方法 +3. 优化 MySQL 数据库重连 +4. HikyuuTdx 在交易时段导入数据时给出弹出确认警告 + + 2.2.3 - 2024年11月3日 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ diff --git a/setup.py b/setup.py index f39b217be..87ae5a34e 100644 --- a/setup.py +++ b/setup.py @@ -375,15 +375,9 @@ def wheel(feedback, j, low_precision, clear): py_version = get_python_version() main_ver, min_ver = py_version.split('.') - if current_plat == 'win32': - cmd = 'python sub_setup.py bdist_wheel -p {}'.format(plat) - print(cmd) - os.system(cmd) - else: - cmd = 'python3 sub_setup.py bdist_wheel --python-tag cp{}{} -p {}'.format( - main_ver, min_ver, plat) - print(cmd) - os.system(cmd) + cmd = 'python sub_setup.py bdist_wheel -p {}'.format(plat) + print(cmd) + os.system(cmd) shutil.rmtree('hikyuu/include', True) diff --git a/xmake.lua b/xmake.lua index 576cfcfca..463aeb3fb 100644 --- a/xmake.lua +++ b/xmake.lua @@ -6,7 +6,7 @@ set_project("hikyuu") add_rules("mode.debug", "mode.release") -- version -set_version("2.2.3", {build = "%Y%m%d%H%M"}) +set_version("2.2.4", {build = "%Y%m%d%H%M"}) set_warnings("all")