Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/auto-unit-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
python-version: '3.10'

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

此 PR 将 CI Python 版本从 3.11 降回 3.10,但 pyproject.tomlrequires-python = ">=3.11,<3.12" 要求最低 3.11。CI 使用 3.10 可能导致 requires-python 检查失败,或者测试在与生产环境不同的 Python 版本上运行,掩盖版本特有的 bug。请确认这个降级的原因。


- name: Install uv
run: pip install --upgrade uv
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sdk_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
python-version: '3.10'

- name: Install build dependencies
run: |
Expand Down
7 changes: 1 addition & 6 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,4 @@ data/
sdk/benchmark/.env
/docker/.env.bak

.venv

.pytest-tmp
doc/mermaid

.claude/skills/python-import-triage
.venv
13 changes: 0 additions & 13 deletions backend/adapters/__init__.py

This file was deleted.

13 changes: 0 additions & 13 deletions backend/adapters/exception.py

This file was deleted.

Loading
Loading