From ddcb9d442559c25713561b28d17ef7d561ab968c Mon Sep 17 00:00:00 2001 From: Justin Gu <97915@qq.com> Date: Thu, 11 Jun 2026 04:11:01 +0800 Subject: [PATCH] =?UTF-8?q?release:=20v1.9.8=20=E2=80=94=20CI=20fixes=20(r?= =?UTF-8?q?uff=20.pyi=20exclude=20+=20pytest-asyncio=20+=20lint)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 9 +++++++++ pyproject.toml | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 277f747..94b958d 100644 --- a/README.md +++ b/README.md @@ -1308,6 +1308,15 @@ ruff format --check src/ tests/ # format check ## Changelog +### 1.9.8 (2026-06-11) + +**CI 修复** — 修复 CI 流水线 ruff 和 pytest 配置问题。 + +- 修复 `MyTT.pyi` 类型存根文件行过长导致 ruff check 失败(`.pyi` 文件排除 ruff 检查) +- 添加 `pytest-asyncio` 依赖,修复 `test_realtime.py` 异步测试报错 +- 修复 `test_backtest_engine.py` 中未使用变量 `result` 的 lint 警告 +- 380 个测试全部通过,CI 全绿 + ### 1.9.7 (2026-06-11) **CLI 全量集成** — v1.9.6 新增的 6 项功能全部暴露到 CLI,修复缠论多级别联立的 client 生命周期 bug。 diff --git a/pyproject.toml b/pyproject.toml index 8b27fcc..f7fecfd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "easy-tdx" -version = "1.9.7" +version = "1.9.8" description = "通达信 TCP 协议行情数据客户端,支持在线行情、离线数据读取与写入同步" readme = "README.md" requires-python = ">=3.10"